diff --git a/pom.xml b/pom.xml
index ab4725c..dab2a3b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
com.loohp
Limbo
Limbo
- 0.7.5-ALPHA
+ 0.7.6-ALPHA
Standalone Limbo Minecraft Server.
https://github.com/LOOHP/Limbo
@@ -136,7 +136,7 @@
- ${project.artifactId}-${project.version}-1.20.1
+ ${project.artifactId}-${project.version}-1.20.2
diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java
index 6ef2f8c..3e4eaaf 100644
--- a/src/main/java/com/loohp/limbo/Limbo.java
+++ b/src/main/java/com/loohp/limbo/Limbo.java
@@ -139,8 +139,8 @@ public final class Limbo {
//===========================
- public final String SERVER_IMPLEMENTATION_VERSION = "1.20.1";
- public final int SERVER_IMPLEMENTATION_PROTOCOL = 763;
+ public final String SERVER_IMPLEMENTATION_VERSION = "1.20.2";
+ public final int SERVER_IMPLEMENTATION_PROTOCOL = 764;
public final String LIMBO_IMPLEMENTATION_VERSION;
private final AtomicBoolean isRunning;
@@ -236,7 +236,7 @@ public final class Limbo {
Map> HandshakeIn = new HashMap<>();
for (Object key : ((JSONObject) json.get("HandshakeIn")).keySet()) {
int packetId = Integer.decode((String) key);
- HandshakeIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + (String) ((JSONObject) json.get("HandshakeIn")).get(key)));
+ HandshakeIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + ((JSONObject) json.get("HandshakeIn")).get(key)));
}
Packet.setHandshakeIn(HandshakeIn);
mappingsCount += HandshakeIn.size();
@@ -244,14 +244,14 @@ public final class Limbo {
Map> StatusIn = new HashMap<>();
for (Object key : ((JSONObject) json.get("StatusIn")).keySet()) {
int packetId = Integer.decode((String) key);
- StatusIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + (String) ((JSONObject) json.get("StatusIn")).get(key)));
+ StatusIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + ((JSONObject) json.get("StatusIn")).get(key)));
}
Packet.setStatusIn(StatusIn);
mappingsCount += StatusIn.size();
Map, Integer> StatusOut = new HashMap<>();
for (Object key : ((JSONObject) json.get("StatusOut")).keySet()) {
- Class extends PacketOut> packetClass = (Class extends PacketOut>) Class.forName(classPrefix + (String) key);
+ Class extends PacketOut> packetClass = (Class extends PacketOut>) Class.forName(classPrefix + key);
StatusOut.put(packetClass, Integer.decode((String) ((JSONObject) json.get("StatusOut")).get(key)));
}
Packet.setStatusOut(StatusOut);
@@ -260,30 +260,46 @@ public final class Limbo {
Map> LoginIn = new HashMap<>();
for (Object key : ((JSONObject) json.get("LoginIn")).keySet()) {
int packetId = Integer.decode((String) key);
- LoginIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + (String) ((JSONObject) json.get("LoginIn")).get(key)));
+ LoginIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + ((JSONObject) json.get("LoginIn")).get(key)));
}
Packet.setLoginIn(LoginIn);
mappingsCount += LoginIn.size();
Map, Integer> LoginOut = new HashMap<>();
for (Object key : ((JSONObject) json.get("LoginOut")).keySet()) {
- Class extends PacketOut> packetClass = (Class extends PacketOut>) Class.forName(classPrefix + (String) key);
+ Class extends PacketOut> packetClass = (Class extends PacketOut>) Class.forName(classPrefix + key);
LoginOut.put(packetClass, Integer.decode((String) ((JSONObject) json.get("LoginOut")).get(key)));
}
Packet.setLoginOut(LoginOut);
mappingsCount += LoginOut.size();
+
+ Map> ConfigurationIn = new HashMap<>();
+ for (Object key : ((JSONObject) json.get("ConfigurationIn")).keySet()) {
+ int packetId = Integer.decode((String) key);
+ ConfigurationIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + ((JSONObject) json.get("ConfigurationIn")).get(key)));
+ }
+ Packet.setConfigurationIn(ConfigurationIn);
+ mappingsCount += ConfigurationIn.size();
+
+ Map, Integer> ConfigurationOut = new HashMap<>();
+ for (Object key : ((JSONObject) json.get("ConfigurationOut")).keySet()) {
+ Class extends PacketOut> packetClass = (Class extends PacketOut>) Class.forName(classPrefix + key);
+ ConfigurationOut.put(packetClass, Integer.decode((String) ((JSONObject) json.get("ConfigurationOut")).get(key)));
+ }
+ Packet.setConfigurationOut(ConfigurationOut);
+ mappingsCount += ConfigurationOut.size();
Map> PlayIn = new HashMap<>();
for (Object key : ((JSONObject) json.get("PlayIn")).keySet()) {
int packetId = Integer.decode((String) key);
- PlayIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + (String) ((JSONObject) json.get("PlayIn")).get(key)));
+ PlayIn.put(packetId, (Class extends PacketIn>) Class.forName(classPrefix + ((JSONObject) json.get("PlayIn")).get(key)));
}
Packet.setPlayIn(PlayIn);
mappingsCount += PlayIn.size();
Map, Integer> PlayOut = new HashMap<>();
for (Object key : ((JSONObject) json.get("PlayOut")).keySet()) {
- Class extends PacketOut> packetClass = (Class extends PacketOut>) Class.forName(classPrefix + (String) key);
+ Class extends PacketOut> packetClass = (Class extends PacketOut>) Class.forName(classPrefix + key);
PlayOut.put(packetClass, Integer.decode((String) ((JSONObject) json.get("PlayOut")).get(key)));
}
Packet.setPlayOut(PlayOut);
diff --git a/src/main/java/com/loohp/limbo/network/Channel.java b/src/main/java/com/loohp/limbo/network/Channel.java
index 7d7ccfd..633790e 100644
--- a/src/main/java/com/loohp/limbo/network/Channel.java
+++ b/src/main/java/com/loohp/limbo/network/Channel.java
@@ -34,12 +34,14 @@ import java.util.concurrent.atomic.AtomicBoolean;
public class Channel implements AutoCloseable {
+ private final ClientConnection client;
private final List> handlers;
private final AtomicBoolean valid;
protected final DataInputStream input;
protected final DataOutputStream output;
- public Channel(DataInputStream input, DataOutputStream output) {
+ public Channel(ClientConnection client, DataInputStream input, DataOutputStream output) {
+ this.client = client;
this.input = input;
this.output = output;
this.handlers = new CopyOnWriteArrayList<>();
@@ -89,7 +91,13 @@ public class Channel implements AutoCloseable {
}
protected boolean writePacket(PacketOut packet) throws IOException {
+ if (client.getClientState() == ClientConnection.ClientState.DISCONNECTED) {
+ return false;
+ }
ensureOpen();
+ if (packet.getPacketState() != client.getClientState()) {
+ return false;
+ }
ChannelPacketWrite write = new ChannelPacketWrite(packet);
for (Pair pair : handlers) {
write = pair.getSecond().write(write);
diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java
index 2026b11..4ab30d3 100644
--- a/src/main/java/com/loohp/limbo/network/ClientConnection.java
+++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java
@@ -41,6 +41,8 @@ import com.loohp.limbo.inventory.AnvilInventory;
import com.loohp.limbo.inventory.Inventory;
import com.loohp.limbo.inventory.ItemStack;
import com.loohp.limbo.location.Location;
+import com.loohp.limbo.network.protocol.packets.ClientboundFinishConfigurationPacket;
+import com.loohp.limbo.network.protocol.packets.ClientboundRegistryDataPacket;
import com.loohp.limbo.network.protocol.packets.Packet;
import com.loohp.limbo.network.protocol.packets.PacketHandshakingIn;
import com.loohp.limbo.network.protocol.packets.PacketIn;
@@ -92,6 +94,7 @@ import com.loohp.limbo.network.protocol.packets.PacketStatusInRequest;
import com.loohp.limbo.network.protocol.packets.PacketStatusOutPong;
import com.loohp.limbo.network.protocol.packets.PacketStatusOutResponse;
import com.loohp.limbo.network.protocol.packets.ServerboundChatCommandPacket;
+import com.loohp.limbo.network.protocol.packets.ServerboundFinishConfigurationPacket;
import com.loohp.limbo.player.Player;
import com.loohp.limbo.player.PlayerInteractManager;
import com.loohp.limbo.player.PlayerInventory;
@@ -155,7 +158,7 @@ public class ClientConnection extends Thread {
private final Socket clientSocket;
protected Channel channel;
private boolean running;
- private ClientState state;
+ private volatile ClientState state;
private Player player;
private TimerTask keepAliveTask;
@@ -271,7 +274,7 @@ public class ClientConnection extends Thread {
}
private void setChannel(DataInputStream input, DataOutputStream output) {
- this.channel = new Channel(input, output);
+ this.channel = new Channel(this, input, output);
this.channel.addHandlerBefore(DEFAULT_HANDLER_NAMESPACE, new ChannelPacketHandler() {
@Override
@@ -294,6 +297,9 @@ public class ClientConnection extends Thread {
case LOGIN:
packetType = Packet.getLoginIn().get(packetId);
break;
+ case CONFIGURATION:
+ packetType = Packet.getConfigurationIn().get(packetId);
+ break;
case PLAY:
packetType = Packet.getPlayIn().get(packetId);
break;
@@ -498,7 +504,7 @@ public class ClientConnection extends Thread {
continue;
}
- UUID uuid = isBungeecord || isBungeeGuard ? bungeeUUID : (start.hasUniqueId() ? start.getUniqueId() : null);
+ UUID uuid = isBungeecord || isBungeeGuard ? bungeeUUID : start.getUniqueId();
if (uuid == null) {
uuid = UUID.nameUUIDFromBytes(("OfflinePlayer:" + username).getBytes(StandardCharsets.UTF_8));
}
@@ -511,11 +517,10 @@ public class ClientConnection extends Thread {
PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username);
sendPacket(success);
- state = ClientState.PLAY;
+ state = ClientState.CONFIGURATION;
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().getUnsafe().a(player);
break;
} else if (packetIn instanceof PacketLoginInPluginMessaging) {
PacketLoginInPluginMessaging response = (PacketLoginInPluginMessaging) packetIn;
@@ -539,12 +544,10 @@ public class ClientConnection extends Thread {
PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername());
sendPacket(success);
- state = ClientState.PLAY;
+ state = ClientState.CONFIGURATION;
player = new Player(this, data.getUsername(), data.getUuid(), Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
player.setSkinLayers((byte) (0x01 | 0x02 | 0x04 | 0x08 | 0x10 | 0x20 | 0x40));
- Limbo.getInstance().getUnsafe().a(player);
-
break;
}
}
@@ -562,7 +565,20 @@ public class ClientConnection extends Thread {
state = ClientState.DISCONNECTED;
}
- if (state == ClientState.PLAY) {
+ if (state == ClientState.CONFIGURATION) {
+
+ TimeUnit.MILLISECONDS.sleep(500);
+
+ ClientboundRegistryDataPacket registryDataPacket = new ClientboundRegistryDataPacket(Limbo.getInstance().getDimensionRegistry().getCodec());
+ sendPacket(registryDataPacket);
+
+ ClientboundFinishConfigurationPacket clientboundFinishConfigurationPacket = new ClientboundFinishConfigurationPacket();
+ sendPacket(clientboundFinishConfigurationPacket);
+
+ ServerboundFinishConfigurationPacket serverboundFinishConfigurationPacket = (ServerboundFinishConfigurationPacket) channel.readPacket();
+
+ state = ClientState.PLAY;
+ Limbo.getInstance().getUnsafe().a(player);
TimeUnit.MILLISECONDS.sleep(500);
@@ -573,7 +589,7 @@ public class ClientConnection extends Thread {
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, 0);
+ PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, Limbo.getInstance().getWorlds(), (byte) properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, world.getEnvironment(), world, 0, properties.getDefaultGamemode(), false, true, 0);
sendPacket(join);
Limbo.getInstance().getUnsafe().a(player, properties.getDefaultGamemode());
@@ -877,6 +893,7 @@ public class ClientConnection extends Thread {
HANDSHAKE,
STATUS,
LOGIN,
+ CONFIGURATION,
PLAY,
DISCONNECTED;
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundChunkBatchFinishedPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundChunkBatchFinishedPacket.java
new file mode 100644
index 0000000..9eab443
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundChunkBatchFinishedPacket.java
@@ -0,0 +1,52 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2022. LoohpJames
+ * Copyright (C) 2022. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.network.protocol.packets;
+
+import com.loohp.limbo.utils.DataTypeIO;
+
+import java.io.ByteArrayOutputStream;
+import java.io.DataOutputStream;
+import java.io.IOException;
+
+public class ClientboundChunkBatchFinishedPacket extends PacketOut {
+
+ private final int batchSize;
+
+ public ClientboundChunkBatchFinishedPacket(int batchSize) {
+ this.batchSize = batchSize;
+ }
+
+ public int getBatchSize() {
+ return batchSize;
+ }
+
+ @Override
+ public byte[] serializePacket() throws IOException {
+ ByteArrayOutputStream buffer = new ByteArrayOutputStream();
+
+ DataOutputStream output = new DataOutputStream(buffer);
+ output.writeByte(Packet.getPlayOut().get(getClass()));
+
+ DataTypeIO.writeVarInt(output, batchSize);
+
+ return buffer.toByteArray();
+ }
+
+}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundChunkBatchStartPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundChunkBatchStartPacket.java
new file mode 100644
index 0000000..25e31f3
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundChunkBatchStartPacket.java
@@ -0,0 +1,41 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2022. LoohpJames
+ * Copyright (C) 2022. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.network.protocol.packets;
+
+import java.io.ByteArrayOutputStream;
+import java.io.DataOutputStream;
+import java.io.IOException;
+
+public class ClientboundChunkBatchStartPacket extends PacketOut {
+
+ public ClientboundChunkBatchStartPacket() {
+ }
+
+ @Override
+ public byte[] serializePacket() throws IOException {
+ ByteArrayOutputStream buffer = new ByteArrayOutputStream();
+
+ DataOutputStream output = new DataOutputStream(buffer);
+ output.writeByte(Packet.getPlayOut().get(getClass()));
+
+ return buffer.toByteArray();
+ }
+
+}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundFinishConfigurationPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundFinishConfigurationPacket.java
new file mode 100644
index 0000000..3a4766d
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundFinishConfigurationPacket.java
@@ -0,0 +1,40 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2023. LoohpJames
+ * Copyright (C) 2023. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.network.protocol.packets;
+
+import java.io.ByteArrayOutputStream;
+import java.io.DataOutputStream;
+import java.io.IOException;
+
+public class ClientboundFinishConfigurationPacket extends PacketOut {
+
+ public ClientboundFinishConfigurationPacket() {
+ }
+
+ @Override
+ public byte[] serializePacket() throws IOException {
+ ByteArrayOutputStream buffer = new ByteArrayOutputStream();
+
+ DataOutputStream output = new DataOutputStream(buffer);
+ output.writeByte(Packet.getConfigurationOut().get(getClass()));
+
+ return buffer.toByteArray();
+ }
+}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java
index dfa806e..811598f 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java
@@ -119,7 +119,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut {
output.writeInt(chunkX);
output.writeInt(chunkZ);
- DataTypeIO.writeCompoundTag(output, chunk.getHeightMaps());
+ DataTypeIO.writeTag(output, chunk.getHeightMaps());
ByteArrayOutputStream dataBuffer = new ByteArrayOutputStream();
DataOutputStream dataOut = new DataOutputStream(dataBuffer);
@@ -222,13 +222,13 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut {
}
int biome;
if (environment.equals(Environment.END)) {
- biome = 9; //the_end
+ biome = 55; //the_end
} else if (environment.equals(Environment.NETHER)) {
- biome = 8; //nether_waste
+ biome = 34; //nether_waste
} else if (environment.equals(Environment.NORMAL)) {
- biome = 1; //plains
+ biome = 39; //plains
} else {
- biome = 1; //plains
+ biome = 39; //plains
}
dataOut.writeByte(0);
DataTypeIO.writeVarInt(dataOut, biome);
@@ -249,7 +249,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut {
output.writeShort(y);
Integer id = Registry.BLOCK_ENTITY_TYPE.getId(Key.key(chunk.getBlockStateAt(x, y, z).getString("Name")));
DataTypeIO.writeVarInt(output, id == null ? -1 : id);
- DataTypeIO.writeCompoundTag(output, each);
+ DataTypeIO.writeTag(output, each);
}
DataTypeIO.writeVarInt(output, skyLightBitMasks.length);
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundRegistryDataPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundRegistryDataPacket.java
new file mode 100644
index 0000000..b3e8eae
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundRegistryDataPacket.java
@@ -0,0 +1,52 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2023. LoohpJames
+ * Copyright (C) 2023. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.network.protocol.packets;
+
+import com.loohp.limbo.utils.DataTypeIO;
+import net.querz.nbt.tag.CompoundTag;
+
+import java.io.ByteArrayOutputStream;
+import java.io.DataOutputStream;
+import java.io.IOException;
+
+public class ClientboundRegistryDataPacket extends PacketOut {
+
+ private final CompoundTag dimensionCodec;
+
+ public ClientboundRegistryDataPacket(CompoundTag dimensionCodec) {
+ this.dimensionCodec = dimensionCodec;
+ }
+
+ public CompoundTag getDimensionCodec() {
+ return dimensionCodec;
+ }
+
+ @Override
+ public byte[] serializePacket() throws IOException {
+ ByteArrayOutputStream buffer = new ByteArrayOutputStream();
+
+ DataOutputStream output = new DataOutputStream(buffer);
+ output.writeByte(Packet.getConfigurationOut().get(getClass()));
+
+ DataTypeIO.writeTag(output, dimensionCodec);
+
+ return buffer.toByteArray();
+ }
+}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java b/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java
index 614544a..ac7935e 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java
@@ -19,9 +19,11 @@
package com.loohp.limbo.network.protocol.packets;
+import com.loohp.limbo.network.ClientConnection;
+
import java.util.Map;
-public class Packet {
+public abstract class Packet {
private static Map> handshakeIn;
@@ -31,6 +33,9 @@ public class Packet {
private static Map> loginIn;
private static Map, Integer> loginOut;
+ private static Map> configurationIn;
+ private static Map, Integer> configurationOut;
+
private static Map> playIn;
private static Map, Integer> playOut;
@@ -74,6 +79,22 @@ public class Packet {
Packet.loginOut = loginOut;
}
+ public static Map> getConfigurationIn() {
+ return configurationIn;
+ }
+
+ public static void setConfigurationIn(Map> configurationIn) {
+ Packet.configurationIn = configurationIn;
+ }
+
+ public static Map, Integer> getConfigurationOut() {
+ return configurationOut;
+ }
+
+ public static void setConfigurationOut(Map, Integer> configurationOut) {
+ Packet.configurationOut = configurationOut;
+ }
+
public static Map> getPlayIn() {
return playIn;
}
@@ -90,4 +111,19 @@ public class Packet {
Packet.playOut = playOut;
}
+ public ClientConnection.ClientState getPacketState() {
+ Class extends Packet> type = getClass();
+ if (handshakeIn.containsValue(type)) {
+ return ClientConnection.ClientState.HANDSHAKE;
+ } else if (loginIn.containsValue(type) || loginOut.containsKey(type)) {
+ return ClientConnection.ClientState.LOGIN;
+ } else if (configurationIn.containsValue(type) || configurationOut.containsKey(type)) {
+ return ClientConnection.ClientState.CONFIGURATION;
+ } else if (playIn.containsValue(type) || playOut.containsKey(type)) {
+ return ClientConnection.ClientState.PLAY;
+ } else {
+ throw new IllegalStateException("This packet is not registered!");
+ }
+ }
+
}
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 2a70aee..79e8ae0 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
@@ -24,36 +24,27 @@ import com.loohp.limbo.utils.DataTypeIO;
import java.io.DataInputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
-import java.util.Optional;
import java.util.UUID;
public class PacketLoginInLoginStart extends PacketIn {
- private String username;
- private Optional uuid;
+ private final String username;
+ private final UUID uuid;
- public PacketLoginInLoginStart(String username) {
+ public PacketLoginInLoginStart(String username, UUID uuid) {
this.username = username;
+ this.uuid = uuid;
}
public PacketLoginInLoginStart(DataInputStream in) throws IOException {
- this.username = DataTypeIO.readString(in, StandardCharsets.UTF_8);
- if (in.readBoolean()) {
- this.uuid = Optional.of(DataTypeIO.readUUID(in));
- } else {
- this.uuid = Optional.empty();
- }
+ this(DataTypeIO.readString(in, StandardCharsets.UTF_8), DataTypeIO.readUUID(in));
}
public String getUsername() {
return username;
}
- public boolean hasUniqueId() {
- return uuid.isPresent();
- }
-
public UUID getUniqueId() {
- return uuid.orElse(null);
+ return uuid;
}
}
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 595c3c3..bd8a1b2 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
@@ -24,7 +24,6 @@ import com.loohp.limbo.utils.GameMode;
import com.loohp.limbo.world.Environment;
import com.loohp.limbo.world.World;
import net.kyori.adventure.key.Key;
-import net.querz.nbt.tag.CompoundTag;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
@@ -34,37 +33,37 @@ import java.util.List;
public class PacketPlayOutLogin extends PacketOut {
- private int entityId;
- private boolean isHardcore;
- private GameMode gamemode;
- private List worlds;
- private CompoundTag dimensionCodec;
- private Environment dimension;
- private World world;
- private long hashedSeed;
- private byte maxPlayers;
- private int viewDistance;
- private int simulationDistance;
- private boolean reducedDebugInfo;
- private boolean enableRespawnScreen;
- private boolean isDebug;
- private boolean isFlat;
- private int portalCooldown;
+ private final int entityId;
+ private final boolean isHardcore;
+ private final List worlds;
+ private final byte maxPlayers;
+ private final int viewDistance;
+ private final int simulationDistance;
+ private final boolean reducedDebugInfo;
+ private final boolean enableRespawnScreen;
+ private final boolean doLimitedCrafting;
+ private final Environment dimension;
+ private final World world;
+ private final long hashedSeed;
+ private final GameMode gamemode;
+ private final boolean isDebug;
+ private final boolean isFlat;
+ private final int portalCooldown;
- public PacketPlayOutLogin(int entityId, boolean isHardcore, GameMode gamemode, List worlds, CompoundTag dimensionCodec, World world, long hashedSeed, byte maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean isDebug, boolean isFlat, int portalCooldown) {
+ public PacketPlayOutLogin(int entityId, boolean isHardcore, List worlds, byte maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean doLimitedCrafting, Environment dimension, World world, long hashedSeed, GameMode gamemode, boolean isDebug, boolean isFlat, int portalCooldown) {
this.entityId = entityId;
this.isHardcore = isHardcore;
- this.gamemode = gamemode;
this.worlds = worlds;
- this.dimensionCodec = dimensionCodec;
- this.dimension = world.getEnvironment();
- this.world = world;
- this.hashedSeed = hashedSeed;
this.maxPlayers = maxPlayers;
this.viewDistance = viewDistance;
this.simulationDistance = simulationDistance;
this.reducedDebugInfo = reducedDebugInfo;
this.enableRespawnScreen = enableRespawnScreen;
+ this.doLimitedCrafting = doLimitedCrafting;
+ this.dimension = dimension;
+ this.world = world;
+ this.hashedSeed = hashedSeed;
+ this.gamemode = gamemode;
this.isDebug = isDebug;
this.isFlat = isFlat;
this.portalCooldown = portalCooldown;
@@ -78,16 +77,32 @@ public class PacketPlayOutLogin extends PacketOut {
return isHardcore;
}
- public GameMode getGamemode() {
- return gamemode;
- }
-
- public List getWorldsNames() {
+ public List getWorlds() {
return worlds;
}
- public CompoundTag getDimensionCodec() {
- return dimensionCodec;
+ public byte getMaxPlayers() {
+ return maxPlayers;
+ }
+
+ public int getViewDistance() {
+ return viewDistance;
+ }
+
+ public int getSimulationDistance() {
+ return simulationDistance;
+ }
+
+ public boolean isReducedDebugInfo() {
+ return reducedDebugInfo;
+ }
+
+ public boolean isEnableRespawnScreen() {
+ return enableRespawnScreen;
+ }
+
+ public boolean isDoLimitedCrafting() {
+ return doLimitedCrafting;
}
public Environment getDimension() {
@@ -102,24 +117,8 @@ public class PacketPlayOutLogin extends PacketOut {
return hashedSeed;
}
- public byte getMaxPlayers() {
- return maxPlayers;
- }
-
- public int getViewDistance() {
- return viewDistance;
- }
-
- public int getSimulationDistance() {
- return simulationDistance;
- }
-
- public boolean isReducedDebugInfo() {
- return reducedDebugInfo;
- }
-
- public boolean isEnableRespawnScreen() {
- return enableRespawnScreen;
+ public GameMode getGamemode() {
+ return gamemode;
}
public boolean isDebug() {
@@ -129,7 +128,11 @@ public class PacketPlayOutLogin extends PacketOut {
public boolean isFlat() {
return isFlat;
}
-
+
+ public int getPortalCooldown() {
+ return portalCooldown;
+ }
+
@Override
public byte[] serializePacket() throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
@@ -138,21 +141,21 @@ public class PacketPlayOutLogin extends PacketOut {
output.writeByte(Packet.getPlayOut().get(getClass()));
output.writeInt(entityId);
output.writeBoolean(isHardcore);
- output.writeByte((byte) gamemode.getId());
- output.writeByte(-1);
DataTypeIO.writeVarInt(output, worlds.size());
for (World world : worlds) {
DataTypeIO.writeString(output, Key.key(world.getName()).toString(), StandardCharsets.UTF_8);
}
- DataTypeIO.writeCompoundTag(output, dimensionCodec);
- DataTypeIO.writeString(output, world.getEnvironment().getKey().toString(), StandardCharsets.UTF_8);
- DataTypeIO.writeString(output, Key.key(world.getName()).toString(), StandardCharsets.UTF_8);
- output.writeLong(hashedSeed);
DataTypeIO.writeVarInt(output, maxPlayers);
DataTypeIO.writeVarInt(output, viewDistance);
DataTypeIO.writeVarInt(output, simulationDistance);
output.writeBoolean(reducedDebugInfo);
output.writeBoolean(enableRespawnScreen);
+ output.writeBoolean(doLimitedCrafting);
+ DataTypeIO.writeString(output, world.getEnvironment().getKey().toString(), StandardCharsets.UTF_8);
+ DataTypeIO.writeString(output, Key.key(world.getName()).toString(), StandardCharsets.UTF_8);
+ output.writeLong(hashedSeed);
+ output.writeByte((byte) gamemode.getId());
+ output.writeByte(-1);
output.writeBoolean(isDebug);
output.writeBoolean(isFlat);
output.writeBoolean(false);
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java
index 1144321..9372426 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java
@@ -100,7 +100,7 @@ public class PacketPlayOutRespawn extends PacketOut {
break;
}
}
- DataTypeIO.writeCompoundTag(output, tag != null ? tag : list.get(0));
+ DataTypeIO.writeTag(output, tag != null ? tag : list.get(0));
DataTypeIO.writeString(output, worldName, StandardCharsets.UTF_8);
output.writeLong(hashedSeed);
output.writeByte((byte) gamemode.getId());
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundFinishConfigurationPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundFinishConfigurationPacket.java
new file mode 100644
index 0000000..67a0378
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundFinishConfigurationPacket.java
@@ -0,0 +1,33 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2023. LoohpJames
+ * Copyright (C) 2023. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.network.protocol.packets;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+public class ServerboundFinishConfigurationPacket extends PacketIn {
+
+ public ServerboundFinishConfigurationPacket() {
+ }
+
+ public ServerboundFinishConfigurationPacket(DataInputStream in) throws IOException {
+ this();
+ }
+}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundLoginAcknowledgedPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundLoginAcknowledgedPacket.java
new file mode 100644
index 0000000..6ae0ffb
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ServerboundLoginAcknowledgedPacket.java
@@ -0,0 +1,34 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2023. LoohpJames
+ * Copyright (C) 2023. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.network.protocol.packets;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+public class ServerboundLoginAcknowledgedPacket extends PacketIn {
+
+ public ServerboundLoginAcknowledgedPacket() {
+ }
+
+ public ServerboundLoginAcknowledgedPacket(DataInputStream in) throws IOException {
+ this();
+ }
+
+}
diff --git a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java
index 49bcaa1..719d242 100644
--- a/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java
+++ b/src/main/java/com/loohp/limbo/player/PlayerInteractManager.java
@@ -22,6 +22,9 @@ package com.loohp.limbo.player;
import com.loohp.limbo.Limbo;
import com.loohp.limbo.entity.Entity;
import com.loohp.limbo.location.Location;
+import com.loohp.limbo.network.ClientConnection;
+import com.loohp.limbo.network.protocol.packets.ClientboundChunkBatchFinishedPacket;
+import com.loohp.limbo.network.protocol.packets.ClientboundChunkBatchStartPacket;
import com.loohp.limbo.network.protocol.packets.ClientboundLevelChunkWithLightPacket;
import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityDestroy;
import com.loohp.limbo.network.protocol.packets.PacketPlayOutEntityMetadata;
@@ -68,6 +71,10 @@ public class PlayerInteractManager {
}
public void update() throws IOException {
+ if (player.clientConnection.getClientState() != ClientConnection.ClientState.PLAY) {
+ return;
+ }
+
int viewDistanceChunks = Limbo.getInstance().getServerProperties().getViewDistance();
int viewDistanceBlocks = viewDistanceChunks << 4;
Location location = player.getLocation();
@@ -119,6 +126,9 @@ public class PlayerInteractManager {
}
}
+ int counter = 0;
+ ClientboundChunkBatchStartPacket chunkBatchStartPacket = new ClientboundChunkBatchStartPacket();
+ player.clientConnection.sendPacket(chunkBatchStartPacket);
for (Entry entry : chunksInRange.entrySet()) {
ChunkPosition chunkPos = entry.getKey();
if (!currentViewing.containsKey(chunkPos)) {
@@ -126,7 +136,7 @@ public class PlayerInteractManager {
if (chunk == null) {
ClientboundLevelChunkWithLightPacket chunkdata = new ClientboundLevelChunkWithLightPacket(chunkPos.getChunkX(), chunkPos.getChunkZ(), entry.getValue(), world.getEnvironment(), Collections.emptyList(), Collections.emptyList());
player.clientConnection.sendPacket(chunkdata);
- } else {
+ } else {
List blockChunk = world.getLightEngineBlock().getBlockLightBitMask(chunkPos.getChunkX(), chunkPos.getChunkZ());
if (blockChunk == null) {
blockChunk = new ArrayList<>();
@@ -140,9 +150,12 @@ public class PlayerInteractManager {
}
ClientboundLevelChunkWithLightPacket chunkdata = new ClientboundLevelChunkWithLightPacket(chunkPos.getChunkX(), chunkPos.getChunkZ(), chunk, world.getEnvironment(), skyChunk, blockChunk);
player.clientConnection.sendPacket(chunkdata);
- }
- }
+ }
+ counter++;
+ }
}
+ ClientboundChunkBatchFinishedPacket chunkBatchFinishedPacket = new ClientboundChunkBatchFinishedPacket(counter);
+ player.clientConnection.sendPacket(chunkBatchFinishedPacket);
currentViewing = chunksInRange;
}
diff --git a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java
index 81ef92b..8f67b9d 100644
--- a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java
+++ b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java
@@ -29,6 +29,7 @@ import net.kyori.adventure.key.Key;
import net.querz.nbt.io.NBTInputStream;
import net.querz.nbt.io.NBTOutputStream;
import net.querz.nbt.tag.CompoundTag;
+import net.querz.nbt.tag.EndTag;
import net.querz.nbt.tag.Tag;
import java.io.ByteArrayOutputStream;
@@ -51,7 +52,7 @@ public class DataTypeIO {
out.writeBoolean(true);
writeVarInt(out, Registry.ITEM_REGISTRY.getId(itemstack.type()));
out.writeByte(itemstack.amount());
- writeCompoundTag(out, itemstack.nbt());
+ writeTag(out, itemstack.nbt());
}
}
@@ -61,7 +62,7 @@ public class DataTypeIO {
} else {
Key key = Registry.ITEM_REGISTRY.fromId(readVarInt(in));
byte amount = in.readByte();
- CompoundTag nbt = readCompoundTag(in);
+ CompoundTag nbt = readTag(in, CompoundTag.class);
return new ItemStack(key, amount, nbt);
}
}
@@ -152,22 +153,25 @@ public class DataTypeIO {
return new UUID(in.readLong(), in.readLong());
}
- public static void writeCompoundTag(DataOutputStream out, CompoundTag tag) throws IOException {
+ public static void writeTag(DataOutputStream out, Tag> tag) throws IOException {
if (tag == null) {
- out.writeByte(0);
- } else {
- new NBTOutputStream(out).writeTag(tag, Tag.DEFAULT_MAX_DEPTH);
+ tag = EndTag.INSTANCE;
+ }
+ out.writeByte(tag.getID());
+ if (tag.getID() != 0) {
+ new NBTOutputStream(out).writeRawTag(tag, Tag.DEFAULT_MAX_DEPTH);
}
}
- public static CompoundTag readCompoundTag(DataInputStream in) throws IOException {
+ @SuppressWarnings("unchecked")
+ public static > T readTag(DataInputStream in, Class type) throws IOException {
byte b = in.readByte();
if (b == 0) {
- return null;
+ return type.isInstance(EndTag.INSTANCE) ? (T) EndTag.INSTANCE : null;
}
PushbackInputStream buffered = new PushbackInputStream(in);
buffered.unread(b);
- return (CompoundTag) new NBTInputStream(buffered).readTag(Tag.DEFAULT_MAX_DEPTH).getTag();
+ return (T) new NBTInputStream(buffered).readRawTag(Tag.DEFAULT_MAX_DEPTH);
}
public static String readString(DataInputStream in, Charset charset) throws IOException {
diff --git a/src/main/resources/blocks.json b/src/main/resources/blocks.json
index ebb070a..ac619df 100644
--- a/src/main/resources/blocks.json
+++ b/src/main/resources/blocks.json
@@ -240,7 +240,7 @@
},
"states": [
{
- "id": 11873,
+ "id": 12014,
"properties": {
"facing": "north",
"half": "upper",
@@ -250,7 +250,7 @@
}
},
{
- "id": 11874,
+ "id": 12015,
"properties": {
"facing": "north",
"half": "upper",
@@ -260,7 +260,7 @@
}
},
{
- "id": 11875,
+ "id": 12016,
"properties": {
"facing": "north",
"half": "upper",
@@ -270,7 +270,7 @@
}
},
{
- "id": 11876,
+ "id": 12017,
"properties": {
"facing": "north",
"half": "upper",
@@ -280,7 +280,7 @@
}
},
{
- "id": 11877,
+ "id": 12018,
"properties": {
"facing": "north",
"half": "upper",
@@ -290,7 +290,7 @@
}
},
{
- "id": 11878,
+ "id": 12019,
"properties": {
"facing": "north",
"half": "upper",
@@ -300,7 +300,7 @@
}
},
{
- "id": 11879,
+ "id": 12020,
"properties": {
"facing": "north",
"half": "upper",
@@ -310,7 +310,7 @@
}
},
{
- "id": 11880,
+ "id": 12021,
"properties": {
"facing": "north",
"half": "upper",
@@ -320,7 +320,7 @@
}
},
{
- "id": 11881,
+ "id": 12022,
"properties": {
"facing": "north",
"half": "lower",
@@ -330,7 +330,7 @@
}
},
{
- "id": 11882,
+ "id": 12023,
"properties": {
"facing": "north",
"half": "lower",
@@ -340,7 +340,7 @@
}
},
{
- "id": 11883,
+ "id": 12024,
"properties": {
"facing": "north",
"half": "lower",
@@ -351,7 +351,7 @@
},
{
"default": true,
- "id": 11884,
+ "id": 12025,
"properties": {
"facing": "north",
"half": "lower",
@@ -361,7 +361,7 @@
}
},
{
- "id": 11885,
+ "id": 12026,
"properties": {
"facing": "north",
"half": "lower",
@@ -371,7 +371,7 @@
}
},
{
- "id": 11886,
+ "id": 12027,
"properties": {
"facing": "north",
"half": "lower",
@@ -381,7 +381,7 @@
}
},
{
- "id": 11887,
+ "id": 12028,
"properties": {
"facing": "north",
"half": "lower",
@@ -391,7 +391,7 @@
}
},
{
- "id": 11888,
+ "id": 12029,
"properties": {
"facing": "north",
"half": "lower",
@@ -401,7 +401,7 @@
}
},
{
- "id": 11889,
+ "id": 12030,
"properties": {
"facing": "south",
"half": "upper",
@@ -411,7 +411,7 @@
}
},
{
- "id": 11890,
+ "id": 12031,
"properties": {
"facing": "south",
"half": "upper",
@@ -421,7 +421,7 @@
}
},
{
- "id": 11891,
+ "id": 12032,
"properties": {
"facing": "south",
"half": "upper",
@@ -431,7 +431,7 @@
}
},
{
- "id": 11892,
+ "id": 12033,
"properties": {
"facing": "south",
"half": "upper",
@@ -441,7 +441,7 @@
}
},
{
- "id": 11893,
+ "id": 12034,
"properties": {
"facing": "south",
"half": "upper",
@@ -451,7 +451,7 @@
}
},
{
- "id": 11894,
+ "id": 12035,
"properties": {
"facing": "south",
"half": "upper",
@@ -461,7 +461,7 @@
}
},
{
- "id": 11895,
+ "id": 12036,
"properties": {
"facing": "south",
"half": "upper",
@@ -471,7 +471,7 @@
}
},
{
- "id": 11896,
+ "id": 12037,
"properties": {
"facing": "south",
"half": "upper",
@@ -481,7 +481,7 @@
}
},
{
- "id": 11897,
+ "id": 12038,
"properties": {
"facing": "south",
"half": "lower",
@@ -491,7 +491,7 @@
}
},
{
- "id": 11898,
+ "id": 12039,
"properties": {
"facing": "south",
"half": "lower",
@@ -501,7 +501,7 @@
}
},
{
- "id": 11899,
+ "id": 12040,
"properties": {
"facing": "south",
"half": "lower",
@@ -511,7 +511,7 @@
}
},
{
- "id": 11900,
+ "id": 12041,
"properties": {
"facing": "south",
"half": "lower",
@@ -521,7 +521,7 @@
}
},
{
- "id": 11901,
+ "id": 12042,
"properties": {
"facing": "south",
"half": "lower",
@@ -531,7 +531,7 @@
}
},
{
- "id": 11902,
+ "id": 12043,
"properties": {
"facing": "south",
"half": "lower",
@@ -541,7 +541,7 @@
}
},
{
- "id": 11903,
+ "id": 12044,
"properties": {
"facing": "south",
"half": "lower",
@@ -551,7 +551,7 @@
}
},
{
- "id": 11904,
+ "id": 12045,
"properties": {
"facing": "south",
"half": "lower",
@@ -561,7 +561,7 @@
}
},
{
- "id": 11905,
+ "id": 12046,
"properties": {
"facing": "west",
"half": "upper",
@@ -571,7 +571,7 @@
}
},
{
- "id": 11906,
+ "id": 12047,
"properties": {
"facing": "west",
"half": "upper",
@@ -581,7 +581,7 @@
}
},
{
- "id": 11907,
+ "id": 12048,
"properties": {
"facing": "west",
"half": "upper",
@@ -591,7 +591,7 @@
}
},
{
- "id": 11908,
+ "id": 12049,
"properties": {
"facing": "west",
"half": "upper",
@@ -601,7 +601,7 @@
}
},
{
- "id": 11909,
+ "id": 12050,
"properties": {
"facing": "west",
"half": "upper",
@@ -611,7 +611,7 @@
}
},
{
- "id": 11910,
+ "id": 12051,
"properties": {
"facing": "west",
"half": "upper",
@@ -621,7 +621,7 @@
}
},
{
- "id": 11911,
+ "id": 12052,
"properties": {
"facing": "west",
"half": "upper",
@@ -631,7 +631,7 @@
}
},
{
- "id": 11912,
+ "id": 12053,
"properties": {
"facing": "west",
"half": "upper",
@@ -641,7 +641,7 @@
}
},
{
- "id": 11913,
+ "id": 12054,
"properties": {
"facing": "west",
"half": "lower",
@@ -651,7 +651,7 @@
}
},
{
- "id": 11914,
+ "id": 12055,
"properties": {
"facing": "west",
"half": "lower",
@@ -661,7 +661,7 @@
}
},
{
- "id": 11915,
+ "id": 12056,
"properties": {
"facing": "west",
"half": "lower",
@@ -671,7 +671,7 @@
}
},
{
- "id": 11916,
+ "id": 12057,
"properties": {
"facing": "west",
"half": "lower",
@@ -681,7 +681,7 @@
}
},
{
- "id": 11917,
+ "id": 12058,
"properties": {
"facing": "west",
"half": "lower",
@@ -691,7 +691,7 @@
}
},
{
- "id": 11918,
+ "id": 12059,
"properties": {
"facing": "west",
"half": "lower",
@@ -701,7 +701,7 @@
}
},
{
- "id": 11919,
+ "id": 12060,
"properties": {
"facing": "west",
"half": "lower",
@@ -711,7 +711,7 @@
}
},
{
- "id": 11920,
+ "id": 12061,
"properties": {
"facing": "west",
"half": "lower",
@@ -721,7 +721,7 @@
}
},
{
- "id": 11921,
+ "id": 12062,
"properties": {
"facing": "east",
"half": "upper",
@@ -731,7 +731,7 @@
}
},
{
- "id": 11922,
+ "id": 12063,
"properties": {
"facing": "east",
"half": "upper",
@@ -741,7 +741,7 @@
}
},
{
- "id": 11923,
+ "id": 12064,
"properties": {
"facing": "east",
"half": "upper",
@@ -751,7 +751,7 @@
}
},
{
- "id": 11924,
+ "id": 12065,
"properties": {
"facing": "east",
"half": "upper",
@@ -761,7 +761,7 @@
}
},
{
- "id": 11925,
+ "id": 12066,
"properties": {
"facing": "east",
"half": "upper",
@@ -771,7 +771,7 @@
}
},
{
- "id": 11926,
+ "id": 12067,
"properties": {
"facing": "east",
"half": "upper",
@@ -781,7 +781,7 @@
}
},
{
- "id": 11927,
+ "id": 12068,
"properties": {
"facing": "east",
"half": "upper",
@@ -791,7 +791,7 @@
}
},
{
- "id": 11928,
+ "id": 12069,
"properties": {
"facing": "east",
"half": "upper",
@@ -801,7 +801,7 @@
}
},
{
- "id": 11929,
+ "id": 12070,
"properties": {
"facing": "east",
"half": "lower",
@@ -811,7 +811,7 @@
}
},
{
- "id": 11930,
+ "id": 12071,
"properties": {
"facing": "east",
"half": "lower",
@@ -821,7 +821,7 @@
}
},
{
- "id": 11931,
+ "id": 12072,
"properties": {
"facing": "east",
"half": "lower",
@@ -831,7 +831,7 @@
}
},
{
- "id": 11932,
+ "id": 12073,
"properties": {
"facing": "east",
"half": "lower",
@@ -841,7 +841,7 @@
}
},
{
- "id": 11933,
+ "id": 12074,
"properties": {
"facing": "east",
"half": "lower",
@@ -851,7 +851,7 @@
}
},
{
- "id": 11934,
+ "id": 12075,
"properties": {
"facing": "east",
"half": "lower",
@@ -861,7 +861,7 @@
}
},
{
- "id": 11935,
+ "id": 12076,
"properties": {
"facing": "east",
"half": "lower",
@@ -871,7 +871,7 @@
}
},
{
- "id": 11936,
+ "id": 12077,
"properties": {
"facing": "east",
"half": "lower",
@@ -907,7 +907,7 @@
},
"states": [
{
- "id": 11521,
+ "id": 11662,
"properties": {
"east": "true",
"north": "true",
@@ -917,7 +917,7 @@
}
},
{
- "id": 11522,
+ "id": 11663,
"properties": {
"east": "true",
"north": "true",
@@ -927,7 +927,7 @@
}
},
{
- "id": 11523,
+ "id": 11664,
"properties": {
"east": "true",
"north": "true",
@@ -937,7 +937,7 @@
}
},
{
- "id": 11524,
+ "id": 11665,
"properties": {
"east": "true",
"north": "true",
@@ -947,7 +947,7 @@
}
},
{
- "id": 11525,
+ "id": 11666,
"properties": {
"east": "true",
"north": "true",
@@ -957,7 +957,7 @@
}
},
{
- "id": 11526,
+ "id": 11667,
"properties": {
"east": "true",
"north": "true",
@@ -967,7 +967,7 @@
}
},
{
- "id": 11527,
+ "id": 11668,
"properties": {
"east": "true",
"north": "true",
@@ -977,7 +977,7 @@
}
},
{
- "id": 11528,
+ "id": 11669,
"properties": {
"east": "true",
"north": "true",
@@ -987,7 +987,7 @@
}
},
{
- "id": 11529,
+ "id": 11670,
"properties": {
"east": "true",
"north": "false",
@@ -997,7 +997,7 @@
}
},
{
- "id": 11530,
+ "id": 11671,
"properties": {
"east": "true",
"north": "false",
@@ -1007,7 +1007,7 @@
}
},
{
- "id": 11531,
+ "id": 11672,
"properties": {
"east": "true",
"north": "false",
@@ -1017,7 +1017,7 @@
}
},
{
- "id": 11532,
+ "id": 11673,
"properties": {
"east": "true",
"north": "false",
@@ -1027,7 +1027,7 @@
}
},
{
- "id": 11533,
+ "id": 11674,
"properties": {
"east": "true",
"north": "false",
@@ -1037,7 +1037,7 @@
}
},
{
- "id": 11534,
+ "id": 11675,
"properties": {
"east": "true",
"north": "false",
@@ -1047,7 +1047,7 @@
}
},
{
- "id": 11535,
+ "id": 11676,
"properties": {
"east": "true",
"north": "false",
@@ -1057,7 +1057,7 @@
}
},
{
- "id": 11536,
+ "id": 11677,
"properties": {
"east": "true",
"north": "false",
@@ -1067,7 +1067,7 @@
}
},
{
- "id": 11537,
+ "id": 11678,
"properties": {
"east": "false",
"north": "true",
@@ -1077,7 +1077,7 @@
}
},
{
- "id": 11538,
+ "id": 11679,
"properties": {
"east": "false",
"north": "true",
@@ -1087,7 +1087,7 @@
}
},
{
- "id": 11539,
+ "id": 11680,
"properties": {
"east": "false",
"north": "true",
@@ -1097,7 +1097,7 @@
}
},
{
- "id": 11540,
+ "id": 11681,
"properties": {
"east": "false",
"north": "true",
@@ -1107,7 +1107,7 @@
}
},
{
- "id": 11541,
+ "id": 11682,
"properties": {
"east": "false",
"north": "true",
@@ -1117,7 +1117,7 @@
}
},
{
- "id": 11542,
+ "id": 11683,
"properties": {
"east": "false",
"north": "true",
@@ -1127,7 +1127,7 @@
}
},
{
- "id": 11543,
+ "id": 11684,
"properties": {
"east": "false",
"north": "true",
@@ -1137,7 +1137,7 @@
}
},
{
- "id": 11544,
+ "id": 11685,
"properties": {
"east": "false",
"north": "true",
@@ -1147,7 +1147,7 @@
}
},
{
- "id": 11545,
+ "id": 11686,
"properties": {
"east": "false",
"north": "false",
@@ -1157,7 +1157,7 @@
}
},
{
- "id": 11546,
+ "id": 11687,
"properties": {
"east": "false",
"north": "false",
@@ -1167,7 +1167,7 @@
}
},
{
- "id": 11547,
+ "id": 11688,
"properties": {
"east": "false",
"north": "false",
@@ -1177,7 +1177,7 @@
}
},
{
- "id": 11548,
+ "id": 11689,
"properties": {
"east": "false",
"north": "false",
@@ -1187,7 +1187,7 @@
}
},
{
- "id": 11549,
+ "id": 11690,
"properties": {
"east": "false",
"north": "false",
@@ -1197,7 +1197,7 @@
}
},
{
- "id": 11550,
+ "id": 11691,
"properties": {
"east": "false",
"north": "false",
@@ -1207,7 +1207,7 @@
}
},
{
- "id": 11551,
+ "id": 11692,
"properties": {
"east": "false",
"north": "false",
@@ -1218,7 +1218,7 @@
},
{
"default": true,
- "id": 11552,
+ "id": 11693,
"properties": {
"east": "false",
"north": "false",
@@ -1252,7 +1252,7 @@
},
"states": [
{
- "id": 11265,
+ "id": 11406,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1261,7 +1261,7 @@
}
},
{
- "id": 11266,
+ "id": 11407,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1270,7 +1270,7 @@
}
},
{
- "id": 11267,
+ "id": 11408,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1279,7 +1279,7 @@
}
},
{
- "id": 11268,
+ "id": 11409,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -1288,7 +1288,7 @@
}
},
{
- "id": 11269,
+ "id": 11410,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1297,7 +1297,7 @@
}
},
{
- "id": 11270,
+ "id": 11411,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1306,7 +1306,7 @@
}
},
{
- "id": 11271,
+ "id": 11412,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1316,7 +1316,7 @@
},
{
"default": true,
- "id": 11272,
+ "id": 11413,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -1325,7 +1325,7 @@
}
},
{
- "id": 11273,
+ "id": 11414,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1334,7 +1334,7 @@
}
},
{
- "id": 11274,
+ "id": 11415,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1343,7 +1343,7 @@
}
},
{
- "id": 11275,
+ "id": 11416,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1352,7 +1352,7 @@
}
},
{
- "id": 11276,
+ "id": 11417,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -1361,7 +1361,7 @@
}
},
{
- "id": 11277,
+ "id": 11418,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1370,7 +1370,7 @@
}
},
{
- "id": 11278,
+ "id": 11419,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1379,7 +1379,7 @@
}
},
{
- "id": 11279,
+ "id": 11420,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1388,7 +1388,7 @@
}
},
{
- "id": 11280,
+ "id": 11421,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -1397,7 +1397,7 @@
}
},
{
- "id": 11281,
+ "id": 11422,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1406,7 +1406,7 @@
}
},
{
- "id": 11282,
+ "id": 11423,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1415,7 +1415,7 @@
}
},
{
- "id": 11283,
+ "id": 11424,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1424,7 +1424,7 @@
}
},
{
- "id": 11284,
+ "id": 11425,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -1433,7 +1433,7 @@
}
},
{
- "id": 11285,
+ "id": 11426,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1442,7 +1442,7 @@
}
},
{
- "id": 11286,
+ "id": 11427,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1451,7 +1451,7 @@
}
},
{
- "id": 11287,
+ "id": 11428,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1460,7 +1460,7 @@
}
},
{
- "id": 11288,
+ "id": 11429,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -1469,7 +1469,7 @@
}
},
{
- "id": 11289,
+ "id": 11430,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1478,7 +1478,7 @@
}
},
{
- "id": 11290,
+ "id": 11431,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1487,7 +1487,7 @@
}
},
{
- "id": 11291,
+ "id": 11432,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1496,7 +1496,7 @@
}
},
{
- "id": 11292,
+ "id": 11433,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -1505,7 +1505,7 @@
}
},
{
- "id": 11293,
+ "id": 11434,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1514,7 +1514,7 @@
}
},
{
- "id": 11294,
+ "id": 11435,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1523,7 +1523,7 @@
}
},
{
- "id": 11295,
+ "id": 11436,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -1532,7 +1532,7 @@
}
},
{
- "id": 11296,
+ "id": 11437,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -2686,21 +2686,21 @@
},
"states": [
{
- "id": 11045,
+ "id": 11186,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11046,
+ "id": 11187,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11047,
+ "id": 11188,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -2708,21 +2708,21 @@
},
{
"default": true,
- "id": 11048,
+ "id": 11189,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11049,
+ "id": 11190,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11050,
+ "id": 11191,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -2756,7 +2756,7 @@
},
"states": [
{
- "id": 9744,
+ "id": 9884,
"properties": {
"facing": "north",
"half": "top",
@@ -2765,7 +2765,7 @@
}
},
{
- "id": 9745,
+ "id": 9885,
"properties": {
"facing": "north",
"half": "top",
@@ -2774,7 +2774,7 @@
}
},
{
- "id": 9746,
+ "id": 9886,
"properties": {
"facing": "north",
"half": "top",
@@ -2783,7 +2783,7 @@
}
},
{
- "id": 9747,
+ "id": 9887,
"properties": {
"facing": "north",
"half": "top",
@@ -2792,7 +2792,7 @@
}
},
{
- "id": 9748,
+ "id": 9888,
"properties": {
"facing": "north",
"half": "top",
@@ -2801,7 +2801,7 @@
}
},
{
- "id": 9749,
+ "id": 9889,
"properties": {
"facing": "north",
"half": "top",
@@ -2810,7 +2810,7 @@
}
},
{
- "id": 9750,
+ "id": 9890,
"properties": {
"facing": "north",
"half": "top",
@@ -2819,7 +2819,7 @@
}
},
{
- "id": 9751,
+ "id": 9891,
"properties": {
"facing": "north",
"half": "top",
@@ -2828,7 +2828,7 @@
}
},
{
- "id": 9752,
+ "id": 9892,
"properties": {
"facing": "north",
"half": "top",
@@ -2837,7 +2837,7 @@
}
},
{
- "id": 9753,
+ "id": 9893,
"properties": {
"facing": "north",
"half": "top",
@@ -2846,7 +2846,7 @@
}
},
{
- "id": 9754,
+ "id": 9894,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2856,7 +2856,7 @@
},
{
"default": true,
- "id": 9755,
+ "id": 9895,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2865,7 +2865,7 @@
}
},
{
- "id": 9756,
+ "id": 9896,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2874,7 +2874,7 @@
}
},
{
- "id": 9757,
+ "id": 9897,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2883,7 +2883,7 @@
}
},
{
- "id": 9758,
+ "id": 9898,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2892,7 +2892,7 @@
}
},
{
- "id": 9759,
+ "id": 9899,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2901,7 +2901,7 @@
}
},
{
- "id": 9760,
+ "id": 9900,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2910,7 +2910,7 @@
}
},
{
- "id": 9761,
+ "id": 9901,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2919,7 +2919,7 @@
}
},
{
- "id": 9762,
+ "id": 9902,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2928,7 +2928,7 @@
}
},
{
- "id": 9763,
+ "id": 9903,
"properties": {
"facing": "north",
"half": "bottom",
@@ -2937,7 +2937,7 @@
}
},
{
- "id": 9764,
+ "id": 9904,
"properties": {
"facing": "south",
"half": "top",
@@ -2946,7 +2946,7 @@
}
},
{
- "id": 9765,
+ "id": 9905,
"properties": {
"facing": "south",
"half": "top",
@@ -2955,7 +2955,7 @@
}
},
{
- "id": 9766,
+ "id": 9906,
"properties": {
"facing": "south",
"half": "top",
@@ -2964,7 +2964,7 @@
}
},
{
- "id": 9767,
+ "id": 9907,
"properties": {
"facing": "south",
"half": "top",
@@ -2973,7 +2973,7 @@
}
},
{
- "id": 9768,
+ "id": 9908,
"properties": {
"facing": "south",
"half": "top",
@@ -2982,7 +2982,7 @@
}
},
{
- "id": 9769,
+ "id": 9909,
"properties": {
"facing": "south",
"half": "top",
@@ -2991,7 +2991,7 @@
}
},
{
- "id": 9770,
+ "id": 9910,
"properties": {
"facing": "south",
"half": "top",
@@ -3000,7 +3000,7 @@
}
},
{
- "id": 9771,
+ "id": 9911,
"properties": {
"facing": "south",
"half": "top",
@@ -3009,7 +3009,7 @@
}
},
{
- "id": 9772,
+ "id": 9912,
"properties": {
"facing": "south",
"half": "top",
@@ -3018,7 +3018,7 @@
}
},
{
- "id": 9773,
+ "id": 9913,
"properties": {
"facing": "south",
"half": "top",
@@ -3027,7 +3027,7 @@
}
},
{
- "id": 9774,
+ "id": 9914,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3036,7 +3036,7 @@
}
},
{
- "id": 9775,
+ "id": 9915,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3045,7 +3045,7 @@
}
},
{
- "id": 9776,
+ "id": 9916,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3054,7 +3054,7 @@
}
},
{
- "id": 9777,
+ "id": 9917,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3063,7 +3063,7 @@
}
},
{
- "id": 9778,
+ "id": 9918,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3072,7 +3072,7 @@
}
},
{
- "id": 9779,
+ "id": 9919,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3081,7 +3081,7 @@
}
},
{
- "id": 9780,
+ "id": 9920,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3090,7 +3090,7 @@
}
},
{
- "id": 9781,
+ "id": 9921,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3099,7 +3099,7 @@
}
},
{
- "id": 9782,
+ "id": 9922,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3108,7 +3108,7 @@
}
},
{
- "id": 9783,
+ "id": 9923,
"properties": {
"facing": "south",
"half": "bottom",
@@ -3117,7 +3117,7 @@
}
},
{
- "id": 9784,
+ "id": 9924,
"properties": {
"facing": "west",
"half": "top",
@@ -3126,7 +3126,7 @@
}
},
{
- "id": 9785,
+ "id": 9925,
"properties": {
"facing": "west",
"half": "top",
@@ -3135,7 +3135,7 @@
}
},
{
- "id": 9786,
+ "id": 9926,
"properties": {
"facing": "west",
"half": "top",
@@ -3144,7 +3144,7 @@
}
},
{
- "id": 9787,
+ "id": 9927,
"properties": {
"facing": "west",
"half": "top",
@@ -3153,7 +3153,7 @@
}
},
{
- "id": 9788,
+ "id": 9928,
"properties": {
"facing": "west",
"half": "top",
@@ -3162,7 +3162,7 @@
}
},
{
- "id": 9789,
+ "id": 9929,
"properties": {
"facing": "west",
"half": "top",
@@ -3171,7 +3171,7 @@
}
},
{
- "id": 9790,
+ "id": 9930,
"properties": {
"facing": "west",
"half": "top",
@@ -3180,7 +3180,7 @@
}
},
{
- "id": 9791,
+ "id": 9931,
"properties": {
"facing": "west",
"half": "top",
@@ -3189,7 +3189,7 @@
}
},
{
- "id": 9792,
+ "id": 9932,
"properties": {
"facing": "west",
"half": "top",
@@ -3198,7 +3198,7 @@
}
},
{
- "id": 9793,
+ "id": 9933,
"properties": {
"facing": "west",
"half": "top",
@@ -3207,7 +3207,7 @@
}
},
{
- "id": 9794,
+ "id": 9934,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3216,7 +3216,7 @@
}
},
{
- "id": 9795,
+ "id": 9935,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3225,7 +3225,7 @@
}
},
{
- "id": 9796,
+ "id": 9936,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3234,7 +3234,7 @@
}
},
{
- "id": 9797,
+ "id": 9937,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3243,7 +3243,7 @@
}
},
{
- "id": 9798,
+ "id": 9938,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3252,7 +3252,7 @@
}
},
{
- "id": 9799,
+ "id": 9939,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3261,7 +3261,7 @@
}
},
{
- "id": 9800,
+ "id": 9940,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3270,7 +3270,7 @@
}
},
{
- "id": 9801,
+ "id": 9941,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3279,7 +3279,7 @@
}
},
{
- "id": 9802,
+ "id": 9942,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3288,7 +3288,7 @@
}
},
{
- "id": 9803,
+ "id": 9943,
"properties": {
"facing": "west",
"half": "bottom",
@@ -3297,7 +3297,7 @@
}
},
{
- "id": 9804,
+ "id": 9944,
"properties": {
"facing": "east",
"half": "top",
@@ -3306,7 +3306,7 @@
}
},
{
- "id": 9805,
+ "id": 9945,
"properties": {
"facing": "east",
"half": "top",
@@ -3315,7 +3315,7 @@
}
},
{
- "id": 9806,
+ "id": 9946,
"properties": {
"facing": "east",
"half": "top",
@@ -3324,7 +3324,7 @@
}
},
{
- "id": 9807,
+ "id": 9947,
"properties": {
"facing": "east",
"half": "top",
@@ -3333,7 +3333,7 @@
}
},
{
- "id": 9808,
+ "id": 9948,
"properties": {
"facing": "east",
"half": "top",
@@ -3342,7 +3342,7 @@
}
},
{
- "id": 9809,
+ "id": 9949,
"properties": {
"facing": "east",
"half": "top",
@@ -3351,7 +3351,7 @@
}
},
{
- "id": 9810,
+ "id": 9950,
"properties": {
"facing": "east",
"half": "top",
@@ -3360,7 +3360,7 @@
}
},
{
- "id": 9811,
+ "id": 9951,
"properties": {
"facing": "east",
"half": "top",
@@ -3369,7 +3369,7 @@
}
},
{
- "id": 9812,
+ "id": 9952,
"properties": {
"facing": "east",
"half": "top",
@@ -3378,7 +3378,7 @@
}
},
{
- "id": 9813,
+ "id": 9953,
"properties": {
"facing": "east",
"half": "top",
@@ -3387,7 +3387,7 @@
}
},
{
- "id": 9814,
+ "id": 9954,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3396,7 +3396,7 @@
}
},
{
- "id": 9815,
+ "id": 9955,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3405,7 +3405,7 @@
}
},
{
- "id": 9816,
+ "id": 9956,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3414,7 +3414,7 @@
}
},
{
- "id": 9817,
+ "id": 9957,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3423,7 +3423,7 @@
}
},
{
- "id": 9818,
+ "id": 9958,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3432,7 +3432,7 @@
}
},
{
- "id": 9819,
+ "id": 9959,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3441,7 +3441,7 @@
}
},
{
- "id": 9820,
+ "id": 9960,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3450,7 +3450,7 @@
}
},
{
- "id": 9821,
+ "id": 9961,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3459,7 +3459,7 @@
}
},
{
- "id": 9822,
+ "id": 9962,
"properties": {
"facing": "east",
"half": "bottom",
@@ -3468,7 +3468,7 @@
}
},
{
- "id": 9823,
+ "id": 9963,
"properties": {
"facing": "east",
"half": "bottom",
@@ -4344,7 +4344,7 @@
},
"states": [
{
- "id": 9180,
+ "id": 9320,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -4352,7 +4352,7 @@
}
},
{
- "id": 9181,
+ "id": 9321,
"properties": {
"powered": "true",
"shape": "north_south",
@@ -4360,7 +4360,7 @@
}
},
{
- "id": 9182,
+ "id": 9322,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -4368,7 +4368,7 @@
}
},
{
- "id": 9183,
+ "id": 9323,
"properties": {
"powered": "true",
"shape": "east_west",
@@ -4376,7 +4376,7 @@
}
},
{
- "id": 9184,
+ "id": 9324,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -4384,7 +4384,7 @@
}
},
{
- "id": 9185,
+ "id": 9325,
"properties": {
"powered": "true",
"shape": "ascending_east",
@@ -4392,7 +4392,7 @@
}
},
{
- "id": 9186,
+ "id": 9326,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -4400,7 +4400,7 @@
}
},
{
- "id": 9187,
+ "id": 9327,
"properties": {
"powered": "true",
"shape": "ascending_west",
@@ -4408,7 +4408,7 @@
}
},
{
- "id": 9188,
+ "id": 9328,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -4416,7 +4416,7 @@
}
},
{
- "id": 9189,
+ "id": 9329,
"properties": {
"powered": "true",
"shape": "ascending_north",
@@ -4424,7 +4424,7 @@
}
},
{
- "id": 9190,
+ "id": 9330,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -4432,7 +4432,7 @@
}
},
{
- "id": 9191,
+ "id": 9331,
"properties": {
"powered": "true",
"shape": "ascending_south",
@@ -4440,7 +4440,7 @@
}
},
{
- "id": 9192,
+ "id": 9332,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -4449,7 +4449,7 @@
},
{
"default": true,
- "id": 9193,
+ "id": 9333,
"properties": {
"powered": "false",
"shape": "north_south",
@@ -4457,7 +4457,7 @@
}
},
{
- "id": 9194,
+ "id": 9334,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -4465,7 +4465,7 @@
}
},
{
- "id": 9195,
+ "id": 9335,
"properties": {
"powered": "false",
"shape": "east_west",
@@ -4473,7 +4473,7 @@
}
},
{
- "id": 9196,
+ "id": 9336,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -4481,7 +4481,7 @@
}
},
{
- "id": 9197,
+ "id": 9337,
"properties": {
"powered": "false",
"shape": "ascending_east",
@@ -4489,7 +4489,7 @@
}
},
{
- "id": 9198,
+ "id": 9338,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -4497,7 +4497,7 @@
}
},
{
- "id": 9199,
+ "id": 9339,
"properties": {
"powered": "false",
"shape": "ascending_west",
@@ -4505,7 +4505,7 @@
}
},
{
- "id": 9200,
+ "id": 9340,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -4513,7 +4513,7 @@
}
},
{
- "id": 9201,
+ "id": 9341,
"properties": {
"powered": "false",
"shape": "ascending_north",
@@ -4521,7 +4521,7 @@
}
},
{
- "id": 9202,
+ "id": 9342,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -4529,7 +4529,7 @@
}
},
{
- "id": 9203,
+ "id": 9343,
"properties": {
"powered": "false",
"shape": "ascending_south",
@@ -4558,7 +4558,7 @@
"states": [
{
"default": true,
- "id": 20890
+ "id": 21031
}
]
},
@@ -4579,63 +4579,63 @@
},
"states": [
{
- "id": 20892,
+ "id": 21033,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20893,
+ "id": 21034,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20894,
+ "id": 21035,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20895,
+ "id": 21036,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20896,
+ "id": 21037,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20897,
+ "id": 21038,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20898,
+ "id": 21039,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20899,
+ "id": 21040,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20900,
+ "id": 21041,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -4643,21 +4643,21 @@
},
{
"default": true,
- "id": 20901,
+ "id": 21042,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20902,
+ "id": 21043,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20903,
+ "id": 21044,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -4669,7 +4669,7 @@
"states": [
{
"default": true,
- "id": 19307
+ "id": 19448
}
]
},
@@ -4695,21 +4695,21 @@
},
"states": [
{
- "id": 13995,
+ "id": 14136,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13996,
+ "id": 14137,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13997,
+ "id": 14138,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -4717,21 +4717,21 @@
},
{
"default": true,
- "id": 13998,
+ "id": 14139,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13999,
+ "id": 14140,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14000,
+ "id": 14141,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -4765,7 +4765,7 @@
},
"states": [
{
- "id": 13621,
+ "id": 13762,
"properties": {
"facing": "north",
"half": "top",
@@ -4774,7 +4774,7 @@
}
},
{
- "id": 13622,
+ "id": 13763,
"properties": {
"facing": "north",
"half": "top",
@@ -4783,7 +4783,7 @@
}
},
{
- "id": 13623,
+ "id": 13764,
"properties": {
"facing": "north",
"half": "top",
@@ -4792,7 +4792,7 @@
}
},
{
- "id": 13624,
+ "id": 13765,
"properties": {
"facing": "north",
"half": "top",
@@ -4801,7 +4801,7 @@
}
},
{
- "id": 13625,
+ "id": 13766,
"properties": {
"facing": "north",
"half": "top",
@@ -4810,7 +4810,7 @@
}
},
{
- "id": 13626,
+ "id": 13767,
"properties": {
"facing": "north",
"half": "top",
@@ -4819,7 +4819,7 @@
}
},
{
- "id": 13627,
+ "id": 13768,
"properties": {
"facing": "north",
"half": "top",
@@ -4828,7 +4828,7 @@
}
},
{
- "id": 13628,
+ "id": 13769,
"properties": {
"facing": "north",
"half": "top",
@@ -4837,7 +4837,7 @@
}
},
{
- "id": 13629,
+ "id": 13770,
"properties": {
"facing": "north",
"half": "top",
@@ -4846,7 +4846,7 @@
}
},
{
- "id": 13630,
+ "id": 13771,
"properties": {
"facing": "north",
"half": "top",
@@ -4855,7 +4855,7 @@
}
},
{
- "id": 13631,
+ "id": 13772,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4865,7 +4865,7 @@
},
{
"default": true,
- "id": 13632,
+ "id": 13773,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4874,7 +4874,7 @@
}
},
{
- "id": 13633,
+ "id": 13774,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4883,7 +4883,7 @@
}
},
{
- "id": 13634,
+ "id": 13775,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4892,7 +4892,7 @@
}
},
{
- "id": 13635,
+ "id": 13776,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4901,7 +4901,7 @@
}
},
{
- "id": 13636,
+ "id": 13777,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4910,7 +4910,7 @@
}
},
{
- "id": 13637,
+ "id": 13778,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4919,7 +4919,7 @@
}
},
{
- "id": 13638,
+ "id": 13779,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4928,7 +4928,7 @@
}
},
{
- "id": 13639,
+ "id": 13780,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4937,7 +4937,7 @@
}
},
{
- "id": 13640,
+ "id": 13781,
"properties": {
"facing": "north",
"half": "bottom",
@@ -4946,7 +4946,7 @@
}
},
{
- "id": 13641,
+ "id": 13782,
"properties": {
"facing": "south",
"half": "top",
@@ -4955,7 +4955,7 @@
}
},
{
- "id": 13642,
+ "id": 13783,
"properties": {
"facing": "south",
"half": "top",
@@ -4964,7 +4964,7 @@
}
},
{
- "id": 13643,
+ "id": 13784,
"properties": {
"facing": "south",
"half": "top",
@@ -4973,7 +4973,7 @@
}
},
{
- "id": 13644,
+ "id": 13785,
"properties": {
"facing": "south",
"half": "top",
@@ -4982,7 +4982,7 @@
}
},
{
- "id": 13645,
+ "id": 13786,
"properties": {
"facing": "south",
"half": "top",
@@ -4991,7 +4991,7 @@
}
},
{
- "id": 13646,
+ "id": 13787,
"properties": {
"facing": "south",
"half": "top",
@@ -5000,7 +5000,7 @@
}
},
{
- "id": 13647,
+ "id": 13788,
"properties": {
"facing": "south",
"half": "top",
@@ -5009,7 +5009,7 @@
}
},
{
- "id": 13648,
+ "id": 13789,
"properties": {
"facing": "south",
"half": "top",
@@ -5018,7 +5018,7 @@
}
},
{
- "id": 13649,
+ "id": 13790,
"properties": {
"facing": "south",
"half": "top",
@@ -5027,7 +5027,7 @@
}
},
{
- "id": 13650,
+ "id": 13791,
"properties": {
"facing": "south",
"half": "top",
@@ -5036,7 +5036,7 @@
}
},
{
- "id": 13651,
+ "id": 13792,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5045,7 +5045,7 @@
}
},
{
- "id": 13652,
+ "id": 13793,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5054,7 +5054,7 @@
}
},
{
- "id": 13653,
+ "id": 13794,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5063,7 +5063,7 @@
}
},
{
- "id": 13654,
+ "id": 13795,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5072,7 +5072,7 @@
}
},
{
- "id": 13655,
+ "id": 13796,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5081,7 +5081,7 @@
}
},
{
- "id": 13656,
+ "id": 13797,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5090,7 +5090,7 @@
}
},
{
- "id": 13657,
+ "id": 13798,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5099,7 +5099,7 @@
}
},
{
- "id": 13658,
+ "id": 13799,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5108,7 +5108,7 @@
}
},
{
- "id": 13659,
+ "id": 13800,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5117,7 +5117,7 @@
}
},
{
- "id": 13660,
+ "id": 13801,
"properties": {
"facing": "south",
"half": "bottom",
@@ -5126,7 +5126,7 @@
}
},
{
- "id": 13661,
+ "id": 13802,
"properties": {
"facing": "west",
"half": "top",
@@ -5135,7 +5135,7 @@
}
},
{
- "id": 13662,
+ "id": 13803,
"properties": {
"facing": "west",
"half": "top",
@@ -5144,7 +5144,7 @@
}
},
{
- "id": 13663,
+ "id": 13804,
"properties": {
"facing": "west",
"half": "top",
@@ -5153,7 +5153,7 @@
}
},
{
- "id": 13664,
+ "id": 13805,
"properties": {
"facing": "west",
"half": "top",
@@ -5162,7 +5162,7 @@
}
},
{
- "id": 13665,
+ "id": 13806,
"properties": {
"facing": "west",
"half": "top",
@@ -5171,7 +5171,7 @@
}
},
{
- "id": 13666,
+ "id": 13807,
"properties": {
"facing": "west",
"half": "top",
@@ -5180,7 +5180,7 @@
}
},
{
- "id": 13667,
+ "id": 13808,
"properties": {
"facing": "west",
"half": "top",
@@ -5189,7 +5189,7 @@
}
},
{
- "id": 13668,
+ "id": 13809,
"properties": {
"facing": "west",
"half": "top",
@@ -5198,7 +5198,7 @@
}
},
{
- "id": 13669,
+ "id": 13810,
"properties": {
"facing": "west",
"half": "top",
@@ -5207,7 +5207,7 @@
}
},
{
- "id": 13670,
+ "id": 13811,
"properties": {
"facing": "west",
"half": "top",
@@ -5216,7 +5216,7 @@
}
},
{
- "id": 13671,
+ "id": 13812,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5225,7 +5225,7 @@
}
},
{
- "id": 13672,
+ "id": 13813,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5234,7 +5234,7 @@
}
},
{
- "id": 13673,
+ "id": 13814,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5243,7 +5243,7 @@
}
},
{
- "id": 13674,
+ "id": 13815,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5252,7 +5252,7 @@
}
},
{
- "id": 13675,
+ "id": 13816,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5261,7 +5261,7 @@
}
},
{
- "id": 13676,
+ "id": 13817,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5270,7 +5270,7 @@
}
},
{
- "id": 13677,
+ "id": 13818,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5279,7 +5279,7 @@
}
},
{
- "id": 13678,
+ "id": 13819,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5288,7 +5288,7 @@
}
},
{
- "id": 13679,
+ "id": 13820,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5297,7 +5297,7 @@
}
},
{
- "id": 13680,
+ "id": 13821,
"properties": {
"facing": "west",
"half": "bottom",
@@ -5306,7 +5306,7 @@
}
},
{
- "id": 13681,
+ "id": 13822,
"properties": {
"facing": "east",
"half": "top",
@@ -5315,7 +5315,7 @@
}
},
{
- "id": 13682,
+ "id": 13823,
"properties": {
"facing": "east",
"half": "top",
@@ -5324,7 +5324,7 @@
}
},
{
- "id": 13683,
+ "id": 13824,
"properties": {
"facing": "east",
"half": "top",
@@ -5333,7 +5333,7 @@
}
},
{
- "id": 13684,
+ "id": 13825,
"properties": {
"facing": "east",
"half": "top",
@@ -5342,7 +5342,7 @@
}
},
{
- "id": 13685,
+ "id": 13826,
"properties": {
"facing": "east",
"half": "top",
@@ -5351,7 +5351,7 @@
}
},
{
- "id": 13686,
+ "id": 13827,
"properties": {
"facing": "east",
"half": "top",
@@ -5360,7 +5360,7 @@
}
},
{
- "id": 13687,
+ "id": 13828,
"properties": {
"facing": "east",
"half": "top",
@@ -5369,7 +5369,7 @@
}
},
{
- "id": 13688,
+ "id": 13829,
"properties": {
"facing": "east",
"half": "top",
@@ -5378,7 +5378,7 @@
}
},
{
- "id": 13689,
+ "id": 13830,
"properties": {
"facing": "east",
"half": "top",
@@ -5387,7 +5387,7 @@
}
},
{
- "id": 13690,
+ "id": 13831,
"properties": {
"facing": "east",
"half": "top",
@@ -5396,7 +5396,7 @@
}
},
{
- "id": 13691,
+ "id": 13832,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5405,7 +5405,7 @@
}
},
{
- "id": 13692,
+ "id": 13833,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5414,7 +5414,7 @@
}
},
{
- "id": 13693,
+ "id": 13834,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5423,7 +5423,7 @@
}
},
{
- "id": 13694,
+ "id": 13835,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5432,7 +5432,7 @@
}
},
{
- "id": 13695,
+ "id": 13836,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5441,7 +5441,7 @@
}
},
{
- "id": 13696,
+ "id": 13837,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5450,7 +5450,7 @@
}
},
{
- "id": 13697,
+ "id": 13838,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5459,7 +5459,7 @@
}
},
{
- "id": 13698,
+ "id": 13839,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5468,7 +5468,7 @@
}
},
{
- "id": 13699,
+ "id": 13840,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5477,7 +5477,7 @@
}
},
{
- "id": 13700,
+ "id": 13841,
"properties": {
"facing": "east",
"half": "bottom",
@@ -5520,7 +5520,7 @@
},
"states": [
{
- "id": 16611,
+ "id": 16752,
"properties": {
"east": "none",
"north": "none",
@@ -5531,7 +5531,7 @@
}
},
{
- "id": 16612,
+ "id": 16753,
"properties": {
"east": "none",
"north": "none",
@@ -5542,7 +5542,7 @@
}
},
{
- "id": 16613,
+ "id": 16754,
"properties": {
"east": "none",
"north": "none",
@@ -5554,2339 +5554,2339 @@
},
{
"default": true,
- "id": 16614,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16615,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16616,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16617,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16618,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16619,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16620,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16621,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16622,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16623,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16624,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16625,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16626,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16627,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16628,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16629,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16630,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16631,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16632,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16633,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16634,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16635,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16636,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16637,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16638,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16639,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16640,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16641,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16642,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16643,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16644,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16645,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16646,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16647,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16648,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16649,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16650,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16651,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16652,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16653,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16654,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16655,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16656,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16657,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16658,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16659,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16660,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16661,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16662,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16663,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16664,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16665,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16666,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16667,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16668,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16669,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16670,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16671,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16672,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16673,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16674,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16675,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16676,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16677,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16678,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16679,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16680,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16681,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16682,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16683,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16684,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16685,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16686,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16687,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16688,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16689,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16690,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16691,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16692,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16693,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16694,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16695,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16696,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16697,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16698,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16699,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16700,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16701,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16702,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16703,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16704,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16705,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16706,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16707,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16708,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16709,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16710,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16711,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16712,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16713,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16714,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16715,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16716,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16717,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16718,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16719,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16720,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16721,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16722,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16723,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16724,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16725,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16726,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16727,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16728,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16729,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16730,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16731,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16732,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16733,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16734,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16735,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16736,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16737,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16738,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16739,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16740,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16741,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16742,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16743,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16744,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16745,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16746,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16747,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16748,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16749,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16750,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16751,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16752,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16753,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16754,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 16755,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16756,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16757,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16758,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16759,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16760,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16761,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16762,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16763,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16764,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16765,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16766,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16767,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16768,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16769,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16770,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16771,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16772,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16773,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16774,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16775,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16776,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16777,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16778,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16779,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16780,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16781,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16782,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16783,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16784,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16785,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16786,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16787,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16788,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16789,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16790,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16791,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16792,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16793,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16794,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16795,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16796,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16797,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16798,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16799,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16800,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16801,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16802,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16803,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16804,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16805,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16806,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16807,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16808,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16809,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16810,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16811,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16812,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16813,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16814,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16815,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16816,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16817,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16818,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16819,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16820,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16821,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16822,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16823,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16824,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16825,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16826,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16827,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16828,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16829,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16830,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16831,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16832,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16833,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16834,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16835,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16836,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16837,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16838,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16839,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16840,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16841,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16842,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16843,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16844,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16845,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16846,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16847,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16848,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16849,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16850,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16851,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16852,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16853,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16854,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16855,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16856,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16857,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16858,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16859,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16860,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16861,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16862,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16863,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16864,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16865,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16866,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16867,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16868,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16869,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16870,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16871,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16872,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16873,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16874,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16875,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16876,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16877,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16878,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16879,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16880,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16881,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16882,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16883,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16884,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16885,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16886,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16887,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16888,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16889,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16890,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16891,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16892,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16893,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16894,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16895,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16896,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16897,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16898,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16899,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16900,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16901,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16902,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16903,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16904,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16905,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16906,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16907,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16908,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16909,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16910,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16911,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16912,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16913,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16914,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16915,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16916,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16917,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16918,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16919,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16920,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16921,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16922,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16923,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16924,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16925,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16926,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16927,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16928,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16929,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16930,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16931,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16932,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16933,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16934,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16935,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16936,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16937,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16938,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16939,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16940,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16941,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16942,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16943,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16944,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16945,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16946,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16947,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16948,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16949,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16950,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16951,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16952,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16953,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16954,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16955,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16956,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16957,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16958,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16959,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16960,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16961,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16962,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16963,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16964,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16965,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16966,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16967,
"properties": {
"east": "low",
"north": "tall",
@@ -7897,7 +7897,7 @@
}
},
{
- "id": 16827,
+ "id": 16968,
"properties": {
"east": "tall",
"north": "none",
@@ -7908,7 +7908,7 @@
}
},
{
- "id": 16828,
+ "id": 16969,
"properties": {
"east": "tall",
"north": "none",
@@ -7919,7 +7919,7 @@
}
},
{
- "id": 16829,
+ "id": 16970,
"properties": {
"east": "tall",
"north": "none",
@@ -7930,7 +7930,7 @@
}
},
{
- "id": 16830,
+ "id": 16971,
"properties": {
"east": "tall",
"north": "none",
@@ -7941,7 +7941,7 @@
}
},
{
- "id": 16831,
+ "id": 16972,
"properties": {
"east": "tall",
"north": "none",
@@ -7952,7 +7952,7 @@
}
},
{
- "id": 16832,
+ "id": 16973,
"properties": {
"east": "tall",
"north": "none",
@@ -7963,7 +7963,7 @@
}
},
{
- "id": 16833,
+ "id": 16974,
"properties": {
"east": "tall",
"north": "none",
@@ -7974,7 +7974,7 @@
}
},
{
- "id": 16834,
+ "id": 16975,
"properties": {
"east": "tall",
"north": "none",
@@ -7985,7 +7985,7 @@
}
},
{
- "id": 16835,
+ "id": 16976,
"properties": {
"east": "tall",
"north": "none",
@@ -7996,7 +7996,7 @@
}
},
{
- "id": 16836,
+ "id": 16977,
"properties": {
"east": "tall",
"north": "none",
@@ -8007,7 +8007,7 @@
}
},
{
- "id": 16837,
+ "id": 16978,
"properties": {
"east": "tall",
"north": "none",
@@ -8018,7 +8018,7 @@
}
},
{
- "id": 16838,
+ "id": 16979,
"properties": {
"east": "tall",
"north": "none",
@@ -8029,7 +8029,7 @@
}
},
{
- "id": 16839,
+ "id": 16980,
"properties": {
"east": "tall",
"north": "none",
@@ -8040,7 +8040,7 @@
}
},
{
- "id": 16840,
+ "id": 16981,
"properties": {
"east": "tall",
"north": "none",
@@ -8051,7 +8051,7 @@
}
},
{
- "id": 16841,
+ "id": 16982,
"properties": {
"east": "tall",
"north": "none",
@@ -8062,7 +8062,7 @@
}
},
{
- "id": 16842,
+ "id": 16983,
"properties": {
"east": "tall",
"north": "none",
@@ -8073,7 +8073,7 @@
}
},
{
- "id": 16843,
+ "id": 16984,
"properties": {
"east": "tall",
"north": "none",
@@ -8084,7 +8084,7 @@
}
},
{
- "id": 16844,
+ "id": 16985,
"properties": {
"east": "tall",
"north": "none",
@@ -8095,7 +8095,7 @@
}
},
{
- "id": 16845,
+ "id": 16986,
"properties": {
"east": "tall",
"north": "none",
@@ -8106,7 +8106,7 @@
}
},
{
- "id": 16846,
+ "id": 16987,
"properties": {
"east": "tall",
"north": "none",
@@ -8117,7 +8117,7 @@
}
},
{
- "id": 16847,
+ "id": 16988,
"properties": {
"east": "tall",
"north": "none",
@@ -8128,7 +8128,7 @@
}
},
{
- "id": 16848,
+ "id": 16989,
"properties": {
"east": "tall",
"north": "none",
@@ -8139,7 +8139,7 @@
}
},
{
- "id": 16849,
+ "id": 16990,
"properties": {
"east": "tall",
"north": "none",
@@ -8150,7 +8150,7 @@
}
},
{
- "id": 16850,
+ "id": 16991,
"properties": {
"east": "tall",
"north": "none",
@@ -8161,7 +8161,7 @@
}
},
{
- "id": 16851,
+ "id": 16992,
"properties": {
"east": "tall",
"north": "none",
@@ -8172,7 +8172,7 @@
}
},
{
- "id": 16852,
+ "id": 16993,
"properties": {
"east": "tall",
"north": "none",
@@ -8183,7 +8183,7 @@
}
},
{
- "id": 16853,
+ "id": 16994,
"properties": {
"east": "tall",
"north": "none",
@@ -8194,7 +8194,7 @@
}
},
{
- "id": 16854,
+ "id": 16995,
"properties": {
"east": "tall",
"north": "none",
@@ -8205,7 +8205,7 @@
}
},
{
- "id": 16855,
+ "id": 16996,
"properties": {
"east": "tall",
"north": "none",
@@ -8216,7 +8216,7 @@
}
},
{
- "id": 16856,
+ "id": 16997,
"properties": {
"east": "tall",
"north": "none",
@@ -8227,7 +8227,7 @@
}
},
{
- "id": 16857,
+ "id": 16998,
"properties": {
"east": "tall",
"north": "none",
@@ -8238,7 +8238,7 @@
}
},
{
- "id": 16858,
+ "id": 16999,
"properties": {
"east": "tall",
"north": "none",
@@ -8249,7 +8249,7 @@
}
},
{
- "id": 16859,
+ "id": 17000,
"properties": {
"east": "tall",
"north": "none",
@@ -8260,7 +8260,7 @@
}
},
{
- "id": 16860,
+ "id": 17001,
"properties": {
"east": "tall",
"north": "none",
@@ -8271,7 +8271,7 @@
}
},
{
- "id": 16861,
+ "id": 17002,
"properties": {
"east": "tall",
"north": "none",
@@ -8282,7 +8282,7 @@
}
},
{
- "id": 16862,
+ "id": 17003,
"properties": {
"east": "tall",
"north": "none",
@@ -8293,7 +8293,7 @@
}
},
{
- "id": 16863,
+ "id": 17004,
"properties": {
"east": "tall",
"north": "low",
@@ -8304,7 +8304,7 @@
}
},
{
- "id": 16864,
+ "id": 17005,
"properties": {
"east": "tall",
"north": "low",
@@ -8315,7 +8315,7 @@
}
},
{
- "id": 16865,
+ "id": 17006,
"properties": {
"east": "tall",
"north": "low",
@@ -8326,7 +8326,7 @@
}
},
{
- "id": 16866,
+ "id": 17007,
"properties": {
"east": "tall",
"north": "low",
@@ -8337,7 +8337,7 @@
}
},
{
- "id": 16867,
+ "id": 17008,
"properties": {
"east": "tall",
"north": "low",
@@ -8348,7 +8348,7 @@
}
},
{
- "id": 16868,
+ "id": 17009,
"properties": {
"east": "tall",
"north": "low",
@@ -8359,7 +8359,7 @@
}
},
{
- "id": 16869,
+ "id": 17010,
"properties": {
"east": "tall",
"north": "low",
@@ -8370,7 +8370,7 @@
}
},
{
- "id": 16870,
+ "id": 17011,
"properties": {
"east": "tall",
"north": "low",
@@ -8381,7 +8381,7 @@
}
},
{
- "id": 16871,
+ "id": 17012,
"properties": {
"east": "tall",
"north": "low",
@@ -8392,7 +8392,7 @@
}
},
{
- "id": 16872,
+ "id": 17013,
"properties": {
"east": "tall",
"north": "low",
@@ -8403,7 +8403,7 @@
}
},
{
- "id": 16873,
+ "id": 17014,
"properties": {
"east": "tall",
"north": "low",
@@ -8414,7 +8414,7 @@
}
},
{
- "id": 16874,
+ "id": 17015,
"properties": {
"east": "tall",
"north": "low",
@@ -8425,7 +8425,7 @@
}
},
{
- "id": 16875,
+ "id": 17016,
"properties": {
"east": "tall",
"north": "low",
@@ -8436,7 +8436,7 @@
}
},
{
- "id": 16876,
+ "id": 17017,
"properties": {
"east": "tall",
"north": "low",
@@ -8447,7 +8447,7 @@
}
},
{
- "id": 16877,
+ "id": 17018,
"properties": {
"east": "tall",
"north": "low",
@@ -8458,7 +8458,7 @@
}
},
{
- "id": 16878,
+ "id": 17019,
"properties": {
"east": "tall",
"north": "low",
@@ -8469,7 +8469,7 @@
}
},
{
- "id": 16879,
+ "id": 17020,
"properties": {
"east": "tall",
"north": "low",
@@ -8480,7 +8480,7 @@
}
},
{
- "id": 16880,
+ "id": 17021,
"properties": {
"east": "tall",
"north": "low",
@@ -8491,7 +8491,7 @@
}
},
{
- "id": 16881,
+ "id": 17022,
"properties": {
"east": "tall",
"north": "low",
@@ -8502,7 +8502,7 @@
}
},
{
- "id": 16882,
+ "id": 17023,
"properties": {
"east": "tall",
"north": "low",
@@ -8513,7 +8513,7 @@
}
},
{
- "id": 16883,
+ "id": 17024,
"properties": {
"east": "tall",
"north": "low",
@@ -8524,7 +8524,7 @@
}
},
{
- "id": 16884,
+ "id": 17025,
"properties": {
"east": "tall",
"north": "low",
@@ -8535,7 +8535,7 @@
}
},
{
- "id": 16885,
+ "id": 17026,
"properties": {
"east": "tall",
"north": "low",
@@ -8546,7 +8546,7 @@
}
},
{
- "id": 16886,
+ "id": 17027,
"properties": {
"east": "tall",
"north": "low",
@@ -8557,7 +8557,7 @@
}
},
{
- "id": 16887,
+ "id": 17028,
"properties": {
"east": "tall",
"north": "low",
@@ -8568,7 +8568,7 @@
}
},
{
- "id": 16888,
+ "id": 17029,
"properties": {
"east": "tall",
"north": "low",
@@ -8579,7 +8579,7 @@
}
},
{
- "id": 16889,
+ "id": 17030,
"properties": {
"east": "tall",
"north": "low",
@@ -8590,7 +8590,7 @@
}
},
{
- "id": 16890,
+ "id": 17031,
"properties": {
"east": "tall",
"north": "low",
@@ -8601,7 +8601,7 @@
}
},
{
- "id": 16891,
+ "id": 17032,
"properties": {
"east": "tall",
"north": "low",
@@ -8612,7 +8612,7 @@
}
},
{
- "id": 16892,
+ "id": 17033,
"properties": {
"east": "tall",
"north": "low",
@@ -8623,7 +8623,7 @@
}
},
{
- "id": 16893,
+ "id": 17034,
"properties": {
"east": "tall",
"north": "low",
@@ -8634,7 +8634,7 @@
}
},
{
- "id": 16894,
+ "id": 17035,
"properties": {
"east": "tall",
"north": "low",
@@ -8645,7 +8645,7 @@
}
},
{
- "id": 16895,
+ "id": 17036,
"properties": {
"east": "tall",
"north": "low",
@@ -8656,7 +8656,7 @@
}
},
{
- "id": 16896,
+ "id": 17037,
"properties": {
"east": "tall",
"north": "low",
@@ -8667,7 +8667,7 @@
}
},
{
- "id": 16897,
+ "id": 17038,
"properties": {
"east": "tall",
"north": "low",
@@ -8678,7 +8678,7 @@
}
},
{
- "id": 16898,
+ "id": 17039,
"properties": {
"east": "tall",
"north": "low",
@@ -8689,7 +8689,7 @@
}
},
{
- "id": 16899,
+ "id": 17040,
"properties": {
"east": "tall",
"north": "tall",
@@ -8700,7 +8700,7 @@
}
},
{
- "id": 16900,
+ "id": 17041,
"properties": {
"east": "tall",
"north": "tall",
@@ -8711,7 +8711,7 @@
}
},
{
- "id": 16901,
+ "id": 17042,
"properties": {
"east": "tall",
"north": "tall",
@@ -8722,7 +8722,7 @@
}
},
{
- "id": 16902,
+ "id": 17043,
"properties": {
"east": "tall",
"north": "tall",
@@ -8733,7 +8733,7 @@
}
},
{
- "id": 16903,
+ "id": 17044,
"properties": {
"east": "tall",
"north": "tall",
@@ -8744,7 +8744,7 @@
}
},
{
- "id": 16904,
+ "id": 17045,
"properties": {
"east": "tall",
"north": "tall",
@@ -8755,7 +8755,7 @@
}
},
{
- "id": 16905,
+ "id": 17046,
"properties": {
"east": "tall",
"north": "tall",
@@ -8766,7 +8766,7 @@
}
},
{
- "id": 16906,
+ "id": 17047,
"properties": {
"east": "tall",
"north": "tall",
@@ -8777,7 +8777,7 @@
}
},
{
- "id": 16907,
+ "id": 17048,
"properties": {
"east": "tall",
"north": "tall",
@@ -8788,7 +8788,7 @@
}
},
{
- "id": 16908,
+ "id": 17049,
"properties": {
"east": "tall",
"north": "tall",
@@ -8799,7 +8799,7 @@
}
},
{
- "id": 16909,
+ "id": 17050,
"properties": {
"east": "tall",
"north": "tall",
@@ -8810,7 +8810,7 @@
}
},
{
- "id": 16910,
+ "id": 17051,
"properties": {
"east": "tall",
"north": "tall",
@@ -8821,7 +8821,7 @@
}
},
{
- "id": 16911,
+ "id": 17052,
"properties": {
"east": "tall",
"north": "tall",
@@ -8832,7 +8832,7 @@
}
},
{
- "id": 16912,
+ "id": 17053,
"properties": {
"east": "tall",
"north": "tall",
@@ -8843,7 +8843,7 @@
}
},
{
- "id": 16913,
+ "id": 17054,
"properties": {
"east": "tall",
"north": "tall",
@@ -8854,7 +8854,7 @@
}
},
{
- "id": 16914,
+ "id": 17055,
"properties": {
"east": "tall",
"north": "tall",
@@ -8865,7 +8865,7 @@
}
},
{
- "id": 16915,
+ "id": 17056,
"properties": {
"east": "tall",
"north": "tall",
@@ -8876,7 +8876,7 @@
}
},
{
- "id": 16916,
+ "id": 17057,
"properties": {
"east": "tall",
"north": "tall",
@@ -8887,7 +8887,7 @@
}
},
{
- "id": 16917,
+ "id": 17058,
"properties": {
"east": "tall",
"north": "tall",
@@ -8898,7 +8898,7 @@
}
},
{
- "id": 16918,
+ "id": 17059,
"properties": {
"east": "tall",
"north": "tall",
@@ -8909,7 +8909,7 @@
}
},
{
- "id": 16919,
+ "id": 17060,
"properties": {
"east": "tall",
"north": "tall",
@@ -8920,7 +8920,7 @@
}
},
{
- "id": 16920,
+ "id": 17061,
"properties": {
"east": "tall",
"north": "tall",
@@ -8931,7 +8931,7 @@
}
},
{
- "id": 16921,
+ "id": 17062,
"properties": {
"east": "tall",
"north": "tall",
@@ -8942,7 +8942,7 @@
}
},
{
- "id": 16922,
+ "id": 17063,
"properties": {
"east": "tall",
"north": "tall",
@@ -8953,7 +8953,7 @@
}
},
{
- "id": 16923,
+ "id": 17064,
"properties": {
"east": "tall",
"north": "tall",
@@ -8964,7 +8964,7 @@
}
},
{
- "id": 16924,
+ "id": 17065,
"properties": {
"east": "tall",
"north": "tall",
@@ -8975,7 +8975,7 @@
}
},
{
- "id": 16925,
+ "id": 17066,
"properties": {
"east": "tall",
"north": "tall",
@@ -8986,7 +8986,7 @@
}
},
{
- "id": 16926,
+ "id": 17067,
"properties": {
"east": "tall",
"north": "tall",
@@ -8997,7 +8997,7 @@
}
},
{
- "id": 16927,
+ "id": 17068,
"properties": {
"east": "tall",
"north": "tall",
@@ -9008,7 +9008,7 @@
}
},
{
- "id": 16928,
+ "id": 17069,
"properties": {
"east": "tall",
"north": "tall",
@@ -9019,7 +9019,7 @@
}
},
{
- "id": 16929,
+ "id": 17070,
"properties": {
"east": "tall",
"north": "tall",
@@ -9030,7 +9030,7 @@
}
},
{
- "id": 16930,
+ "id": 17071,
"properties": {
"east": "tall",
"north": "tall",
@@ -9041,7 +9041,7 @@
}
},
{
- "id": 16931,
+ "id": 17072,
"properties": {
"east": "tall",
"north": "tall",
@@ -9052,7 +9052,7 @@
}
},
{
- "id": 16932,
+ "id": 17073,
"properties": {
"east": "tall",
"north": "tall",
@@ -9063,7 +9063,7 @@
}
},
{
- "id": 16933,
+ "id": 17074,
"properties": {
"east": "tall",
"north": "tall",
@@ -9074,7 +9074,7 @@
}
},
{
- "id": 16934,
+ "id": 17075,
"properties": {
"east": "tall",
"north": "tall",
@@ -9098,25 +9098,25 @@
"states": [
{
"default": true,
- "id": 8967,
+ "id": 9107,
"properties": {
"facing": "north"
}
},
{
- "id": 8968,
+ "id": 9108,
"properties": {
"facing": "south"
}
},
{
- "id": 8969,
+ "id": 9109,
"properties": {
"facing": "west"
}
},
{
- "id": 8970,
+ "id": 9110,
"properties": {
"facing": "east"
}
@@ -9201,7 +9201,7 @@
"states": [
{
"default": true,
- "id": 22369
+ "id": 22510
}
]
},
@@ -9480,7 +9480,7 @@
"states": [
{
"default": true,
- "id": 12804,
+ "id": 12945,
"properties": {
"age": "0",
"leaves": "none",
@@ -9488,7 +9488,7 @@
}
},
{
- "id": 12805,
+ "id": 12946,
"properties": {
"age": "0",
"leaves": "none",
@@ -9496,7 +9496,7 @@
}
},
{
- "id": 12806,
+ "id": 12947,
"properties": {
"age": "0",
"leaves": "small",
@@ -9504,7 +9504,7 @@
}
},
{
- "id": 12807,
+ "id": 12948,
"properties": {
"age": "0",
"leaves": "small",
@@ -9512,7 +9512,7 @@
}
},
{
- "id": 12808,
+ "id": 12949,
"properties": {
"age": "0",
"leaves": "large",
@@ -9520,7 +9520,7 @@
}
},
{
- "id": 12809,
+ "id": 12950,
"properties": {
"age": "0",
"leaves": "large",
@@ -9528,7 +9528,7 @@
}
},
{
- "id": 12810,
+ "id": 12951,
"properties": {
"age": "1",
"leaves": "none",
@@ -9536,7 +9536,7 @@
}
},
{
- "id": 12811,
+ "id": 12952,
"properties": {
"age": "1",
"leaves": "none",
@@ -9544,7 +9544,7 @@
}
},
{
- "id": 12812,
+ "id": 12953,
"properties": {
"age": "1",
"leaves": "small",
@@ -9552,7 +9552,7 @@
}
},
{
- "id": 12813,
+ "id": 12954,
"properties": {
"age": "1",
"leaves": "small",
@@ -9560,7 +9560,7 @@
}
},
{
- "id": 12814,
+ "id": 12955,
"properties": {
"age": "1",
"leaves": "large",
@@ -9568,7 +9568,7 @@
}
},
{
- "id": 12815,
+ "id": 12956,
"properties": {
"age": "1",
"leaves": "large",
@@ -9848,7 +9848,7 @@
},
"states": [
{
- "id": 12129,
+ "id": 12270,
"properties": {
"facing": "north",
"half": "upper",
@@ -9858,7 +9858,7 @@
}
},
{
- "id": 12130,
+ "id": 12271,
"properties": {
"facing": "north",
"half": "upper",
@@ -9868,7 +9868,7 @@
}
},
{
- "id": 12131,
+ "id": 12272,
"properties": {
"facing": "north",
"half": "upper",
@@ -9878,7 +9878,7 @@
}
},
{
- "id": 12132,
+ "id": 12273,
"properties": {
"facing": "north",
"half": "upper",
@@ -9888,7 +9888,7 @@
}
},
{
- "id": 12133,
+ "id": 12274,
"properties": {
"facing": "north",
"half": "upper",
@@ -9898,7 +9898,7 @@
}
},
{
- "id": 12134,
+ "id": 12275,
"properties": {
"facing": "north",
"half": "upper",
@@ -9908,7 +9908,7 @@
}
},
{
- "id": 12135,
+ "id": 12276,
"properties": {
"facing": "north",
"half": "upper",
@@ -9918,7 +9918,7 @@
}
},
{
- "id": 12136,
+ "id": 12277,
"properties": {
"facing": "north",
"half": "upper",
@@ -9928,7 +9928,7 @@
}
},
{
- "id": 12137,
+ "id": 12278,
"properties": {
"facing": "north",
"half": "lower",
@@ -9938,7 +9938,7 @@
}
},
{
- "id": 12138,
+ "id": 12279,
"properties": {
"facing": "north",
"half": "lower",
@@ -9948,7 +9948,7 @@
}
},
{
- "id": 12139,
+ "id": 12280,
"properties": {
"facing": "north",
"half": "lower",
@@ -9959,7 +9959,7 @@
},
{
"default": true,
- "id": 12140,
+ "id": 12281,
"properties": {
"facing": "north",
"half": "lower",
@@ -9969,7 +9969,7 @@
}
},
{
- "id": 12141,
+ "id": 12282,
"properties": {
"facing": "north",
"half": "lower",
@@ -9979,7 +9979,7 @@
}
},
{
- "id": 12142,
+ "id": 12283,
"properties": {
"facing": "north",
"half": "lower",
@@ -9989,7 +9989,7 @@
}
},
{
- "id": 12143,
+ "id": 12284,
"properties": {
"facing": "north",
"half": "lower",
@@ -9999,7 +9999,7 @@
}
},
{
- "id": 12144,
+ "id": 12285,
"properties": {
"facing": "north",
"half": "lower",
@@ -10009,7 +10009,7 @@
}
},
{
- "id": 12145,
+ "id": 12286,
"properties": {
"facing": "south",
"half": "upper",
@@ -10019,7 +10019,7 @@
}
},
{
- "id": 12146,
+ "id": 12287,
"properties": {
"facing": "south",
"half": "upper",
@@ -10029,7 +10029,7 @@
}
},
{
- "id": 12147,
+ "id": 12288,
"properties": {
"facing": "south",
"half": "upper",
@@ -10039,7 +10039,7 @@
}
},
{
- "id": 12148,
+ "id": 12289,
"properties": {
"facing": "south",
"half": "upper",
@@ -10049,7 +10049,7 @@
}
},
{
- "id": 12149,
+ "id": 12290,
"properties": {
"facing": "south",
"half": "upper",
@@ -10059,7 +10059,7 @@
}
},
{
- "id": 12150,
+ "id": 12291,
"properties": {
"facing": "south",
"half": "upper",
@@ -10069,7 +10069,7 @@
}
},
{
- "id": 12151,
+ "id": 12292,
"properties": {
"facing": "south",
"half": "upper",
@@ -10079,7 +10079,7 @@
}
},
{
- "id": 12152,
+ "id": 12293,
"properties": {
"facing": "south",
"half": "upper",
@@ -10089,7 +10089,7 @@
}
},
{
- "id": 12153,
+ "id": 12294,
"properties": {
"facing": "south",
"half": "lower",
@@ -10099,7 +10099,7 @@
}
},
{
- "id": 12154,
+ "id": 12295,
"properties": {
"facing": "south",
"half": "lower",
@@ -10109,7 +10109,7 @@
}
},
{
- "id": 12155,
+ "id": 12296,
"properties": {
"facing": "south",
"half": "lower",
@@ -10119,7 +10119,7 @@
}
},
{
- "id": 12156,
+ "id": 12297,
"properties": {
"facing": "south",
"half": "lower",
@@ -10129,7 +10129,7 @@
}
},
{
- "id": 12157,
+ "id": 12298,
"properties": {
"facing": "south",
"half": "lower",
@@ -10139,7 +10139,7 @@
}
},
{
- "id": 12158,
+ "id": 12299,
"properties": {
"facing": "south",
"half": "lower",
@@ -10149,7 +10149,7 @@
}
},
{
- "id": 12159,
+ "id": 12300,
"properties": {
"facing": "south",
"half": "lower",
@@ -10159,7 +10159,7 @@
}
},
{
- "id": 12160,
+ "id": 12301,
"properties": {
"facing": "south",
"half": "lower",
@@ -10169,7 +10169,7 @@
}
},
{
- "id": 12161,
+ "id": 12302,
"properties": {
"facing": "west",
"half": "upper",
@@ -10179,7 +10179,7 @@
}
},
{
- "id": 12162,
+ "id": 12303,
"properties": {
"facing": "west",
"half": "upper",
@@ -10189,7 +10189,7 @@
}
},
{
- "id": 12163,
+ "id": 12304,
"properties": {
"facing": "west",
"half": "upper",
@@ -10199,7 +10199,7 @@
}
},
{
- "id": 12164,
+ "id": 12305,
"properties": {
"facing": "west",
"half": "upper",
@@ -10209,7 +10209,7 @@
}
},
{
- "id": 12165,
+ "id": 12306,
"properties": {
"facing": "west",
"half": "upper",
@@ -10219,7 +10219,7 @@
}
},
{
- "id": 12166,
+ "id": 12307,
"properties": {
"facing": "west",
"half": "upper",
@@ -10229,7 +10229,7 @@
}
},
{
- "id": 12167,
+ "id": 12308,
"properties": {
"facing": "west",
"half": "upper",
@@ -10239,7 +10239,7 @@
}
},
{
- "id": 12168,
+ "id": 12309,
"properties": {
"facing": "west",
"half": "upper",
@@ -10249,7 +10249,7 @@
}
},
{
- "id": 12169,
+ "id": 12310,
"properties": {
"facing": "west",
"half": "lower",
@@ -10259,7 +10259,7 @@
}
},
{
- "id": 12170,
+ "id": 12311,
"properties": {
"facing": "west",
"half": "lower",
@@ -10269,7 +10269,7 @@
}
},
{
- "id": 12171,
+ "id": 12312,
"properties": {
"facing": "west",
"half": "lower",
@@ -10279,7 +10279,7 @@
}
},
{
- "id": 12172,
+ "id": 12313,
"properties": {
"facing": "west",
"half": "lower",
@@ -10289,7 +10289,7 @@
}
},
{
- "id": 12173,
+ "id": 12314,
"properties": {
"facing": "west",
"half": "lower",
@@ -10299,7 +10299,7 @@
}
},
{
- "id": 12174,
+ "id": 12315,
"properties": {
"facing": "west",
"half": "lower",
@@ -10309,7 +10309,7 @@
}
},
{
- "id": 12175,
+ "id": 12316,
"properties": {
"facing": "west",
"half": "lower",
@@ -10319,7 +10319,7 @@
}
},
{
- "id": 12176,
+ "id": 12317,
"properties": {
"facing": "west",
"half": "lower",
@@ -10329,7 +10329,7 @@
}
},
{
- "id": 12177,
+ "id": 12318,
"properties": {
"facing": "east",
"half": "upper",
@@ -10339,7 +10339,7 @@
}
},
{
- "id": 12178,
+ "id": 12319,
"properties": {
"facing": "east",
"half": "upper",
@@ -10349,7 +10349,7 @@
}
},
{
- "id": 12179,
+ "id": 12320,
"properties": {
"facing": "east",
"half": "upper",
@@ -10359,7 +10359,7 @@
}
},
{
- "id": 12180,
+ "id": 12321,
"properties": {
"facing": "east",
"half": "upper",
@@ -10369,7 +10369,7 @@
}
},
{
- "id": 12181,
+ "id": 12322,
"properties": {
"facing": "east",
"half": "upper",
@@ -10379,7 +10379,7 @@
}
},
{
- "id": 12182,
+ "id": 12323,
"properties": {
"facing": "east",
"half": "upper",
@@ -10389,7 +10389,7 @@
}
},
{
- "id": 12183,
+ "id": 12324,
"properties": {
"facing": "east",
"half": "upper",
@@ -10399,7 +10399,7 @@
}
},
{
- "id": 12184,
+ "id": 12325,
"properties": {
"facing": "east",
"half": "upper",
@@ -10409,7 +10409,7 @@
}
},
{
- "id": 12185,
+ "id": 12326,
"properties": {
"facing": "east",
"half": "lower",
@@ -10419,7 +10419,7 @@
}
},
{
- "id": 12186,
+ "id": 12327,
"properties": {
"facing": "east",
"half": "lower",
@@ -10429,7 +10429,7 @@
}
},
{
- "id": 12187,
+ "id": 12328,
"properties": {
"facing": "east",
"half": "lower",
@@ -10439,7 +10439,7 @@
}
},
{
- "id": 12188,
+ "id": 12329,
"properties": {
"facing": "east",
"half": "lower",
@@ -10449,7 +10449,7 @@
}
},
{
- "id": 12189,
+ "id": 12330,
"properties": {
"facing": "east",
"half": "lower",
@@ -10459,7 +10459,7 @@
}
},
{
- "id": 12190,
+ "id": 12331,
"properties": {
"facing": "east",
"half": "lower",
@@ -10469,7 +10469,7 @@
}
},
{
- "id": 12191,
+ "id": 12332,
"properties": {
"facing": "east",
"half": "lower",
@@ -10479,7 +10479,7 @@
}
},
{
- "id": 12192,
+ "id": 12333,
"properties": {
"facing": "east",
"half": "lower",
@@ -10515,7 +10515,7 @@
},
"states": [
{
- "id": 11649,
+ "id": 11790,
"properties": {
"east": "true",
"north": "true",
@@ -10525,7 +10525,7 @@
}
},
{
- "id": 11650,
+ "id": 11791,
"properties": {
"east": "true",
"north": "true",
@@ -10535,7 +10535,7 @@
}
},
{
- "id": 11651,
+ "id": 11792,
"properties": {
"east": "true",
"north": "true",
@@ -10545,7 +10545,7 @@
}
},
{
- "id": 11652,
+ "id": 11793,
"properties": {
"east": "true",
"north": "true",
@@ -10555,7 +10555,7 @@
}
},
{
- "id": 11653,
+ "id": 11794,
"properties": {
"east": "true",
"north": "true",
@@ -10565,7 +10565,7 @@
}
},
{
- "id": 11654,
+ "id": 11795,
"properties": {
"east": "true",
"north": "true",
@@ -10575,7 +10575,7 @@
}
},
{
- "id": 11655,
+ "id": 11796,
"properties": {
"east": "true",
"north": "true",
@@ -10585,7 +10585,7 @@
}
},
{
- "id": 11656,
+ "id": 11797,
"properties": {
"east": "true",
"north": "true",
@@ -10595,7 +10595,7 @@
}
},
{
- "id": 11657,
+ "id": 11798,
"properties": {
"east": "true",
"north": "false",
@@ -10605,7 +10605,7 @@
}
},
{
- "id": 11658,
+ "id": 11799,
"properties": {
"east": "true",
"north": "false",
@@ -10615,7 +10615,7 @@
}
},
{
- "id": 11659,
+ "id": 11800,
"properties": {
"east": "true",
"north": "false",
@@ -10625,7 +10625,7 @@
}
},
{
- "id": 11660,
+ "id": 11801,
"properties": {
"east": "true",
"north": "false",
@@ -10635,7 +10635,7 @@
}
},
{
- "id": 11661,
+ "id": 11802,
"properties": {
"east": "true",
"north": "false",
@@ -10645,7 +10645,7 @@
}
},
{
- "id": 11662,
+ "id": 11803,
"properties": {
"east": "true",
"north": "false",
@@ -10655,7 +10655,7 @@
}
},
{
- "id": 11663,
+ "id": 11804,
"properties": {
"east": "true",
"north": "false",
@@ -10665,7 +10665,7 @@
}
},
{
- "id": 11664,
+ "id": 11805,
"properties": {
"east": "true",
"north": "false",
@@ -10675,7 +10675,7 @@
}
},
{
- "id": 11665,
+ "id": 11806,
"properties": {
"east": "false",
"north": "true",
@@ -10685,7 +10685,7 @@
}
},
{
- "id": 11666,
+ "id": 11807,
"properties": {
"east": "false",
"north": "true",
@@ -10695,7 +10695,7 @@
}
},
{
- "id": 11667,
+ "id": 11808,
"properties": {
"east": "false",
"north": "true",
@@ -10705,7 +10705,7 @@
}
},
{
- "id": 11668,
+ "id": 11809,
"properties": {
"east": "false",
"north": "true",
@@ -10715,7 +10715,7 @@
}
},
{
- "id": 11669,
+ "id": 11810,
"properties": {
"east": "false",
"north": "true",
@@ -10725,7 +10725,7 @@
}
},
{
- "id": 11670,
+ "id": 11811,
"properties": {
"east": "false",
"north": "true",
@@ -10735,7 +10735,7 @@
}
},
{
- "id": 11671,
+ "id": 11812,
"properties": {
"east": "false",
"north": "true",
@@ -10745,7 +10745,7 @@
}
},
{
- "id": 11672,
+ "id": 11813,
"properties": {
"east": "false",
"north": "true",
@@ -10755,7 +10755,7 @@
}
},
{
- "id": 11673,
+ "id": 11814,
"properties": {
"east": "false",
"north": "false",
@@ -10765,7 +10765,7 @@
}
},
{
- "id": 11674,
+ "id": 11815,
"properties": {
"east": "false",
"north": "false",
@@ -10775,7 +10775,7 @@
}
},
{
- "id": 11675,
+ "id": 11816,
"properties": {
"east": "false",
"north": "false",
@@ -10785,7 +10785,7 @@
}
},
{
- "id": 11676,
+ "id": 11817,
"properties": {
"east": "false",
"north": "false",
@@ -10795,7 +10795,7 @@
}
},
{
- "id": 11677,
+ "id": 11818,
"properties": {
"east": "false",
"north": "false",
@@ -10805,7 +10805,7 @@
}
},
{
- "id": 11678,
+ "id": 11819,
"properties": {
"east": "false",
"north": "false",
@@ -10815,7 +10815,7 @@
}
},
{
- "id": 11679,
+ "id": 11820,
"properties": {
"east": "false",
"north": "false",
@@ -10826,7 +10826,7 @@
},
{
"default": true,
- "id": 11680,
+ "id": 11821,
"properties": {
"east": "false",
"north": "false",
@@ -10860,7 +10860,7 @@
},
"states": [
{
- "id": 11393,
+ "id": 11534,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10869,7 +10869,7 @@
}
},
{
- "id": 11394,
+ "id": 11535,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10878,7 +10878,7 @@
}
},
{
- "id": 11395,
+ "id": 11536,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10887,7 +10887,7 @@
}
},
{
- "id": 11396,
+ "id": 11537,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -10896,7 +10896,7 @@
}
},
{
- "id": 11397,
+ "id": 11538,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10905,7 +10905,7 @@
}
},
{
- "id": 11398,
+ "id": 11539,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10914,7 +10914,7 @@
}
},
{
- "id": 11399,
+ "id": 11540,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10924,7 +10924,7 @@
},
{
"default": true,
- "id": 11400,
+ "id": 11541,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -10933,7 +10933,7 @@
}
},
{
- "id": 11401,
+ "id": 11542,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10942,7 +10942,7 @@
}
},
{
- "id": 11402,
+ "id": 11543,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10951,7 +10951,7 @@
}
},
{
- "id": 11403,
+ "id": 11544,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10960,7 +10960,7 @@
}
},
{
- "id": 11404,
+ "id": 11545,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -10969,7 +10969,7 @@
}
},
{
- "id": 11405,
+ "id": 11546,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -10978,7 +10978,7 @@
}
},
{
- "id": 11406,
+ "id": 11547,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -10987,7 +10987,7 @@
}
},
{
- "id": 11407,
+ "id": 11548,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -10996,7 +10996,7 @@
}
},
{
- "id": 11408,
+ "id": 11549,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -11005,7 +11005,7 @@
}
},
{
- "id": 11409,
+ "id": 11550,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11014,7 +11014,7 @@
}
},
{
- "id": 11410,
+ "id": 11551,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11023,7 +11023,7 @@
}
},
{
- "id": 11411,
+ "id": 11552,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11032,7 +11032,7 @@
}
},
{
- "id": 11412,
+ "id": 11553,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -11041,7 +11041,7 @@
}
},
{
- "id": 11413,
+ "id": 11554,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11050,7 +11050,7 @@
}
},
{
- "id": 11414,
+ "id": 11555,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11059,7 +11059,7 @@
}
},
{
- "id": 11415,
+ "id": 11556,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11068,7 +11068,7 @@
}
},
{
- "id": 11416,
+ "id": 11557,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -11077,7 +11077,7 @@
}
},
{
- "id": 11417,
+ "id": 11558,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11086,7 +11086,7 @@
}
},
{
- "id": 11418,
+ "id": 11559,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11095,7 +11095,7 @@
}
},
{
- "id": 11419,
+ "id": 11560,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11104,7 +11104,7 @@
}
},
{
- "id": 11420,
+ "id": 11561,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -11113,7 +11113,7 @@
}
},
{
- "id": 11421,
+ "id": 11562,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11122,7 +11122,7 @@
}
},
{
- "id": 11422,
+ "id": 11563,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11131,7 +11131,7 @@
}
},
{
- "id": 11423,
+ "id": 11564,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11140,7 +11140,7 @@
}
},
{
- "id": 11424,
+ "id": 11565,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -11717,21 +11717,21 @@
},
"states": [
{
- "id": 11075,
+ "id": 11216,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11076,
+ "id": 11217,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11077,
+ "id": 11218,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -11739,21 +11739,21 @@
},
{
"default": true,
- "id": 11078,
+ "id": 11219,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11079,
+ "id": 11220,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11080,
+ "id": 11221,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -11787,7 +11787,7 @@
},
"states": [
{
- "id": 10144,
+ "id": 10284,
"properties": {
"facing": "north",
"half": "top",
@@ -11796,7 +11796,7 @@
}
},
{
- "id": 10145,
+ "id": 10285,
"properties": {
"facing": "north",
"half": "top",
@@ -11805,7 +11805,7 @@
}
},
{
- "id": 10146,
+ "id": 10286,
"properties": {
"facing": "north",
"half": "top",
@@ -11814,7 +11814,7 @@
}
},
{
- "id": 10147,
+ "id": 10287,
"properties": {
"facing": "north",
"half": "top",
@@ -11823,7 +11823,7 @@
}
},
{
- "id": 10148,
+ "id": 10288,
"properties": {
"facing": "north",
"half": "top",
@@ -11832,7 +11832,7 @@
}
},
{
- "id": 10149,
+ "id": 10289,
"properties": {
"facing": "north",
"half": "top",
@@ -11841,7 +11841,7 @@
}
},
{
- "id": 10150,
+ "id": 10290,
"properties": {
"facing": "north",
"half": "top",
@@ -11850,7 +11850,7 @@
}
},
{
- "id": 10151,
+ "id": 10291,
"properties": {
"facing": "north",
"half": "top",
@@ -11859,7 +11859,7 @@
}
},
{
- "id": 10152,
+ "id": 10292,
"properties": {
"facing": "north",
"half": "top",
@@ -11868,7 +11868,7 @@
}
},
{
- "id": 10153,
+ "id": 10293,
"properties": {
"facing": "north",
"half": "top",
@@ -11877,7 +11877,7 @@
}
},
{
- "id": 10154,
+ "id": 10294,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11887,7 +11887,7 @@
},
{
"default": true,
- "id": 10155,
+ "id": 10295,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11896,7 +11896,7 @@
}
},
{
- "id": 10156,
+ "id": 10296,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11905,7 +11905,7 @@
}
},
{
- "id": 10157,
+ "id": 10297,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11914,7 +11914,7 @@
}
},
{
- "id": 10158,
+ "id": 10298,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11923,7 +11923,7 @@
}
},
{
- "id": 10159,
+ "id": 10299,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11932,7 +11932,7 @@
}
},
{
- "id": 10160,
+ "id": 10300,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11941,7 +11941,7 @@
}
},
{
- "id": 10161,
+ "id": 10301,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11950,7 +11950,7 @@
}
},
{
- "id": 10162,
+ "id": 10302,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11959,7 +11959,7 @@
}
},
{
- "id": 10163,
+ "id": 10303,
"properties": {
"facing": "north",
"half": "bottom",
@@ -11968,7 +11968,7 @@
}
},
{
- "id": 10164,
+ "id": 10304,
"properties": {
"facing": "south",
"half": "top",
@@ -11977,7 +11977,7 @@
}
},
{
- "id": 10165,
+ "id": 10305,
"properties": {
"facing": "south",
"half": "top",
@@ -11986,7 +11986,7 @@
}
},
{
- "id": 10166,
+ "id": 10306,
"properties": {
"facing": "south",
"half": "top",
@@ -11995,7 +11995,7 @@
}
},
{
- "id": 10167,
+ "id": 10307,
"properties": {
"facing": "south",
"half": "top",
@@ -12004,7 +12004,7 @@
}
},
{
- "id": 10168,
+ "id": 10308,
"properties": {
"facing": "south",
"half": "top",
@@ -12013,7 +12013,7 @@
}
},
{
- "id": 10169,
+ "id": 10309,
"properties": {
"facing": "south",
"half": "top",
@@ -12022,7 +12022,7 @@
}
},
{
- "id": 10170,
+ "id": 10310,
"properties": {
"facing": "south",
"half": "top",
@@ -12031,7 +12031,7 @@
}
},
{
- "id": 10171,
+ "id": 10311,
"properties": {
"facing": "south",
"half": "top",
@@ -12040,7 +12040,7 @@
}
},
{
- "id": 10172,
+ "id": 10312,
"properties": {
"facing": "south",
"half": "top",
@@ -12049,7 +12049,7 @@
}
},
{
- "id": 10173,
+ "id": 10313,
"properties": {
"facing": "south",
"half": "top",
@@ -12058,7 +12058,7 @@
}
},
{
- "id": 10174,
+ "id": 10314,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12067,7 +12067,7 @@
}
},
{
- "id": 10175,
+ "id": 10315,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12076,7 +12076,7 @@
}
},
{
- "id": 10176,
+ "id": 10316,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12085,7 +12085,7 @@
}
},
{
- "id": 10177,
+ "id": 10317,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12094,7 +12094,7 @@
}
},
{
- "id": 10178,
+ "id": 10318,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12103,7 +12103,7 @@
}
},
{
- "id": 10179,
+ "id": 10319,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12112,7 +12112,7 @@
}
},
{
- "id": 10180,
+ "id": 10320,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12121,7 +12121,7 @@
}
},
{
- "id": 10181,
+ "id": 10321,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12130,7 +12130,7 @@
}
},
{
- "id": 10182,
+ "id": 10322,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12139,7 +12139,7 @@
}
},
{
- "id": 10183,
+ "id": 10323,
"properties": {
"facing": "south",
"half": "bottom",
@@ -12148,7 +12148,7 @@
}
},
{
- "id": 10184,
+ "id": 10324,
"properties": {
"facing": "west",
"half": "top",
@@ -12157,7 +12157,7 @@
}
},
{
- "id": 10185,
+ "id": 10325,
"properties": {
"facing": "west",
"half": "top",
@@ -12166,7 +12166,7 @@
}
},
{
- "id": 10186,
+ "id": 10326,
"properties": {
"facing": "west",
"half": "top",
@@ -12175,7 +12175,7 @@
}
},
{
- "id": 10187,
+ "id": 10327,
"properties": {
"facing": "west",
"half": "top",
@@ -12184,7 +12184,7 @@
}
},
{
- "id": 10188,
+ "id": 10328,
"properties": {
"facing": "west",
"half": "top",
@@ -12193,7 +12193,7 @@
}
},
{
- "id": 10189,
+ "id": 10329,
"properties": {
"facing": "west",
"half": "top",
@@ -12202,7 +12202,7 @@
}
},
{
- "id": 10190,
+ "id": 10330,
"properties": {
"facing": "west",
"half": "top",
@@ -12211,7 +12211,7 @@
}
},
{
- "id": 10191,
+ "id": 10331,
"properties": {
"facing": "west",
"half": "top",
@@ -12220,7 +12220,7 @@
}
},
{
- "id": 10192,
+ "id": 10332,
"properties": {
"facing": "west",
"half": "top",
@@ -12229,7 +12229,7 @@
}
},
{
- "id": 10193,
+ "id": 10333,
"properties": {
"facing": "west",
"half": "top",
@@ -12238,7 +12238,7 @@
}
},
{
- "id": 10194,
+ "id": 10334,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12247,7 +12247,7 @@
}
},
{
- "id": 10195,
+ "id": 10335,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12256,7 +12256,7 @@
}
},
{
- "id": 10196,
+ "id": 10336,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12265,7 +12265,7 @@
}
},
{
- "id": 10197,
+ "id": 10337,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12274,7 +12274,7 @@
}
},
{
- "id": 10198,
+ "id": 10338,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12283,7 +12283,7 @@
}
},
{
- "id": 10199,
+ "id": 10339,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12292,7 +12292,7 @@
}
},
{
- "id": 10200,
+ "id": 10340,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12301,7 +12301,7 @@
}
},
{
- "id": 10201,
+ "id": 10341,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12310,7 +12310,7 @@
}
},
{
- "id": 10202,
+ "id": 10342,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12319,7 +12319,7 @@
}
},
{
- "id": 10203,
+ "id": 10343,
"properties": {
"facing": "west",
"half": "bottom",
@@ -12328,7 +12328,7 @@
}
},
{
- "id": 10204,
+ "id": 10344,
"properties": {
"facing": "east",
"half": "top",
@@ -12337,7 +12337,7 @@
}
},
{
- "id": 10205,
+ "id": 10345,
"properties": {
"facing": "east",
"half": "top",
@@ -12346,7 +12346,7 @@
}
},
{
- "id": 10206,
+ "id": 10346,
"properties": {
"facing": "east",
"half": "top",
@@ -12355,7 +12355,7 @@
}
},
{
- "id": 10207,
+ "id": 10347,
"properties": {
"facing": "east",
"half": "top",
@@ -12364,7 +12364,7 @@
}
},
{
- "id": 10208,
+ "id": 10348,
"properties": {
"facing": "east",
"half": "top",
@@ -12373,7 +12373,7 @@
}
},
{
- "id": 10209,
+ "id": 10349,
"properties": {
"facing": "east",
"half": "top",
@@ -12382,7 +12382,7 @@
}
},
{
- "id": 10210,
+ "id": 10350,
"properties": {
"facing": "east",
"half": "top",
@@ -12391,7 +12391,7 @@
}
},
{
- "id": 10211,
+ "id": 10351,
"properties": {
"facing": "east",
"half": "top",
@@ -12400,7 +12400,7 @@
}
},
{
- "id": 10212,
+ "id": 10352,
"properties": {
"facing": "east",
"half": "top",
@@ -12409,7 +12409,7 @@
}
},
{
- "id": 10213,
+ "id": 10353,
"properties": {
"facing": "east",
"half": "top",
@@ -12418,7 +12418,7 @@
}
},
{
- "id": 10214,
+ "id": 10354,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12427,7 +12427,7 @@
}
},
{
- "id": 10215,
+ "id": 10355,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12436,7 +12436,7 @@
}
},
{
- "id": 10216,
+ "id": 10356,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12445,7 +12445,7 @@
}
},
{
- "id": 10217,
+ "id": 10357,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12454,7 +12454,7 @@
}
},
{
- "id": 10218,
+ "id": 10358,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12463,7 +12463,7 @@
}
},
{
- "id": 10219,
+ "id": 10359,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12472,7 +12472,7 @@
}
},
{
- "id": 10220,
+ "id": 10360,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12481,7 +12481,7 @@
}
},
{
- "id": 10221,
+ "id": 10361,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12490,7 +12490,7 @@
}
},
{
- "id": 10222,
+ "id": 10362,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12499,7 +12499,7 @@
}
},
{
- "id": 10223,
+ "id": 10363,
"properties": {
"facing": "east",
"half": "bottom",
@@ -12544,7 +12544,7 @@
"states": [
{
"default": true,
- "id": 12803
+ "id": 12944
}
]
},
@@ -12815,21 +12815,21 @@
},
"states": [
{
- "id": 11069,
+ "id": 11210,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11070,
+ "id": 11211,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11071,
+ "id": 11212,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -12837,21 +12837,21 @@
},
{
"default": true,
- "id": 11072,
+ "id": 11213,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11073,
+ "id": 11214,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11074,
+ "id": 11215,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -12885,7 +12885,7 @@
},
"states": [
{
- "id": 10064,
+ "id": 10204,
"properties": {
"facing": "north",
"half": "top",
@@ -12894,7 +12894,7 @@
}
},
{
- "id": 10065,
+ "id": 10205,
"properties": {
"facing": "north",
"half": "top",
@@ -12903,7 +12903,7 @@
}
},
{
- "id": 10066,
+ "id": 10206,
"properties": {
"facing": "north",
"half": "top",
@@ -12912,7 +12912,7 @@
}
},
{
- "id": 10067,
+ "id": 10207,
"properties": {
"facing": "north",
"half": "top",
@@ -12921,7 +12921,7 @@
}
},
{
- "id": 10068,
+ "id": 10208,
"properties": {
"facing": "north",
"half": "top",
@@ -12930,7 +12930,7 @@
}
},
{
- "id": 10069,
+ "id": 10209,
"properties": {
"facing": "north",
"half": "top",
@@ -12939,7 +12939,7 @@
}
},
{
- "id": 10070,
+ "id": 10210,
"properties": {
"facing": "north",
"half": "top",
@@ -12948,7 +12948,7 @@
}
},
{
- "id": 10071,
+ "id": 10211,
"properties": {
"facing": "north",
"half": "top",
@@ -12957,7 +12957,7 @@
}
},
{
- "id": 10072,
+ "id": 10212,
"properties": {
"facing": "north",
"half": "top",
@@ -12966,7 +12966,7 @@
}
},
{
- "id": 10073,
+ "id": 10213,
"properties": {
"facing": "north",
"half": "top",
@@ -12975,7 +12975,7 @@
}
},
{
- "id": 10074,
+ "id": 10214,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12985,7 +12985,7 @@
},
{
"default": true,
- "id": 10075,
+ "id": 10215,
"properties": {
"facing": "north",
"half": "bottom",
@@ -12994,7 +12994,7 @@
}
},
{
- "id": 10076,
+ "id": 10216,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13003,7 +13003,7 @@
}
},
{
- "id": 10077,
+ "id": 10217,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13012,7 +13012,7 @@
}
},
{
- "id": 10078,
+ "id": 10218,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13021,7 +13021,7 @@
}
},
{
- "id": 10079,
+ "id": 10219,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13030,7 +13030,7 @@
}
},
{
- "id": 10080,
+ "id": 10220,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13039,7 +13039,7 @@
}
},
{
- "id": 10081,
+ "id": 10221,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13048,7 +13048,7 @@
}
},
{
- "id": 10082,
+ "id": 10222,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13057,7 +13057,7 @@
}
},
{
- "id": 10083,
+ "id": 10223,
"properties": {
"facing": "north",
"half": "bottom",
@@ -13066,7 +13066,7 @@
}
},
{
- "id": 10084,
+ "id": 10224,
"properties": {
"facing": "south",
"half": "top",
@@ -13075,7 +13075,7 @@
}
},
{
- "id": 10085,
+ "id": 10225,
"properties": {
"facing": "south",
"half": "top",
@@ -13084,7 +13084,7 @@
}
},
{
- "id": 10086,
+ "id": 10226,
"properties": {
"facing": "south",
"half": "top",
@@ -13093,7 +13093,7 @@
}
},
{
- "id": 10087,
+ "id": 10227,
"properties": {
"facing": "south",
"half": "top",
@@ -13102,7 +13102,7 @@
}
},
{
- "id": 10088,
+ "id": 10228,
"properties": {
"facing": "south",
"half": "top",
@@ -13111,7 +13111,7 @@
}
},
{
- "id": 10089,
+ "id": 10229,
"properties": {
"facing": "south",
"half": "top",
@@ -13120,7 +13120,7 @@
}
},
{
- "id": 10090,
+ "id": 10230,
"properties": {
"facing": "south",
"half": "top",
@@ -13129,7 +13129,7 @@
}
},
{
- "id": 10091,
+ "id": 10231,
"properties": {
"facing": "south",
"half": "top",
@@ -13138,7 +13138,7 @@
}
},
{
- "id": 10092,
+ "id": 10232,
"properties": {
"facing": "south",
"half": "top",
@@ -13147,7 +13147,7 @@
}
},
{
- "id": 10093,
+ "id": 10233,
"properties": {
"facing": "south",
"half": "top",
@@ -13156,7 +13156,7 @@
}
},
{
- "id": 10094,
+ "id": 10234,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13165,7 +13165,7 @@
}
},
{
- "id": 10095,
+ "id": 10235,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13174,7 +13174,7 @@
}
},
{
- "id": 10096,
+ "id": 10236,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13183,7 +13183,7 @@
}
},
{
- "id": 10097,
+ "id": 10237,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13192,7 +13192,7 @@
}
},
{
- "id": 10098,
+ "id": 10238,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13201,7 +13201,7 @@
}
},
{
- "id": 10099,
+ "id": 10239,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13210,7 +13210,7 @@
}
},
{
- "id": 10100,
+ "id": 10240,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13219,7 +13219,7 @@
}
},
{
- "id": 10101,
+ "id": 10241,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13228,7 +13228,7 @@
}
},
{
- "id": 10102,
+ "id": 10242,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13237,7 +13237,7 @@
}
},
{
- "id": 10103,
+ "id": 10243,
"properties": {
"facing": "south",
"half": "bottom",
@@ -13246,7 +13246,7 @@
}
},
{
- "id": 10104,
+ "id": 10244,
"properties": {
"facing": "west",
"half": "top",
@@ -13255,7 +13255,7 @@
}
},
{
- "id": 10105,
+ "id": 10245,
"properties": {
"facing": "west",
"half": "top",
@@ -13264,7 +13264,7 @@
}
},
{
- "id": 10106,
+ "id": 10246,
"properties": {
"facing": "west",
"half": "top",
@@ -13273,7 +13273,7 @@
}
},
{
- "id": 10107,
+ "id": 10247,
"properties": {
"facing": "west",
"half": "top",
@@ -13282,7 +13282,7 @@
}
},
{
- "id": 10108,
+ "id": 10248,
"properties": {
"facing": "west",
"half": "top",
@@ -13291,7 +13291,7 @@
}
},
{
- "id": 10109,
+ "id": 10249,
"properties": {
"facing": "west",
"half": "top",
@@ -13300,7 +13300,7 @@
}
},
{
- "id": 10110,
+ "id": 10250,
"properties": {
"facing": "west",
"half": "top",
@@ -13309,7 +13309,7 @@
}
},
{
- "id": 10111,
+ "id": 10251,
"properties": {
"facing": "west",
"half": "top",
@@ -13318,7 +13318,7 @@
}
},
{
- "id": 10112,
+ "id": 10252,
"properties": {
"facing": "west",
"half": "top",
@@ -13327,7 +13327,7 @@
}
},
{
- "id": 10113,
+ "id": 10253,
"properties": {
"facing": "west",
"half": "top",
@@ -13336,7 +13336,7 @@
}
},
{
- "id": 10114,
+ "id": 10254,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13345,7 +13345,7 @@
}
},
{
- "id": 10115,
+ "id": 10255,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13354,7 +13354,7 @@
}
},
{
- "id": 10116,
+ "id": 10256,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13363,7 +13363,7 @@
}
},
{
- "id": 10117,
+ "id": 10257,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13372,7 +13372,7 @@
}
},
{
- "id": 10118,
+ "id": 10258,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13381,7 +13381,7 @@
}
},
{
- "id": 10119,
+ "id": 10259,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13390,7 +13390,7 @@
}
},
{
- "id": 10120,
+ "id": 10260,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13399,7 +13399,7 @@
}
},
{
- "id": 10121,
+ "id": 10261,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13408,7 +13408,7 @@
}
},
{
- "id": 10122,
+ "id": 10262,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13417,7 +13417,7 @@
}
},
{
- "id": 10123,
+ "id": 10263,
"properties": {
"facing": "west",
"half": "bottom",
@@ -13426,7 +13426,7 @@
}
},
{
- "id": 10124,
+ "id": 10264,
"properties": {
"facing": "east",
"half": "top",
@@ -13435,7 +13435,7 @@
}
},
{
- "id": 10125,
+ "id": 10265,
"properties": {
"facing": "east",
"half": "top",
@@ -13444,7 +13444,7 @@
}
},
{
- "id": 10126,
+ "id": 10266,
"properties": {
"facing": "east",
"half": "top",
@@ -13453,7 +13453,7 @@
}
},
{
- "id": 10127,
+ "id": 10267,
"properties": {
"facing": "east",
"half": "top",
@@ -13462,7 +13462,7 @@
}
},
{
- "id": 10128,
+ "id": 10268,
"properties": {
"facing": "east",
"half": "top",
@@ -13471,7 +13471,7 @@
}
},
{
- "id": 10129,
+ "id": 10269,
"properties": {
"facing": "east",
"half": "top",
@@ -13480,7 +13480,7 @@
}
},
{
- "id": 10130,
+ "id": 10270,
"properties": {
"facing": "east",
"half": "top",
@@ -13489,7 +13489,7 @@
}
},
{
- "id": 10131,
+ "id": 10271,
"properties": {
"facing": "east",
"half": "top",
@@ -13498,7 +13498,7 @@
}
},
{
- "id": 10132,
+ "id": 10272,
"properties": {
"facing": "east",
"half": "top",
@@ -13507,7 +13507,7 @@
}
},
{
- "id": 10133,
+ "id": 10273,
"properties": {
"facing": "east",
"half": "top",
@@ -13516,7 +13516,7 @@
}
},
{
- "id": 10134,
+ "id": 10274,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13525,7 +13525,7 @@
}
},
{
- "id": 10135,
+ "id": 10275,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13534,7 +13534,7 @@
}
},
{
- "id": 10136,
+ "id": 10276,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13543,7 +13543,7 @@
}
},
{
- "id": 10137,
+ "id": 10277,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13552,7 +13552,7 @@
}
},
{
- "id": 10138,
+ "id": 10278,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13561,7 +13561,7 @@
}
},
{
- "id": 10139,
+ "id": 10279,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13570,7 +13570,7 @@
}
},
{
- "id": 10140,
+ "id": 10280,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13579,7 +13579,7 @@
}
},
{
- "id": 10141,
+ "id": 10281,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13588,7 +13588,7 @@
}
},
{
- "id": 10142,
+ "id": 10282,
"properties": {
"facing": "east",
"half": "bottom",
@@ -13597,7 +13597,7 @@
}
},
{
- "id": 10143,
+ "id": 10283,
"properties": {
"facing": "east",
"half": "bottom",
@@ -14439,7 +14439,7 @@
},
"states": [
{
- "id": 18267,
+ "id": 18408,
"properties": {
"facing": "north",
"open": "true"
@@ -14447,77 +14447,77 @@
},
{
"default": true,
- "id": 18268,
+ "id": 18409,
"properties": {
"facing": "north",
"open": "false"
}
},
{
- "id": 18269,
+ "id": 18410,
"properties": {
"facing": "east",
"open": "true"
}
},
{
- "id": 18270,
+ "id": 18411,
"properties": {
"facing": "east",
"open": "false"
}
},
{
- "id": 18271,
+ "id": 18412,
"properties": {
"facing": "south",
"open": "true"
}
},
{
- "id": 18272,
+ "id": 18413,
"properties": {
"facing": "south",
"open": "false"
}
},
{
- "id": 18273,
+ "id": 18414,
"properties": {
"facing": "west",
"open": "true"
}
},
{
- "id": 18274,
+ "id": 18415,
"properties": {
"facing": "west",
"open": "false"
}
},
{
- "id": 18275,
+ "id": 18416,
"properties": {
"facing": "up",
"open": "true"
}
},
{
- "id": 18276,
+ "id": 18417,
"properties": {
"facing": "up",
"open": "false"
}
},
{
- "id": 18277,
+ "id": 18418,
"properties": {
"facing": "down",
"open": "true"
}
},
{
- "id": 18278,
+ "id": 18419,
"properties": {
"facing": "down",
"open": "false"
@@ -14526,10 +14526,25 @@
]
},
"minecraft:barrier": {
+ "properties": {
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
"states": [
+ {
+ "id": 10365,
+ "properties": {
+ "waterlogged": "true"
+ }
+ },
{
"default": true,
- "id": 10225
+ "id": 10366,
+ "properties": {
+ "waterlogged": "false"
+ }
}
]
},
@@ -14599,168 +14614,168 @@
"states": [
{
"default": true,
- "id": 19256,
+ "id": 19397,
"properties": {
"facing": "north",
"honey_level": "0"
}
},
{
- "id": 19257,
+ "id": 19398,
"properties": {
"facing": "north",
"honey_level": "1"
}
},
{
- "id": 19258,
+ "id": 19399,
"properties": {
"facing": "north",
"honey_level": "2"
}
},
{
- "id": 19259,
+ "id": 19400,
"properties": {
"facing": "north",
"honey_level": "3"
}
},
{
- "id": 19260,
+ "id": 19401,
"properties": {
"facing": "north",
"honey_level": "4"
}
},
{
- "id": 19261,
+ "id": 19402,
"properties": {
"facing": "north",
"honey_level": "5"
}
},
{
- "id": 19262,
+ "id": 19403,
"properties": {
"facing": "south",
"honey_level": "0"
}
},
{
- "id": 19263,
+ "id": 19404,
"properties": {
"facing": "south",
"honey_level": "1"
}
},
{
- "id": 19264,
+ "id": 19405,
"properties": {
"facing": "south",
"honey_level": "2"
}
},
{
- "id": 19265,
+ "id": 19406,
"properties": {
"facing": "south",
"honey_level": "3"
}
},
{
- "id": 19266,
+ "id": 19407,
"properties": {
"facing": "south",
"honey_level": "4"
}
},
{
- "id": 19267,
+ "id": 19408,
"properties": {
"facing": "south",
"honey_level": "5"
}
},
{
- "id": 19268,
+ "id": 19409,
"properties": {
"facing": "west",
"honey_level": "0"
}
},
{
- "id": 19269,
+ "id": 19410,
"properties": {
"facing": "west",
"honey_level": "1"
}
},
{
- "id": 19270,
+ "id": 19411,
"properties": {
"facing": "west",
"honey_level": "2"
}
},
{
- "id": 19271,
+ "id": 19412,
"properties": {
"facing": "west",
"honey_level": "3"
}
},
{
- "id": 19272,
+ "id": 19413,
"properties": {
"facing": "west",
"honey_level": "4"
}
},
{
- "id": 19273,
+ "id": 19414,
"properties": {
"facing": "west",
"honey_level": "5"
}
},
{
- "id": 19274,
+ "id": 19415,
"properties": {
"facing": "east",
"honey_level": "0"
}
},
{
- "id": 19275,
+ "id": 19416,
"properties": {
"facing": "east",
"honey_level": "1"
}
},
{
- "id": 19276,
+ "id": 19417,
"properties": {
"facing": "east",
"honey_level": "2"
}
},
{
- "id": 19277,
+ "id": 19418,
"properties": {
"facing": "east",
"honey_level": "3"
}
},
{
- "id": 19278,
+ "id": 19419,
"properties": {
"facing": "east",
"honey_level": "4"
}
},
{
- "id": 19279,
+ "id": 19420,
"properties": {
"facing": "east",
"honey_level": "5"
@@ -14788,168 +14803,168 @@
"states": [
{
"default": true,
- "id": 19280,
+ "id": 19421,
"properties": {
"facing": "north",
"honey_level": "0"
}
},
{
- "id": 19281,
+ "id": 19422,
"properties": {
"facing": "north",
"honey_level": "1"
}
},
{
- "id": 19282,
+ "id": 19423,
"properties": {
"facing": "north",
"honey_level": "2"
}
},
{
- "id": 19283,
+ "id": 19424,
"properties": {
"facing": "north",
"honey_level": "3"
}
},
{
- "id": 19284,
+ "id": 19425,
"properties": {
"facing": "north",
"honey_level": "4"
}
},
{
- "id": 19285,
+ "id": 19426,
"properties": {
"facing": "north",
"honey_level": "5"
}
},
{
- "id": 19286,
+ "id": 19427,
"properties": {
"facing": "south",
"honey_level": "0"
}
},
{
- "id": 19287,
+ "id": 19428,
"properties": {
"facing": "south",
"honey_level": "1"
}
},
{
- "id": 19288,
+ "id": 19429,
"properties": {
"facing": "south",
"honey_level": "2"
}
},
{
- "id": 19289,
+ "id": 19430,
"properties": {
"facing": "south",
"honey_level": "3"
}
},
{
- "id": 19290,
+ "id": 19431,
"properties": {
"facing": "south",
"honey_level": "4"
}
},
{
- "id": 19291,
+ "id": 19432,
"properties": {
"facing": "south",
"honey_level": "5"
}
},
{
- "id": 19292,
+ "id": 19433,
"properties": {
"facing": "west",
"honey_level": "0"
}
},
{
- "id": 19293,
+ "id": 19434,
"properties": {
"facing": "west",
"honey_level": "1"
}
},
{
- "id": 19294,
+ "id": 19435,
"properties": {
"facing": "west",
"honey_level": "2"
}
},
{
- "id": 19295,
+ "id": 19436,
"properties": {
"facing": "west",
"honey_level": "3"
}
},
{
- "id": 19296,
+ "id": 19437,
"properties": {
"facing": "west",
"honey_level": "4"
}
},
{
- "id": 19297,
+ "id": 19438,
"properties": {
"facing": "west",
"honey_level": "5"
}
},
{
- "id": 19298,
+ "id": 19439,
"properties": {
"facing": "east",
"honey_level": "0"
}
},
{
- "id": 19299,
+ "id": 19440,
"properties": {
"facing": "east",
"honey_level": "1"
}
},
{
- "id": 19300,
+ "id": 19441,
"properties": {
"facing": "east",
"honey_level": "2"
}
},
{
- "id": 19301,
+ "id": 19442,
"properties": {
"facing": "east",
"honey_level": "3"
}
},
{
- "id": 19302,
+ "id": 19443,
"properties": {
"facing": "east",
"honey_level": "4"
}
},
{
- "id": 19303,
+ "id": 19444,
"properties": {
"facing": "east",
"honey_level": "5"
@@ -14969,25 +14984,25 @@
"states": [
{
"default": true,
- "id": 12368,
+ "id": 12509,
"properties": {
"age": "0"
}
},
{
- "id": 12369,
+ "id": 12510,
"properties": {
"age": "1"
}
},
{
- "id": 12370,
+ "id": 12511,
"properties": {
"age": "2"
}
},
{
- "id": 12371,
+ "id": 12512,
"properties": {
"age": "3"
}
@@ -15015,7 +15030,7 @@
},
"states": [
{
- "id": 18330,
+ "id": 18471,
"properties": {
"attachment": "floor",
"facing": "north",
@@ -15024,7 +15039,7 @@
},
{
"default": true,
- "id": 18331,
+ "id": 18472,
"properties": {
"attachment": "floor",
"facing": "north",
@@ -15032,7 +15047,7 @@
}
},
{
- "id": 18332,
+ "id": 18473,
"properties": {
"attachment": "floor",
"facing": "south",
@@ -15040,7 +15055,7 @@
}
},
{
- "id": 18333,
+ "id": 18474,
"properties": {
"attachment": "floor",
"facing": "south",
@@ -15048,7 +15063,7 @@
}
},
{
- "id": 18334,
+ "id": 18475,
"properties": {
"attachment": "floor",
"facing": "west",
@@ -15056,7 +15071,7 @@
}
},
{
- "id": 18335,
+ "id": 18476,
"properties": {
"attachment": "floor",
"facing": "west",
@@ -15064,7 +15079,7 @@
}
},
{
- "id": 18336,
+ "id": 18477,
"properties": {
"attachment": "floor",
"facing": "east",
@@ -15072,7 +15087,7 @@
}
},
{
- "id": 18337,
+ "id": 18478,
"properties": {
"attachment": "floor",
"facing": "east",
@@ -15080,7 +15095,7 @@
}
},
{
- "id": 18338,
+ "id": 18479,
"properties": {
"attachment": "ceiling",
"facing": "north",
@@ -15088,7 +15103,7 @@
}
},
{
- "id": 18339,
+ "id": 18480,
"properties": {
"attachment": "ceiling",
"facing": "north",
@@ -15096,7 +15111,7 @@
}
},
{
- "id": 18340,
+ "id": 18481,
"properties": {
"attachment": "ceiling",
"facing": "south",
@@ -15104,7 +15119,7 @@
}
},
{
- "id": 18341,
+ "id": 18482,
"properties": {
"attachment": "ceiling",
"facing": "south",
@@ -15112,7 +15127,7 @@
}
},
{
- "id": 18342,
+ "id": 18483,
"properties": {
"attachment": "ceiling",
"facing": "west",
@@ -15120,7 +15135,7 @@
}
},
{
- "id": 18343,
+ "id": 18484,
"properties": {
"attachment": "ceiling",
"facing": "west",
@@ -15128,7 +15143,7 @@
}
},
{
- "id": 18344,
+ "id": 18485,
"properties": {
"attachment": "ceiling",
"facing": "east",
@@ -15136,7 +15151,7 @@
}
},
{
- "id": 18345,
+ "id": 18486,
"properties": {
"attachment": "ceiling",
"facing": "east",
@@ -15144,7 +15159,7 @@
}
},
{
- "id": 18346,
+ "id": 18487,
"properties": {
"attachment": "single_wall",
"facing": "north",
@@ -15152,7 +15167,7 @@
}
},
{
- "id": 18347,
+ "id": 18488,
"properties": {
"attachment": "single_wall",
"facing": "north",
@@ -15160,7 +15175,7 @@
}
},
{
- "id": 18348,
+ "id": 18489,
"properties": {
"attachment": "single_wall",
"facing": "south",
@@ -15168,7 +15183,7 @@
}
},
{
- "id": 18349,
+ "id": 18490,
"properties": {
"attachment": "single_wall",
"facing": "south",
@@ -15176,7 +15191,7 @@
}
},
{
- "id": 18350,
+ "id": 18491,
"properties": {
"attachment": "single_wall",
"facing": "west",
@@ -15184,7 +15199,7 @@
}
},
{
- "id": 18351,
+ "id": 18492,
"properties": {
"attachment": "single_wall",
"facing": "west",
@@ -15192,7 +15207,7 @@
}
},
{
- "id": 18352,
+ "id": 18493,
"properties": {
"attachment": "single_wall",
"facing": "east",
@@ -15200,7 +15215,7 @@
}
},
{
- "id": 18353,
+ "id": 18494,
"properties": {
"attachment": "single_wall",
"facing": "east",
@@ -15208,7 +15223,7 @@
}
},
{
- "id": 18354,
+ "id": 18495,
"properties": {
"attachment": "double_wall",
"facing": "north",
@@ -15216,7 +15231,7 @@
}
},
{
- "id": 18355,
+ "id": 18496,
"properties": {
"attachment": "double_wall",
"facing": "north",
@@ -15224,7 +15239,7 @@
}
},
{
- "id": 18356,
+ "id": 18497,
"properties": {
"attachment": "double_wall",
"facing": "south",
@@ -15232,7 +15247,7 @@
}
},
{
- "id": 18357,
+ "id": 18498,
"properties": {
"attachment": "double_wall",
"facing": "south",
@@ -15240,7 +15255,7 @@
}
},
{
- "id": 18358,
+ "id": 18499,
"properties": {
"attachment": "double_wall",
"facing": "west",
@@ -15248,7 +15263,7 @@
}
},
{
- "id": 18359,
+ "id": 18500,
"properties": {
"attachment": "double_wall",
"facing": "west",
@@ -15256,7 +15271,7 @@
}
},
{
- "id": 18360,
+ "id": 18501,
"properties": {
"attachment": "double_wall",
"facing": "east",
@@ -15264,7 +15279,7 @@
}
},
{
- "id": 18361,
+ "id": 18502,
"properties": {
"attachment": "double_wall",
"facing": "east",
@@ -15294,7 +15309,7 @@
},
"states": [
{
- "id": 22389,
+ "id": 22530,
"properties": {
"facing": "north",
"tilt": "none",
@@ -15303,7 +15318,7 @@
},
{
"default": true,
- "id": 22390,
+ "id": 22531,
"properties": {
"facing": "north",
"tilt": "none",
@@ -15311,7 +15326,7 @@
}
},
{
- "id": 22391,
+ "id": 22532,
"properties": {
"facing": "north",
"tilt": "unstable",
@@ -15319,7 +15334,7 @@
}
},
{
- "id": 22392,
+ "id": 22533,
"properties": {
"facing": "north",
"tilt": "unstable",
@@ -15327,7 +15342,7 @@
}
},
{
- "id": 22393,
+ "id": 22534,
"properties": {
"facing": "north",
"tilt": "partial",
@@ -15335,7 +15350,7 @@
}
},
{
- "id": 22394,
+ "id": 22535,
"properties": {
"facing": "north",
"tilt": "partial",
@@ -15343,7 +15358,7 @@
}
},
{
- "id": 22395,
+ "id": 22536,
"properties": {
"facing": "north",
"tilt": "full",
@@ -15351,7 +15366,7 @@
}
},
{
- "id": 22396,
+ "id": 22537,
"properties": {
"facing": "north",
"tilt": "full",
@@ -15359,7 +15374,7 @@
}
},
{
- "id": 22397,
+ "id": 22538,
"properties": {
"facing": "south",
"tilt": "none",
@@ -15367,7 +15382,7 @@
}
},
{
- "id": 22398,
+ "id": 22539,
"properties": {
"facing": "south",
"tilt": "none",
@@ -15375,7 +15390,7 @@
}
},
{
- "id": 22399,
+ "id": 22540,
"properties": {
"facing": "south",
"tilt": "unstable",
@@ -15383,7 +15398,7 @@
}
},
{
- "id": 22400,
+ "id": 22541,
"properties": {
"facing": "south",
"tilt": "unstable",
@@ -15391,7 +15406,7 @@
}
},
{
- "id": 22401,
+ "id": 22542,
"properties": {
"facing": "south",
"tilt": "partial",
@@ -15399,7 +15414,7 @@
}
},
{
- "id": 22402,
+ "id": 22543,
"properties": {
"facing": "south",
"tilt": "partial",
@@ -15407,7 +15422,7 @@
}
},
{
- "id": 22403,
+ "id": 22544,
"properties": {
"facing": "south",
"tilt": "full",
@@ -15415,7 +15430,7 @@
}
},
{
- "id": 22404,
+ "id": 22545,
"properties": {
"facing": "south",
"tilt": "full",
@@ -15423,7 +15438,7 @@
}
},
{
- "id": 22405,
+ "id": 22546,
"properties": {
"facing": "west",
"tilt": "none",
@@ -15431,7 +15446,7 @@
}
},
{
- "id": 22406,
+ "id": 22547,
"properties": {
"facing": "west",
"tilt": "none",
@@ -15439,7 +15454,7 @@
}
},
{
- "id": 22407,
+ "id": 22548,
"properties": {
"facing": "west",
"tilt": "unstable",
@@ -15447,7 +15462,7 @@
}
},
{
- "id": 22408,
+ "id": 22549,
"properties": {
"facing": "west",
"tilt": "unstable",
@@ -15455,7 +15470,7 @@
}
},
{
- "id": 22409,
+ "id": 22550,
"properties": {
"facing": "west",
"tilt": "partial",
@@ -15463,7 +15478,7 @@
}
},
{
- "id": 22410,
+ "id": 22551,
"properties": {
"facing": "west",
"tilt": "partial",
@@ -15471,7 +15486,7 @@
}
},
{
- "id": 22411,
+ "id": 22552,
"properties": {
"facing": "west",
"tilt": "full",
@@ -15479,7 +15494,7 @@
}
},
{
- "id": 22412,
+ "id": 22553,
"properties": {
"facing": "west",
"tilt": "full",
@@ -15487,7 +15502,7 @@
}
},
{
- "id": 22413,
+ "id": 22554,
"properties": {
"facing": "east",
"tilt": "none",
@@ -15495,7 +15510,7 @@
}
},
{
- "id": 22414,
+ "id": 22555,
"properties": {
"facing": "east",
"tilt": "none",
@@ -15503,7 +15518,7 @@
}
},
{
- "id": 22415,
+ "id": 22556,
"properties": {
"facing": "east",
"tilt": "unstable",
@@ -15511,7 +15526,7 @@
}
},
{
- "id": 22416,
+ "id": 22557,
"properties": {
"facing": "east",
"tilt": "unstable",
@@ -15519,7 +15534,7 @@
}
},
{
- "id": 22417,
+ "id": 22558,
"properties": {
"facing": "east",
"tilt": "partial",
@@ -15527,7 +15542,7 @@
}
},
{
- "id": 22418,
+ "id": 22559,
"properties": {
"facing": "east",
"tilt": "partial",
@@ -15535,7 +15550,7 @@
}
},
{
- "id": 22419,
+ "id": 22560,
"properties": {
"facing": "east",
"tilt": "full",
@@ -15543,7 +15558,7 @@
}
},
{
- "id": 22420,
+ "id": 22561,
"properties": {
"facing": "east",
"tilt": "full",
@@ -15567,7 +15582,7 @@
},
"states": [
{
- "id": 22421,
+ "id": 22562,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -15575,49 +15590,49 @@
},
{
"default": true,
- "id": 22422,
+ "id": 22563,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 22423,
+ "id": 22564,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 22424,
+ "id": 22565,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 22425,
+ "id": 22566,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 22426,
+ "id": 22567,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 22427,
+ "id": 22568,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 22428,
+ "id": 22569,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -15866,7 +15881,7 @@
},
"states": [
{
- "id": 11745,
+ "id": 11886,
"properties": {
"facing": "north",
"half": "upper",
@@ -15876,7 +15891,7 @@
}
},
{
- "id": 11746,
+ "id": 11887,
"properties": {
"facing": "north",
"half": "upper",
@@ -15886,7 +15901,7 @@
}
},
{
- "id": 11747,
+ "id": 11888,
"properties": {
"facing": "north",
"half": "upper",
@@ -15896,7 +15911,7 @@
}
},
{
- "id": 11748,
+ "id": 11889,
"properties": {
"facing": "north",
"half": "upper",
@@ -15906,7 +15921,7 @@
}
},
{
- "id": 11749,
+ "id": 11890,
"properties": {
"facing": "north",
"half": "upper",
@@ -15916,7 +15931,7 @@
}
},
{
- "id": 11750,
+ "id": 11891,
"properties": {
"facing": "north",
"half": "upper",
@@ -15926,7 +15941,7 @@
}
},
{
- "id": 11751,
+ "id": 11892,
"properties": {
"facing": "north",
"half": "upper",
@@ -15936,7 +15951,7 @@
}
},
{
- "id": 11752,
+ "id": 11893,
"properties": {
"facing": "north",
"half": "upper",
@@ -15946,7 +15961,7 @@
}
},
{
- "id": 11753,
+ "id": 11894,
"properties": {
"facing": "north",
"half": "lower",
@@ -15956,7 +15971,7 @@
}
},
{
- "id": 11754,
+ "id": 11895,
"properties": {
"facing": "north",
"half": "lower",
@@ -15966,7 +15981,7 @@
}
},
{
- "id": 11755,
+ "id": 11896,
"properties": {
"facing": "north",
"half": "lower",
@@ -15977,7 +15992,7 @@
},
{
"default": true,
- "id": 11756,
+ "id": 11897,
"properties": {
"facing": "north",
"half": "lower",
@@ -15987,7 +16002,7 @@
}
},
{
- "id": 11757,
+ "id": 11898,
"properties": {
"facing": "north",
"half": "lower",
@@ -15997,7 +16012,7 @@
}
},
{
- "id": 11758,
+ "id": 11899,
"properties": {
"facing": "north",
"half": "lower",
@@ -16007,7 +16022,7 @@
}
},
{
- "id": 11759,
+ "id": 11900,
"properties": {
"facing": "north",
"half": "lower",
@@ -16017,7 +16032,7 @@
}
},
{
- "id": 11760,
+ "id": 11901,
"properties": {
"facing": "north",
"half": "lower",
@@ -16027,7 +16042,7 @@
}
},
{
- "id": 11761,
+ "id": 11902,
"properties": {
"facing": "south",
"half": "upper",
@@ -16037,7 +16052,7 @@
}
},
{
- "id": 11762,
+ "id": 11903,
"properties": {
"facing": "south",
"half": "upper",
@@ -16047,7 +16062,7 @@
}
},
{
- "id": 11763,
+ "id": 11904,
"properties": {
"facing": "south",
"half": "upper",
@@ -16057,7 +16072,7 @@
}
},
{
- "id": 11764,
+ "id": 11905,
"properties": {
"facing": "south",
"half": "upper",
@@ -16067,7 +16082,7 @@
}
},
{
- "id": 11765,
+ "id": 11906,
"properties": {
"facing": "south",
"half": "upper",
@@ -16077,7 +16092,7 @@
}
},
{
- "id": 11766,
+ "id": 11907,
"properties": {
"facing": "south",
"half": "upper",
@@ -16087,7 +16102,7 @@
}
},
{
- "id": 11767,
+ "id": 11908,
"properties": {
"facing": "south",
"half": "upper",
@@ -16097,7 +16112,7 @@
}
},
{
- "id": 11768,
+ "id": 11909,
"properties": {
"facing": "south",
"half": "upper",
@@ -16107,7 +16122,7 @@
}
},
{
- "id": 11769,
+ "id": 11910,
"properties": {
"facing": "south",
"half": "lower",
@@ -16117,7 +16132,7 @@
}
},
{
- "id": 11770,
+ "id": 11911,
"properties": {
"facing": "south",
"half": "lower",
@@ -16127,7 +16142,7 @@
}
},
{
- "id": 11771,
+ "id": 11912,
"properties": {
"facing": "south",
"half": "lower",
@@ -16137,7 +16152,7 @@
}
},
{
- "id": 11772,
+ "id": 11913,
"properties": {
"facing": "south",
"half": "lower",
@@ -16147,7 +16162,7 @@
}
},
{
- "id": 11773,
+ "id": 11914,
"properties": {
"facing": "south",
"half": "lower",
@@ -16157,7 +16172,7 @@
}
},
{
- "id": 11774,
+ "id": 11915,
"properties": {
"facing": "south",
"half": "lower",
@@ -16167,7 +16182,7 @@
}
},
{
- "id": 11775,
+ "id": 11916,
"properties": {
"facing": "south",
"half": "lower",
@@ -16177,7 +16192,7 @@
}
},
{
- "id": 11776,
+ "id": 11917,
"properties": {
"facing": "south",
"half": "lower",
@@ -16187,7 +16202,7 @@
}
},
{
- "id": 11777,
+ "id": 11918,
"properties": {
"facing": "west",
"half": "upper",
@@ -16197,7 +16212,7 @@
}
},
{
- "id": 11778,
+ "id": 11919,
"properties": {
"facing": "west",
"half": "upper",
@@ -16207,7 +16222,7 @@
}
},
{
- "id": 11779,
+ "id": 11920,
"properties": {
"facing": "west",
"half": "upper",
@@ -16217,7 +16232,7 @@
}
},
{
- "id": 11780,
+ "id": 11921,
"properties": {
"facing": "west",
"half": "upper",
@@ -16227,7 +16242,7 @@
}
},
{
- "id": 11781,
+ "id": 11922,
"properties": {
"facing": "west",
"half": "upper",
@@ -16237,7 +16252,7 @@
}
},
{
- "id": 11782,
+ "id": 11923,
"properties": {
"facing": "west",
"half": "upper",
@@ -16247,7 +16262,7 @@
}
},
{
- "id": 11783,
+ "id": 11924,
"properties": {
"facing": "west",
"half": "upper",
@@ -16257,7 +16272,7 @@
}
},
{
- "id": 11784,
+ "id": 11925,
"properties": {
"facing": "west",
"half": "upper",
@@ -16267,7 +16282,7 @@
}
},
{
- "id": 11785,
+ "id": 11926,
"properties": {
"facing": "west",
"half": "lower",
@@ -16277,7 +16292,7 @@
}
},
{
- "id": 11786,
+ "id": 11927,
"properties": {
"facing": "west",
"half": "lower",
@@ -16287,7 +16302,7 @@
}
},
{
- "id": 11787,
+ "id": 11928,
"properties": {
"facing": "west",
"half": "lower",
@@ -16297,7 +16312,7 @@
}
},
{
- "id": 11788,
+ "id": 11929,
"properties": {
"facing": "west",
"half": "lower",
@@ -16307,7 +16322,7 @@
}
},
{
- "id": 11789,
+ "id": 11930,
"properties": {
"facing": "west",
"half": "lower",
@@ -16317,7 +16332,7 @@
}
},
{
- "id": 11790,
+ "id": 11931,
"properties": {
"facing": "west",
"half": "lower",
@@ -16327,7 +16342,7 @@
}
},
{
- "id": 11791,
+ "id": 11932,
"properties": {
"facing": "west",
"half": "lower",
@@ -16337,7 +16352,7 @@
}
},
{
- "id": 11792,
+ "id": 11933,
"properties": {
"facing": "west",
"half": "lower",
@@ -16347,7 +16362,7 @@
}
},
{
- "id": 11793,
+ "id": 11934,
"properties": {
"facing": "east",
"half": "upper",
@@ -16357,7 +16372,7 @@
}
},
{
- "id": 11794,
+ "id": 11935,
"properties": {
"facing": "east",
"half": "upper",
@@ -16367,7 +16382,7 @@
}
},
{
- "id": 11795,
+ "id": 11936,
"properties": {
"facing": "east",
"half": "upper",
@@ -16377,7 +16392,7 @@
}
},
{
- "id": 11796,
+ "id": 11937,
"properties": {
"facing": "east",
"half": "upper",
@@ -16387,7 +16402,7 @@
}
},
{
- "id": 11797,
+ "id": 11938,
"properties": {
"facing": "east",
"half": "upper",
@@ -16397,7 +16412,7 @@
}
},
{
- "id": 11798,
+ "id": 11939,
"properties": {
"facing": "east",
"half": "upper",
@@ -16407,7 +16422,7 @@
}
},
{
- "id": 11799,
+ "id": 11940,
"properties": {
"facing": "east",
"half": "upper",
@@ -16417,7 +16432,7 @@
}
},
{
- "id": 11800,
+ "id": 11941,
"properties": {
"facing": "east",
"half": "upper",
@@ -16427,7 +16442,7 @@
}
},
{
- "id": 11801,
+ "id": 11942,
"properties": {
"facing": "east",
"half": "lower",
@@ -16437,7 +16452,7 @@
}
},
{
- "id": 11802,
+ "id": 11943,
"properties": {
"facing": "east",
"half": "lower",
@@ -16447,7 +16462,7 @@
}
},
{
- "id": 11803,
+ "id": 11944,
"properties": {
"facing": "east",
"half": "lower",
@@ -16457,7 +16472,7 @@
}
},
{
- "id": 11804,
+ "id": 11945,
"properties": {
"facing": "east",
"half": "lower",
@@ -16467,7 +16482,7 @@
}
},
{
- "id": 11805,
+ "id": 11946,
"properties": {
"facing": "east",
"half": "lower",
@@ -16477,7 +16492,7 @@
}
},
{
- "id": 11806,
+ "id": 11947,
"properties": {
"facing": "east",
"half": "lower",
@@ -16487,7 +16502,7 @@
}
},
{
- "id": 11807,
+ "id": 11948,
"properties": {
"facing": "east",
"half": "lower",
@@ -16497,7 +16512,7 @@
}
},
{
- "id": 11808,
+ "id": 11949,
"properties": {
"facing": "east",
"half": "lower",
@@ -16533,7 +16548,7 @@
},
"states": [
{
- "id": 11457,
+ "id": 11598,
"properties": {
"east": "true",
"north": "true",
@@ -16543,7 +16558,7 @@
}
},
{
- "id": 11458,
+ "id": 11599,
"properties": {
"east": "true",
"north": "true",
@@ -16553,7 +16568,7 @@
}
},
{
- "id": 11459,
+ "id": 11600,
"properties": {
"east": "true",
"north": "true",
@@ -16563,7 +16578,7 @@
}
},
{
- "id": 11460,
+ "id": 11601,
"properties": {
"east": "true",
"north": "true",
@@ -16573,7 +16588,7 @@
}
},
{
- "id": 11461,
+ "id": 11602,
"properties": {
"east": "true",
"north": "true",
@@ -16583,7 +16598,7 @@
}
},
{
- "id": 11462,
+ "id": 11603,
"properties": {
"east": "true",
"north": "true",
@@ -16593,7 +16608,7 @@
}
},
{
- "id": 11463,
+ "id": 11604,
"properties": {
"east": "true",
"north": "true",
@@ -16603,7 +16618,7 @@
}
},
{
- "id": 11464,
+ "id": 11605,
"properties": {
"east": "true",
"north": "true",
@@ -16613,7 +16628,7 @@
}
},
{
- "id": 11465,
+ "id": 11606,
"properties": {
"east": "true",
"north": "false",
@@ -16623,7 +16638,7 @@
}
},
{
- "id": 11466,
+ "id": 11607,
"properties": {
"east": "true",
"north": "false",
@@ -16633,7 +16648,7 @@
}
},
{
- "id": 11467,
+ "id": 11608,
"properties": {
"east": "true",
"north": "false",
@@ -16643,7 +16658,7 @@
}
},
{
- "id": 11468,
+ "id": 11609,
"properties": {
"east": "true",
"north": "false",
@@ -16653,7 +16668,7 @@
}
},
{
- "id": 11469,
+ "id": 11610,
"properties": {
"east": "true",
"north": "false",
@@ -16663,7 +16678,7 @@
}
},
{
- "id": 11470,
+ "id": 11611,
"properties": {
"east": "true",
"north": "false",
@@ -16673,7 +16688,7 @@
}
},
{
- "id": 11471,
+ "id": 11612,
"properties": {
"east": "true",
"north": "false",
@@ -16683,7 +16698,7 @@
}
},
{
- "id": 11472,
+ "id": 11613,
"properties": {
"east": "true",
"north": "false",
@@ -16693,7 +16708,7 @@
}
},
{
- "id": 11473,
+ "id": 11614,
"properties": {
"east": "false",
"north": "true",
@@ -16703,7 +16718,7 @@
}
},
{
- "id": 11474,
+ "id": 11615,
"properties": {
"east": "false",
"north": "true",
@@ -16713,7 +16728,7 @@
}
},
{
- "id": 11475,
+ "id": 11616,
"properties": {
"east": "false",
"north": "true",
@@ -16723,7 +16738,7 @@
}
},
{
- "id": 11476,
+ "id": 11617,
"properties": {
"east": "false",
"north": "true",
@@ -16733,7 +16748,7 @@
}
},
{
- "id": 11477,
+ "id": 11618,
"properties": {
"east": "false",
"north": "true",
@@ -16743,7 +16758,7 @@
}
},
{
- "id": 11478,
+ "id": 11619,
"properties": {
"east": "false",
"north": "true",
@@ -16753,7 +16768,7 @@
}
},
{
- "id": 11479,
+ "id": 11620,
"properties": {
"east": "false",
"north": "true",
@@ -16763,7 +16778,7 @@
}
},
{
- "id": 11480,
+ "id": 11621,
"properties": {
"east": "false",
"north": "true",
@@ -16773,7 +16788,7 @@
}
},
{
- "id": 11481,
+ "id": 11622,
"properties": {
"east": "false",
"north": "false",
@@ -16783,7 +16798,7 @@
}
},
{
- "id": 11482,
+ "id": 11623,
"properties": {
"east": "false",
"north": "false",
@@ -16793,7 +16808,7 @@
}
},
{
- "id": 11483,
+ "id": 11624,
"properties": {
"east": "false",
"north": "false",
@@ -16803,7 +16818,7 @@
}
},
{
- "id": 11484,
+ "id": 11625,
"properties": {
"east": "false",
"north": "false",
@@ -16813,7 +16828,7 @@
}
},
{
- "id": 11485,
+ "id": 11626,
"properties": {
"east": "false",
"north": "false",
@@ -16823,7 +16838,7 @@
}
},
{
- "id": 11486,
+ "id": 11627,
"properties": {
"east": "false",
"north": "false",
@@ -16833,7 +16848,7 @@
}
},
{
- "id": 11487,
+ "id": 11628,
"properties": {
"east": "false",
"north": "false",
@@ -16844,7 +16859,7 @@
},
{
"default": true,
- "id": 11488,
+ "id": 11629,
"properties": {
"east": "false",
"north": "false",
@@ -16878,7 +16893,7 @@
},
"states": [
{
- "id": 11201,
+ "id": 11342,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16887,7 +16902,7 @@
}
},
{
- "id": 11202,
+ "id": 11343,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16896,7 +16911,7 @@
}
},
{
- "id": 11203,
+ "id": 11344,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16905,7 +16920,7 @@
}
},
{
- "id": 11204,
+ "id": 11345,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -16914,7 +16929,7 @@
}
},
{
- "id": 11205,
+ "id": 11346,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16923,7 +16938,7 @@
}
},
{
- "id": 11206,
+ "id": 11347,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16932,7 +16947,7 @@
}
},
{
- "id": 11207,
+ "id": 11348,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16942,7 +16957,7 @@
},
{
"default": true,
- "id": 11208,
+ "id": 11349,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -16951,7 +16966,7 @@
}
},
{
- "id": 11209,
+ "id": 11350,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16960,7 +16975,7 @@
}
},
{
- "id": 11210,
+ "id": 11351,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16969,7 +16984,7 @@
}
},
{
- "id": 11211,
+ "id": 11352,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16978,7 +16993,7 @@
}
},
{
- "id": 11212,
+ "id": 11353,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -16987,7 +17002,7 @@
}
},
{
- "id": 11213,
+ "id": 11354,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -16996,7 +17011,7 @@
}
},
{
- "id": 11214,
+ "id": 11355,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17005,7 +17020,7 @@
}
},
{
- "id": 11215,
+ "id": 11356,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17014,7 +17029,7 @@
}
},
{
- "id": 11216,
+ "id": 11357,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -17023,7 +17038,7 @@
}
},
{
- "id": 11217,
+ "id": 11358,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17032,7 +17047,7 @@
}
},
{
- "id": 11218,
+ "id": 11359,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17041,7 +17056,7 @@
}
},
{
- "id": 11219,
+ "id": 11360,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17050,7 +17065,7 @@
}
},
{
- "id": 11220,
+ "id": 11361,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -17059,7 +17074,7 @@
}
},
{
- "id": 11221,
+ "id": 11362,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17068,7 +17083,7 @@
}
},
{
- "id": 11222,
+ "id": 11363,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17077,7 +17092,7 @@
}
},
{
- "id": 11223,
+ "id": 11364,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17086,7 +17101,7 @@
}
},
{
- "id": 11224,
+ "id": 11365,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -17095,7 +17110,7 @@
}
},
{
- "id": 11225,
+ "id": 11366,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17104,7 +17119,7 @@
}
},
{
- "id": 11226,
+ "id": 11367,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17113,7 +17128,7 @@
}
},
{
- "id": 11227,
+ "id": 11368,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17122,7 +17137,7 @@
}
},
{
- "id": 11228,
+ "id": 11369,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -17131,7 +17146,7 @@
}
},
{
- "id": 11229,
+ "id": 11370,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17140,7 +17155,7 @@
}
},
{
- "id": 11230,
+ "id": 11371,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17149,7 +17164,7 @@
}
},
{
- "id": 11231,
+ "id": 11372,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -17158,7 +17173,7 @@
}
},
{
- "id": 11232,
+ "id": 11373,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -18312,21 +18327,21 @@
},
"states": [
{
- "id": 11033,
+ "id": 11174,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11034,
+ "id": 11175,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11035,
+ "id": 11176,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -18334,21 +18349,21 @@
},
{
"default": true,
- "id": 11036,
+ "id": 11177,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11037,
+ "id": 11178,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11038,
+ "id": 11179,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -19973,97 +19988,97 @@
"states": [
{
"default": true,
- "id": 10858,
+ "id": 10999,
"properties": {
"rotation": "0"
}
},
{
- "id": 10859,
+ "id": 11000,
"properties": {
"rotation": "1"
}
},
{
- "id": 10860,
+ "id": 11001,
"properties": {
"rotation": "2"
}
},
{
- "id": 10861,
+ "id": 11002,
"properties": {
"rotation": "3"
}
},
{
- "id": 10862,
+ "id": 11003,
"properties": {
"rotation": "4"
}
},
{
- "id": 10863,
+ "id": 11004,
"properties": {
"rotation": "5"
}
},
{
- "id": 10864,
+ "id": 11005,
"properties": {
"rotation": "6"
}
},
{
- "id": 10865,
+ "id": 11006,
"properties": {
"rotation": "7"
}
},
{
- "id": 10866,
+ "id": 11007,
"properties": {
"rotation": "8"
}
},
{
- "id": 10867,
+ "id": 11008,
"properties": {
"rotation": "9"
}
},
{
- "id": 10868,
+ "id": 11009,
"properties": {
"rotation": "10"
}
},
{
- "id": 10869,
+ "id": 11010,
"properties": {
"rotation": "11"
}
},
{
- "id": 10870,
+ "id": 11011,
"properties": {
"rotation": "12"
}
},
{
- "id": 10871,
+ "id": 11012,
"properties": {
"rotation": "13"
}
},
{
- "id": 10872,
+ "id": 11013,
"properties": {
"rotation": "14"
}
},
{
- "id": 10873,
+ "id": 11014,
"properties": {
"rotation": "15"
}
@@ -20238,7 +20253,7 @@
},
"states": [
{
- "id": 20840,
+ "id": 20981,
"properties": {
"candles": "1",
"lit": "true",
@@ -20246,7 +20261,7 @@
}
},
{
- "id": 20841,
+ "id": 20982,
"properties": {
"candles": "1",
"lit": "true",
@@ -20254,7 +20269,7 @@
}
},
{
- "id": 20842,
+ "id": 20983,
"properties": {
"candles": "1",
"lit": "false",
@@ -20263,7 +20278,7 @@
},
{
"default": true,
- "id": 20843,
+ "id": 20984,
"properties": {
"candles": "1",
"lit": "false",
@@ -20271,7 +20286,7 @@
}
},
{
- "id": 20844,
+ "id": 20985,
"properties": {
"candles": "2",
"lit": "true",
@@ -20279,7 +20294,7 @@
}
},
{
- "id": 20845,
+ "id": 20986,
"properties": {
"candles": "2",
"lit": "true",
@@ -20287,7 +20302,7 @@
}
},
{
- "id": 20846,
+ "id": 20987,
"properties": {
"candles": "2",
"lit": "false",
@@ -20295,7 +20310,7 @@
}
},
{
- "id": 20847,
+ "id": 20988,
"properties": {
"candles": "2",
"lit": "false",
@@ -20303,7 +20318,7 @@
}
},
{
- "id": 20848,
+ "id": 20989,
"properties": {
"candles": "3",
"lit": "true",
@@ -20311,7 +20326,7 @@
}
},
{
- "id": 20849,
+ "id": 20990,
"properties": {
"candles": "3",
"lit": "true",
@@ -20319,7 +20334,7 @@
}
},
{
- "id": 20850,
+ "id": 20991,
"properties": {
"candles": "3",
"lit": "false",
@@ -20327,7 +20342,7 @@
}
},
{
- "id": 20851,
+ "id": 20992,
"properties": {
"candles": "3",
"lit": "false",
@@ -20335,7 +20350,7 @@
}
},
{
- "id": 20852,
+ "id": 20993,
"properties": {
"candles": "4",
"lit": "true",
@@ -20343,7 +20358,7 @@
}
},
{
- "id": 20853,
+ "id": 20994,
"properties": {
"candles": "4",
"lit": "true",
@@ -20351,7 +20366,7 @@
}
},
{
- "id": 20854,
+ "id": 20995,
"properties": {
"candles": "4",
"lit": "false",
@@ -20359,7 +20374,7 @@
}
},
{
- "id": 20855,
+ "id": 20996,
"properties": {
"candles": "4",
"lit": "false",
@@ -20377,14 +20392,14 @@
},
"states": [
{
- "id": 20888,
+ "id": 21029,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20889,
+ "id": 21030,
"properties": {
"lit": "false"
}
@@ -20395,7 +20410,7 @@
"states": [
{
"default": true,
- "id": 10602
+ "id": 10743
}
]
},
@@ -20403,7 +20418,7 @@
"states": [
{
"default": true,
- "id": 12602
+ "id": 12743
}
]
},
@@ -20411,7 +20426,7 @@
"states": [
{
"default": true,
- "id": 12618
+ "id": 12759
}
]
},
@@ -20427,25 +20442,25 @@
"states": [
{
"default": true,
- "id": 12583,
+ "id": 12724,
"properties": {
"facing": "north"
}
},
{
- "id": 12584,
+ "id": 12725,
"properties": {
"facing": "south"
}
},
{
- "id": 12585,
+ "id": 12726,
"properties": {
"facing": "west"
}
},
{
- "id": 12586,
+ "id": 12727,
"properties": {
"facing": "east"
}
@@ -20465,38 +20480,38 @@
},
"states": [
{
- "id": 12517,
+ "id": 12658,
"properties": {
"facing": "north"
}
},
{
- "id": 12518,
+ "id": 12659,
"properties": {
"facing": "east"
}
},
{
- "id": 12519,
+ "id": 12660,
"properties": {
"facing": "south"
}
},
{
- "id": 12520,
+ "id": 12661,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12521,
+ "id": 12662,
"properties": {
"facing": "up"
}
},
{
- "id": 12522,
+ "id": 12663,
"properties": {
"facing": "down"
}
@@ -20536,7 +20551,7 @@
},
"states": [
{
- "id": 9712,
+ "id": 9852,
"properties": {
"east": "true",
"north": "true",
@@ -20546,7 +20561,7 @@
}
},
{
- "id": 9713,
+ "id": 9853,
"properties": {
"east": "true",
"north": "true",
@@ -20556,7 +20571,7 @@
}
},
{
- "id": 9714,
+ "id": 9854,
"properties": {
"east": "true",
"north": "true",
@@ -20566,7 +20581,7 @@
}
},
{
- "id": 9715,
+ "id": 9855,
"properties": {
"east": "true",
"north": "true",
@@ -20576,7 +20591,7 @@
}
},
{
- "id": 9716,
+ "id": 9856,
"properties": {
"east": "true",
"north": "true",
@@ -20586,7 +20601,7 @@
}
},
{
- "id": 9717,
+ "id": 9857,
"properties": {
"east": "true",
"north": "true",
@@ -20596,7 +20611,7 @@
}
},
{
- "id": 9718,
+ "id": 9858,
"properties": {
"east": "true",
"north": "true",
@@ -20606,7 +20621,7 @@
}
},
{
- "id": 9719,
+ "id": 9859,
"properties": {
"east": "true",
"north": "true",
@@ -20616,7 +20631,7 @@
}
},
{
- "id": 9720,
+ "id": 9860,
"properties": {
"east": "true",
"north": "false",
@@ -20626,7 +20641,7 @@
}
},
{
- "id": 9721,
+ "id": 9861,
"properties": {
"east": "true",
"north": "false",
@@ -20636,7 +20651,7 @@
}
},
{
- "id": 9722,
+ "id": 9862,
"properties": {
"east": "true",
"north": "false",
@@ -20646,7 +20661,7 @@
}
},
{
- "id": 9723,
+ "id": 9863,
"properties": {
"east": "true",
"north": "false",
@@ -20656,7 +20671,7 @@
}
},
{
- "id": 9724,
+ "id": 9864,
"properties": {
"east": "true",
"north": "false",
@@ -20666,7 +20681,7 @@
}
},
{
- "id": 9725,
+ "id": 9865,
"properties": {
"east": "true",
"north": "false",
@@ -20676,7 +20691,7 @@
}
},
{
- "id": 9726,
+ "id": 9866,
"properties": {
"east": "true",
"north": "false",
@@ -20686,7 +20701,7 @@
}
},
{
- "id": 9727,
+ "id": 9867,
"properties": {
"east": "true",
"north": "false",
@@ -20696,7 +20711,7 @@
}
},
{
- "id": 9728,
+ "id": 9868,
"properties": {
"east": "false",
"north": "true",
@@ -20706,7 +20721,7 @@
}
},
{
- "id": 9729,
+ "id": 9869,
"properties": {
"east": "false",
"north": "true",
@@ -20716,7 +20731,7 @@
}
},
{
- "id": 9730,
+ "id": 9870,
"properties": {
"east": "false",
"north": "true",
@@ -20726,7 +20741,7 @@
}
},
{
- "id": 9731,
+ "id": 9871,
"properties": {
"east": "false",
"north": "true",
@@ -20736,7 +20751,7 @@
}
},
{
- "id": 9732,
+ "id": 9872,
"properties": {
"east": "false",
"north": "true",
@@ -20746,7 +20761,7 @@
}
},
{
- "id": 9733,
+ "id": 9873,
"properties": {
"east": "false",
"north": "true",
@@ -20756,7 +20771,7 @@
}
},
{
- "id": 9734,
+ "id": 9874,
"properties": {
"east": "false",
"north": "true",
@@ -20766,7 +20781,7 @@
}
},
{
- "id": 9735,
+ "id": 9875,
"properties": {
"east": "false",
"north": "true",
@@ -20776,7 +20791,7 @@
}
},
{
- "id": 9736,
+ "id": 9876,
"properties": {
"east": "false",
"north": "false",
@@ -20786,7 +20801,7 @@
}
},
{
- "id": 9737,
+ "id": 9877,
"properties": {
"east": "false",
"north": "false",
@@ -20796,7 +20811,7 @@
}
},
{
- "id": 9738,
+ "id": 9878,
"properties": {
"east": "false",
"north": "false",
@@ -20806,7 +20821,7 @@
}
},
{
- "id": 9739,
+ "id": 9879,
"properties": {
"east": "false",
"north": "false",
@@ -20816,7 +20831,7 @@
}
},
{
- "id": 9740,
+ "id": 9880,
"properties": {
"east": "false",
"north": "false",
@@ -20826,7 +20841,7 @@
}
},
{
- "id": 9741,
+ "id": 9881,
"properties": {
"east": "false",
"north": "false",
@@ -20836,7 +20851,7 @@
}
},
{
- "id": 9742,
+ "id": 9882,
"properties": {
"east": "false",
"north": "false",
@@ -20847,7 +20862,7 @@
},
{
"default": true,
- "id": 9743,
+ "id": 9883,
"properties": {
"east": "false",
"north": "false",
@@ -20862,7 +20877,7 @@
"states": [
{
"default": true,
- "id": 9231
+ "id": 9371
}
]
},
@@ -20878,25 +20893,25 @@
"states": [
{
"default": true,
- "id": 10934,
+ "id": 11075,
"properties": {
"facing": "north"
}
},
{
- "id": 10935,
+ "id": 11076,
"properties": {
"facing": "south"
}
},
{
- "id": 10936,
+ "id": 11077,
"properties": {
"facing": "west"
}
},
{
- "id": 10937,
+ "id": 11078,
"properties": {
"facing": "east"
}
@@ -20915,7 +20930,7 @@
"states": [
{
"default": true,
- "id": 19319
+ "id": 19460
}
]
},
@@ -20933,21 +20948,21 @@
},
"states": [
{
- "id": 19724,
+ "id": 19865,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 19725,
+ "id": 19866,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 19726,
+ "id": 19867,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -20955,21 +20970,21 @@
},
{
"default": true,
- "id": 19727,
+ "id": 19868,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 19728,
+ "id": 19869,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 19729,
+ "id": 19870,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -21003,7 +21018,7 @@
},
"states": [
{
- "id": 19320,
+ "id": 19461,
"properties": {
"facing": "north",
"half": "top",
@@ -21012,7 +21027,7 @@
}
},
{
- "id": 19321,
+ "id": 19462,
"properties": {
"facing": "north",
"half": "top",
@@ -21021,7 +21036,7 @@
}
},
{
- "id": 19322,
+ "id": 19463,
"properties": {
"facing": "north",
"half": "top",
@@ -21030,7 +21045,7 @@
}
},
{
- "id": 19323,
+ "id": 19464,
"properties": {
"facing": "north",
"half": "top",
@@ -21039,7 +21054,7 @@
}
},
{
- "id": 19324,
+ "id": 19465,
"properties": {
"facing": "north",
"half": "top",
@@ -21048,7 +21063,7 @@
}
},
{
- "id": 19325,
+ "id": 19466,
"properties": {
"facing": "north",
"half": "top",
@@ -21057,7 +21072,7 @@
}
},
{
- "id": 19326,
+ "id": 19467,
"properties": {
"facing": "north",
"half": "top",
@@ -21066,7 +21081,7 @@
}
},
{
- "id": 19327,
+ "id": 19468,
"properties": {
"facing": "north",
"half": "top",
@@ -21075,7 +21090,7 @@
}
},
{
- "id": 19328,
+ "id": 19469,
"properties": {
"facing": "north",
"half": "top",
@@ -21084,7 +21099,7 @@
}
},
{
- "id": 19329,
+ "id": 19470,
"properties": {
"facing": "north",
"half": "top",
@@ -21093,7 +21108,7 @@
}
},
{
- "id": 19330,
+ "id": 19471,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21103,7 +21118,7 @@
},
{
"default": true,
- "id": 19331,
+ "id": 19472,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21112,7 +21127,7 @@
}
},
{
- "id": 19332,
+ "id": 19473,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21121,7 +21136,7 @@
}
},
{
- "id": 19333,
+ "id": 19474,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21130,7 +21145,7 @@
}
},
{
- "id": 19334,
+ "id": 19475,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21139,7 +21154,7 @@
}
},
{
- "id": 19335,
+ "id": 19476,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21148,7 +21163,7 @@
}
},
{
- "id": 19336,
+ "id": 19477,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21157,7 +21172,7 @@
}
},
{
- "id": 19337,
+ "id": 19478,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21166,7 +21181,7 @@
}
},
{
- "id": 19338,
+ "id": 19479,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21175,7 +21190,7 @@
}
},
{
- "id": 19339,
+ "id": 19480,
"properties": {
"facing": "north",
"half": "bottom",
@@ -21184,7 +21199,7 @@
}
},
{
- "id": 19340,
+ "id": 19481,
"properties": {
"facing": "south",
"half": "top",
@@ -21193,7 +21208,7 @@
}
},
{
- "id": 19341,
+ "id": 19482,
"properties": {
"facing": "south",
"half": "top",
@@ -21202,7 +21217,7 @@
}
},
{
- "id": 19342,
+ "id": 19483,
"properties": {
"facing": "south",
"half": "top",
@@ -21211,7 +21226,7 @@
}
},
{
- "id": 19343,
+ "id": 19484,
"properties": {
"facing": "south",
"half": "top",
@@ -21220,7 +21235,7 @@
}
},
{
- "id": 19344,
+ "id": 19485,
"properties": {
"facing": "south",
"half": "top",
@@ -21229,7 +21244,7 @@
}
},
{
- "id": 19345,
+ "id": 19486,
"properties": {
"facing": "south",
"half": "top",
@@ -21238,7 +21253,7 @@
}
},
{
- "id": 19346,
+ "id": 19487,
"properties": {
"facing": "south",
"half": "top",
@@ -21247,7 +21262,7 @@
}
},
{
- "id": 19347,
+ "id": 19488,
"properties": {
"facing": "south",
"half": "top",
@@ -21256,7 +21271,7 @@
}
},
{
- "id": 19348,
+ "id": 19489,
"properties": {
"facing": "south",
"half": "top",
@@ -21265,7 +21280,7 @@
}
},
{
- "id": 19349,
+ "id": 19490,
"properties": {
"facing": "south",
"half": "top",
@@ -21274,7 +21289,7 @@
}
},
{
- "id": 19350,
+ "id": 19491,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21283,7 +21298,7 @@
}
},
{
- "id": 19351,
+ "id": 19492,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21292,7 +21307,7 @@
}
},
{
- "id": 19352,
+ "id": 19493,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21301,7 +21316,7 @@
}
},
{
- "id": 19353,
+ "id": 19494,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21310,7 +21325,7 @@
}
},
{
- "id": 19354,
+ "id": 19495,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21319,7 +21334,7 @@
}
},
{
- "id": 19355,
+ "id": 19496,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21328,7 +21343,7 @@
}
},
{
- "id": 19356,
+ "id": 19497,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21337,7 +21352,7 @@
}
},
{
- "id": 19357,
+ "id": 19498,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21346,7 +21361,7 @@
}
},
{
- "id": 19358,
+ "id": 19499,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21355,7 +21370,7 @@
}
},
{
- "id": 19359,
+ "id": 19500,
"properties": {
"facing": "south",
"half": "bottom",
@@ -21364,7 +21379,7 @@
}
},
{
- "id": 19360,
+ "id": 19501,
"properties": {
"facing": "west",
"half": "top",
@@ -21373,7 +21388,7 @@
}
},
{
- "id": 19361,
+ "id": 19502,
"properties": {
"facing": "west",
"half": "top",
@@ -21382,7 +21397,7 @@
}
},
{
- "id": 19362,
+ "id": 19503,
"properties": {
"facing": "west",
"half": "top",
@@ -21391,7 +21406,7 @@
}
},
{
- "id": 19363,
+ "id": 19504,
"properties": {
"facing": "west",
"half": "top",
@@ -21400,7 +21415,7 @@
}
},
{
- "id": 19364,
+ "id": 19505,
"properties": {
"facing": "west",
"half": "top",
@@ -21409,7 +21424,7 @@
}
},
{
- "id": 19365,
+ "id": 19506,
"properties": {
"facing": "west",
"half": "top",
@@ -21418,7 +21433,7 @@
}
},
{
- "id": 19366,
+ "id": 19507,
"properties": {
"facing": "west",
"half": "top",
@@ -21427,7 +21442,7 @@
}
},
{
- "id": 19367,
+ "id": 19508,
"properties": {
"facing": "west",
"half": "top",
@@ -21436,7 +21451,7 @@
}
},
{
- "id": 19368,
+ "id": 19509,
"properties": {
"facing": "west",
"half": "top",
@@ -21445,7 +21460,7 @@
}
},
{
- "id": 19369,
+ "id": 19510,
"properties": {
"facing": "west",
"half": "top",
@@ -21454,7 +21469,7 @@
}
},
{
- "id": 19370,
+ "id": 19511,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21463,7 +21478,7 @@
}
},
{
- "id": 19371,
+ "id": 19512,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21472,7 +21487,7 @@
}
},
{
- "id": 19372,
+ "id": 19513,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21481,7 +21496,7 @@
}
},
{
- "id": 19373,
+ "id": 19514,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21490,7 +21505,7 @@
}
},
{
- "id": 19374,
+ "id": 19515,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21499,7 +21514,7 @@
}
},
{
- "id": 19375,
+ "id": 19516,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21508,7 +21523,7 @@
}
},
{
- "id": 19376,
+ "id": 19517,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21517,7 +21532,7 @@
}
},
{
- "id": 19377,
+ "id": 19518,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21526,7 +21541,7 @@
}
},
{
- "id": 19378,
+ "id": 19519,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21535,7 +21550,7 @@
}
},
{
- "id": 19379,
+ "id": 19520,
"properties": {
"facing": "west",
"half": "bottom",
@@ -21544,7 +21559,7 @@
}
},
{
- "id": 19380,
+ "id": 19521,
"properties": {
"facing": "east",
"half": "top",
@@ -21553,7 +21568,7 @@
}
},
{
- "id": 19381,
+ "id": 19522,
"properties": {
"facing": "east",
"half": "top",
@@ -21562,7 +21577,7 @@
}
},
{
- "id": 19382,
+ "id": 19523,
"properties": {
"facing": "east",
"half": "top",
@@ -21571,7 +21586,7 @@
}
},
{
- "id": 19383,
+ "id": 19524,
"properties": {
"facing": "east",
"half": "top",
@@ -21580,7 +21595,7 @@
}
},
{
- "id": 19384,
+ "id": 19525,
"properties": {
"facing": "east",
"half": "top",
@@ -21589,7 +21604,7 @@
}
},
{
- "id": 19385,
+ "id": 19526,
"properties": {
"facing": "east",
"half": "top",
@@ -21598,7 +21613,7 @@
}
},
{
- "id": 19386,
+ "id": 19527,
"properties": {
"facing": "east",
"half": "top",
@@ -21607,7 +21622,7 @@
}
},
{
- "id": 19387,
+ "id": 19528,
"properties": {
"facing": "east",
"half": "top",
@@ -21616,7 +21631,7 @@
}
},
{
- "id": 19388,
+ "id": 19529,
"properties": {
"facing": "east",
"half": "top",
@@ -21625,7 +21640,7 @@
}
},
{
- "id": 19389,
+ "id": 19530,
"properties": {
"facing": "east",
"half": "top",
@@ -21634,7 +21649,7 @@
}
},
{
- "id": 19390,
+ "id": 19531,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21643,7 +21658,7 @@
}
},
{
- "id": 19391,
+ "id": 19532,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21652,7 +21667,7 @@
}
},
{
- "id": 19392,
+ "id": 19533,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21661,7 +21676,7 @@
}
},
{
- "id": 19393,
+ "id": 19534,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21670,7 +21685,7 @@
}
},
{
- "id": 19394,
+ "id": 19535,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21679,7 +21694,7 @@
}
},
{
- "id": 19395,
+ "id": 19536,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21688,7 +21703,7 @@
}
},
{
- "id": 19396,
+ "id": 19537,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21697,7 +21712,7 @@
}
},
{
- "id": 19397,
+ "id": 19538,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21706,7 +21721,7 @@
}
},
{
- "id": 19398,
+ "id": 19539,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21715,7 +21730,7 @@
}
},
{
- "id": 19399,
+ "id": 19540,
"properties": {
"facing": "east",
"half": "bottom",
@@ -21758,7 +21773,7 @@
},
"states": [
{
- "id": 19400,
+ "id": 19541,
"properties": {
"east": "none",
"north": "none",
@@ -21769,7 +21784,7 @@
}
},
{
- "id": 19401,
+ "id": 19542,
"properties": {
"east": "none",
"north": "none",
@@ -21780,7 +21795,7 @@
}
},
{
- "id": 19402,
+ "id": 19543,
"properties": {
"east": "none",
"north": "none",
@@ -21792,2339 +21807,2339 @@
},
{
"default": true,
- "id": 19403,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19404,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19405,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19406,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19407,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19408,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19409,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19410,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19411,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19412,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19413,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19414,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19415,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19416,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19417,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19418,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19419,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19420,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19421,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19422,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19423,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19424,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19425,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19426,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19427,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19428,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19429,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19430,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19431,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19432,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19433,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19434,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19435,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19436,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19437,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19438,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19439,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19440,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19441,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19442,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19443,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19444,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19445,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19446,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19447,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19448,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19449,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19450,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19451,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19452,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19453,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19454,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19455,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19456,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19457,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19458,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19459,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19460,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19461,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19462,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19463,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19464,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19465,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19466,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19467,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19468,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19469,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19470,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19471,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19472,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19473,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19474,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19475,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19476,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19477,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19478,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19479,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19480,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19481,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19482,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19483,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19484,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19485,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19486,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19487,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19488,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19489,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19490,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19491,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19492,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19493,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19494,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19495,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19496,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19497,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19498,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19499,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19500,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19501,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19502,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19503,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19504,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19505,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19506,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19507,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19508,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19509,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19510,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19511,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19512,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19513,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19514,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19515,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19516,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19517,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19518,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19519,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19520,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19521,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19522,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19523,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19524,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19525,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19526,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19527,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19528,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19529,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19530,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19531,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19532,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19533,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19534,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19535,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19536,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19537,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19538,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19539,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19540,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19541,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19542,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19543,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 19544,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19545,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19546,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19547,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19548,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19549,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19550,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19551,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19552,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19553,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19554,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19555,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19556,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19557,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19558,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19559,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19560,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19561,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19562,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19563,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19564,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19565,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19566,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19567,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19568,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19569,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19570,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19571,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19572,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19573,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19574,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19575,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19576,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19577,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19578,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19579,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19580,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19581,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19582,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19583,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19584,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19585,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19586,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19587,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19588,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19589,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19590,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19591,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19592,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19593,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19594,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19595,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19596,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19597,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19598,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19599,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19600,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19601,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19602,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19603,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19604,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19605,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19606,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19607,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19608,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19609,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19610,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19611,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19612,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19613,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19614,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19615,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19616,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19617,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19618,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19619,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19620,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19621,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19622,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19623,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19624,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19625,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19626,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19627,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19628,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19629,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19630,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19631,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19632,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19633,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19634,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19635,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19636,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19637,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19638,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19639,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19640,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19641,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19642,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19643,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19644,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19645,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19646,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19647,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19648,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19649,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19650,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19651,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19652,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19653,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19654,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19655,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19656,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19657,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19658,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19659,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19660,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19661,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19662,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19663,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19664,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19665,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19666,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19667,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19668,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19669,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19670,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19671,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19672,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19673,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19674,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19675,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19676,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19677,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19678,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19679,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19680,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19681,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19682,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19683,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19684,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19685,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19686,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19687,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19688,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19689,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19690,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19691,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19692,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19693,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19694,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19695,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19696,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19697,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19698,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19699,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19700,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19701,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19702,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19703,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19704,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19705,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19706,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19707,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19708,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19709,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19710,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19711,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19712,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19713,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19714,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19715,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19716,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19717,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19718,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19719,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19720,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19721,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19722,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19723,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19724,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19725,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19726,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19727,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19728,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19729,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19730,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19731,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19732,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19733,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19734,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19735,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19736,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19737,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19738,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19739,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19740,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19741,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19742,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19743,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19744,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19745,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19746,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19747,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19748,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19749,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19750,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19751,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19752,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19753,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 19754,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 19755,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 19756,
"properties": {
"east": "low",
"north": "tall",
@@ -24135,7 +24150,7 @@
}
},
{
- "id": 19616,
+ "id": 19757,
"properties": {
"east": "tall",
"north": "none",
@@ -24146,7 +24161,7 @@
}
},
{
- "id": 19617,
+ "id": 19758,
"properties": {
"east": "tall",
"north": "none",
@@ -24157,7 +24172,7 @@
}
},
{
- "id": 19618,
+ "id": 19759,
"properties": {
"east": "tall",
"north": "none",
@@ -24168,7 +24183,7 @@
}
},
{
- "id": 19619,
+ "id": 19760,
"properties": {
"east": "tall",
"north": "none",
@@ -24179,7 +24194,7 @@
}
},
{
- "id": 19620,
+ "id": 19761,
"properties": {
"east": "tall",
"north": "none",
@@ -24190,7 +24205,7 @@
}
},
{
- "id": 19621,
+ "id": 19762,
"properties": {
"east": "tall",
"north": "none",
@@ -24201,7 +24216,7 @@
}
},
{
- "id": 19622,
+ "id": 19763,
"properties": {
"east": "tall",
"north": "none",
@@ -24212,7 +24227,7 @@
}
},
{
- "id": 19623,
+ "id": 19764,
"properties": {
"east": "tall",
"north": "none",
@@ -24223,7 +24238,7 @@
}
},
{
- "id": 19624,
+ "id": 19765,
"properties": {
"east": "tall",
"north": "none",
@@ -24234,7 +24249,7 @@
}
},
{
- "id": 19625,
+ "id": 19766,
"properties": {
"east": "tall",
"north": "none",
@@ -24245,7 +24260,7 @@
}
},
{
- "id": 19626,
+ "id": 19767,
"properties": {
"east": "tall",
"north": "none",
@@ -24256,7 +24271,7 @@
}
},
{
- "id": 19627,
+ "id": 19768,
"properties": {
"east": "tall",
"north": "none",
@@ -24267,7 +24282,7 @@
}
},
{
- "id": 19628,
+ "id": 19769,
"properties": {
"east": "tall",
"north": "none",
@@ -24278,7 +24293,7 @@
}
},
{
- "id": 19629,
+ "id": 19770,
"properties": {
"east": "tall",
"north": "none",
@@ -24289,7 +24304,7 @@
}
},
{
- "id": 19630,
+ "id": 19771,
"properties": {
"east": "tall",
"north": "none",
@@ -24300,7 +24315,7 @@
}
},
{
- "id": 19631,
+ "id": 19772,
"properties": {
"east": "tall",
"north": "none",
@@ -24311,7 +24326,7 @@
}
},
{
- "id": 19632,
+ "id": 19773,
"properties": {
"east": "tall",
"north": "none",
@@ -24322,7 +24337,7 @@
}
},
{
- "id": 19633,
+ "id": 19774,
"properties": {
"east": "tall",
"north": "none",
@@ -24333,7 +24348,7 @@
}
},
{
- "id": 19634,
+ "id": 19775,
"properties": {
"east": "tall",
"north": "none",
@@ -24344,7 +24359,7 @@
}
},
{
- "id": 19635,
+ "id": 19776,
"properties": {
"east": "tall",
"north": "none",
@@ -24355,7 +24370,7 @@
}
},
{
- "id": 19636,
+ "id": 19777,
"properties": {
"east": "tall",
"north": "none",
@@ -24366,7 +24381,7 @@
}
},
{
- "id": 19637,
+ "id": 19778,
"properties": {
"east": "tall",
"north": "none",
@@ -24377,7 +24392,7 @@
}
},
{
- "id": 19638,
+ "id": 19779,
"properties": {
"east": "tall",
"north": "none",
@@ -24388,7 +24403,7 @@
}
},
{
- "id": 19639,
+ "id": 19780,
"properties": {
"east": "tall",
"north": "none",
@@ -24399,7 +24414,7 @@
}
},
{
- "id": 19640,
+ "id": 19781,
"properties": {
"east": "tall",
"north": "none",
@@ -24410,7 +24425,7 @@
}
},
{
- "id": 19641,
+ "id": 19782,
"properties": {
"east": "tall",
"north": "none",
@@ -24421,7 +24436,7 @@
}
},
{
- "id": 19642,
+ "id": 19783,
"properties": {
"east": "tall",
"north": "none",
@@ -24432,7 +24447,7 @@
}
},
{
- "id": 19643,
+ "id": 19784,
"properties": {
"east": "tall",
"north": "none",
@@ -24443,7 +24458,7 @@
}
},
{
- "id": 19644,
+ "id": 19785,
"properties": {
"east": "tall",
"north": "none",
@@ -24454,7 +24469,7 @@
}
},
{
- "id": 19645,
+ "id": 19786,
"properties": {
"east": "tall",
"north": "none",
@@ -24465,7 +24480,7 @@
}
},
{
- "id": 19646,
+ "id": 19787,
"properties": {
"east": "tall",
"north": "none",
@@ -24476,7 +24491,7 @@
}
},
{
- "id": 19647,
+ "id": 19788,
"properties": {
"east": "tall",
"north": "none",
@@ -24487,7 +24502,7 @@
}
},
{
- "id": 19648,
+ "id": 19789,
"properties": {
"east": "tall",
"north": "none",
@@ -24498,7 +24513,7 @@
}
},
{
- "id": 19649,
+ "id": 19790,
"properties": {
"east": "tall",
"north": "none",
@@ -24509,7 +24524,7 @@
}
},
{
- "id": 19650,
+ "id": 19791,
"properties": {
"east": "tall",
"north": "none",
@@ -24520,7 +24535,7 @@
}
},
{
- "id": 19651,
+ "id": 19792,
"properties": {
"east": "tall",
"north": "none",
@@ -24531,7 +24546,7 @@
}
},
{
- "id": 19652,
+ "id": 19793,
"properties": {
"east": "tall",
"north": "low",
@@ -24542,7 +24557,7 @@
}
},
{
- "id": 19653,
+ "id": 19794,
"properties": {
"east": "tall",
"north": "low",
@@ -24553,7 +24568,7 @@
}
},
{
- "id": 19654,
+ "id": 19795,
"properties": {
"east": "tall",
"north": "low",
@@ -24564,7 +24579,7 @@
}
},
{
- "id": 19655,
+ "id": 19796,
"properties": {
"east": "tall",
"north": "low",
@@ -24575,7 +24590,7 @@
}
},
{
- "id": 19656,
+ "id": 19797,
"properties": {
"east": "tall",
"north": "low",
@@ -24586,7 +24601,7 @@
}
},
{
- "id": 19657,
+ "id": 19798,
"properties": {
"east": "tall",
"north": "low",
@@ -24597,7 +24612,7 @@
}
},
{
- "id": 19658,
+ "id": 19799,
"properties": {
"east": "tall",
"north": "low",
@@ -24608,7 +24623,7 @@
}
},
{
- "id": 19659,
+ "id": 19800,
"properties": {
"east": "tall",
"north": "low",
@@ -24619,7 +24634,7 @@
}
},
{
- "id": 19660,
+ "id": 19801,
"properties": {
"east": "tall",
"north": "low",
@@ -24630,7 +24645,7 @@
}
},
{
- "id": 19661,
+ "id": 19802,
"properties": {
"east": "tall",
"north": "low",
@@ -24641,7 +24656,7 @@
}
},
{
- "id": 19662,
+ "id": 19803,
"properties": {
"east": "tall",
"north": "low",
@@ -24652,7 +24667,7 @@
}
},
{
- "id": 19663,
+ "id": 19804,
"properties": {
"east": "tall",
"north": "low",
@@ -24663,7 +24678,7 @@
}
},
{
- "id": 19664,
+ "id": 19805,
"properties": {
"east": "tall",
"north": "low",
@@ -24674,7 +24689,7 @@
}
},
{
- "id": 19665,
+ "id": 19806,
"properties": {
"east": "tall",
"north": "low",
@@ -24685,7 +24700,7 @@
}
},
{
- "id": 19666,
+ "id": 19807,
"properties": {
"east": "tall",
"north": "low",
@@ -24696,7 +24711,7 @@
}
},
{
- "id": 19667,
+ "id": 19808,
"properties": {
"east": "tall",
"north": "low",
@@ -24707,7 +24722,7 @@
}
},
{
- "id": 19668,
+ "id": 19809,
"properties": {
"east": "tall",
"north": "low",
@@ -24718,7 +24733,7 @@
}
},
{
- "id": 19669,
+ "id": 19810,
"properties": {
"east": "tall",
"north": "low",
@@ -24729,7 +24744,7 @@
}
},
{
- "id": 19670,
+ "id": 19811,
"properties": {
"east": "tall",
"north": "low",
@@ -24740,7 +24755,7 @@
}
},
{
- "id": 19671,
+ "id": 19812,
"properties": {
"east": "tall",
"north": "low",
@@ -24751,7 +24766,7 @@
}
},
{
- "id": 19672,
+ "id": 19813,
"properties": {
"east": "tall",
"north": "low",
@@ -24762,7 +24777,7 @@
}
},
{
- "id": 19673,
+ "id": 19814,
"properties": {
"east": "tall",
"north": "low",
@@ -24773,7 +24788,7 @@
}
},
{
- "id": 19674,
+ "id": 19815,
"properties": {
"east": "tall",
"north": "low",
@@ -24784,7 +24799,7 @@
}
},
{
- "id": 19675,
+ "id": 19816,
"properties": {
"east": "tall",
"north": "low",
@@ -24795,7 +24810,7 @@
}
},
{
- "id": 19676,
+ "id": 19817,
"properties": {
"east": "tall",
"north": "low",
@@ -24806,7 +24821,7 @@
}
},
{
- "id": 19677,
+ "id": 19818,
"properties": {
"east": "tall",
"north": "low",
@@ -24817,7 +24832,7 @@
}
},
{
- "id": 19678,
+ "id": 19819,
"properties": {
"east": "tall",
"north": "low",
@@ -24828,7 +24843,7 @@
}
},
{
- "id": 19679,
+ "id": 19820,
"properties": {
"east": "tall",
"north": "low",
@@ -24839,7 +24854,7 @@
}
},
{
- "id": 19680,
+ "id": 19821,
"properties": {
"east": "tall",
"north": "low",
@@ -24850,7 +24865,7 @@
}
},
{
- "id": 19681,
+ "id": 19822,
"properties": {
"east": "tall",
"north": "low",
@@ -24861,7 +24876,7 @@
}
},
{
- "id": 19682,
+ "id": 19823,
"properties": {
"east": "tall",
"north": "low",
@@ -24872,7 +24887,7 @@
}
},
{
- "id": 19683,
+ "id": 19824,
"properties": {
"east": "tall",
"north": "low",
@@ -24883,7 +24898,7 @@
}
},
{
- "id": 19684,
+ "id": 19825,
"properties": {
"east": "tall",
"north": "low",
@@ -24894,7 +24909,7 @@
}
},
{
- "id": 19685,
+ "id": 19826,
"properties": {
"east": "tall",
"north": "low",
@@ -24905,7 +24920,7 @@
}
},
{
- "id": 19686,
+ "id": 19827,
"properties": {
"east": "tall",
"north": "low",
@@ -24916,7 +24931,7 @@
}
},
{
- "id": 19687,
+ "id": 19828,
"properties": {
"east": "tall",
"north": "low",
@@ -24927,7 +24942,7 @@
}
},
{
- "id": 19688,
+ "id": 19829,
"properties": {
"east": "tall",
"north": "tall",
@@ -24938,7 +24953,7 @@
}
},
{
- "id": 19689,
+ "id": 19830,
"properties": {
"east": "tall",
"north": "tall",
@@ -24949,7 +24964,7 @@
}
},
{
- "id": 19690,
+ "id": 19831,
"properties": {
"east": "tall",
"north": "tall",
@@ -24960,7 +24975,7 @@
}
},
{
- "id": 19691,
+ "id": 19832,
"properties": {
"east": "tall",
"north": "tall",
@@ -24971,7 +24986,7 @@
}
},
{
- "id": 19692,
+ "id": 19833,
"properties": {
"east": "tall",
"north": "tall",
@@ -24982,7 +24997,7 @@
}
},
{
- "id": 19693,
+ "id": 19834,
"properties": {
"east": "tall",
"north": "tall",
@@ -24993,7 +25008,7 @@
}
},
{
- "id": 19694,
+ "id": 19835,
"properties": {
"east": "tall",
"north": "tall",
@@ -25004,7 +25019,7 @@
}
},
{
- "id": 19695,
+ "id": 19836,
"properties": {
"east": "tall",
"north": "tall",
@@ -25015,7 +25030,7 @@
}
},
{
- "id": 19696,
+ "id": 19837,
"properties": {
"east": "tall",
"north": "tall",
@@ -25026,7 +25041,7 @@
}
},
{
- "id": 19697,
+ "id": 19838,
"properties": {
"east": "tall",
"north": "tall",
@@ -25037,7 +25052,7 @@
}
},
{
- "id": 19698,
+ "id": 19839,
"properties": {
"east": "tall",
"north": "tall",
@@ -25048,7 +25063,7 @@
}
},
{
- "id": 19699,
+ "id": 19840,
"properties": {
"east": "tall",
"north": "tall",
@@ -25059,7 +25074,7 @@
}
},
{
- "id": 19700,
+ "id": 19841,
"properties": {
"east": "tall",
"north": "tall",
@@ -25070,7 +25085,7 @@
}
},
{
- "id": 19701,
+ "id": 19842,
"properties": {
"east": "tall",
"north": "tall",
@@ -25081,7 +25096,7 @@
}
},
{
- "id": 19702,
+ "id": 19843,
"properties": {
"east": "tall",
"north": "tall",
@@ -25092,7 +25107,7 @@
}
},
{
- "id": 19703,
+ "id": 19844,
"properties": {
"east": "tall",
"north": "tall",
@@ -25103,7 +25118,7 @@
}
},
{
- "id": 19704,
+ "id": 19845,
"properties": {
"east": "tall",
"north": "tall",
@@ -25114,7 +25129,7 @@
}
},
{
- "id": 19705,
+ "id": 19846,
"properties": {
"east": "tall",
"north": "tall",
@@ -25125,7 +25140,7 @@
}
},
{
- "id": 19706,
+ "id": 19847,
"properties": {
"east": "tall",
"north": "tall",
@@ -25136,7 +25151,7 @@
}
},
{
- "id": 19707,
+ "id": 19848,
"properties": {
"east": "tall",
"north": "tall",
@@ -25147,7 +25162,7 @@
}
},
{
- "id": 19708,
+ "id": 19849,
"properties": {
"east": "tall",
"north": "tall",
@@ -25158,7 +25173,7 @@
}
},
{
- "id": 19709,
+ "id": 19850,
"properties": {
"east": "tall",
"north": "tall",
@@ -25169,7 +25184,7 @@
}
},
{
- "id": 19710,
+ "id": 19851,
"properties": {
"east": "tall",
"north": "tall",
@@ -25180,7 +25195,7 @@
}
},
{
- "id": 19711,
+ "id": 19852,
"properties": {
"east": "tall",
"north": "tall",
@@ -25191,7 +25206,7 @@
}
},
{
- "id": 19712,
+ "id": 19853,
"properties": {
"east": "tall",
"north": "tall",
@@ -25202,7 +25217,7 @@
}
},
{
- "id": 19713,
+ "id": 19854,
"properties": {
"east": "tall",
"north": "tall",
@@ -25213,7 +25228,7 @@
}
},
{
- "id": 19714,
+ "id": 19855,
"properties": {
"east": "tall",
"north": "tall",
@@ -25224,7 +25239,7 @@
}
},
{
- "id": 19715,
+ "id": 19856,
"properties": {
"east": "tall",
"north": "tall",
@@ -25235,7 +25250,7 @@
}
},
{
- "id": 19716,
+ "id": 19857,
"properties": {
"east": "tall",
"north": "tall",
@@ -25246,7 +25261,7 @@
}
},
{
- "id": 19717,
+ "id": 19858,
"properties": {
"east": "tall",
"north": "tall",
@@ -25257,7 +25272,7 @@
}
},
{
- "id": 19718,
+ "id": 19859,
"properties": {
"east": "tall",
"north": "tall",
@@ -25268,7 +25283,7 @@
}
},
{
- "id": 19719,
+ "id": 19860,
"properties": {
"east": "tall",
"north": "tall",
@@ -25279,7 +25294,7 @@
}
},
{
- "id": 19720,
+ "id": 19861,
"properties": {
"east": "tall",
"north": "tall",
@@ -25290,7 +25305,7 @@
}
},
{
- "id": 19721,
+ "id": 19862,
"properties": {
"east": "tall",
"north": "tall",
@@ -25301,7 +25316,7 @@
}
},
{
- "id": 19722,
+ "id": 19863,
"properties": {
"east": "tall",
"north": "tall",
@@ -25312,7 +25327,7 @@
}
},
{
- "id": 19723,
+ "id": 19864,
"properties": {
"east": "tall",
"north": "tall",
@@ -25339,7 +25354,7 @@
},
"states": [
{
- "id": 18287,
+ "id": 18428,
"properties": {
"facing": "north",
"lit": "true"
@@ -25347,49 +25362,49 @@
},
{
"default": true,
- "id": 18288,
+ "id": 18429,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 18289,
+ "id": 18430,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 18290,
+ "id": 18431,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 18291,
+ "id": 18432,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 18292,
+ "id": 18433,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 18293,
+ "id": 18434,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 18294,
+ "id": 18435,
"properties": {
"facing": "east",
"lit": "false"
@@ -25421,97 +25436,97 @@
"states": [
{
"default": true,
- "id": 10794,
+ "id": 10935,
"properties": {
"rotation": "0"
}
},
{
- "id": 10795,
+ "id": 10936,
"properties": {
"rotation": "1"
}
},
{
- "id": 10796,
+ "id": 10937,
"properties": {
"rotation": "2"
}
},
{
- "id": 10797,
+ "id": 10938,
"properties": {
"rotation": "3"
}
},
{
- "id": 10798,
+ "id": 10939,
"properties": {
"rotation": "4"
}
},
{
- "id": 10799,
+ "id": 10940,
"properties": {
"rotation": "5"
}
},
{
- "id": 10800,
+ "id": 10941,
"properties": {
"rotation": "6"
}
},
{
- "id": 10801,
+ "id": 10942,
"properties": {
"rotation": "7"
}
},
{
- "id": 10802,
+ "id": 10943,
"properties": {
"rotation": "8"
}
},
{
- "id": 10803,
+ "id": 10944,
"properties": {
"rotation": "9"
}
},
{
- "id": 10804,
+ "id": 10945,
"properties": {
"rotation": "10"
}
},
{
- "id": 10805,
+ "id": 10946,
"properties": {
"rotation": "11"
}
},
{
- "id": 10806,
+ "id": 10947,
"properties": {
"rotation": "12"
}
},
{
- "id": 10807,
+ "id": 10948,
"properties": {
"rotation": "13"
}
},
{
- "id": 10808,
+ "id": 10949,
"properties": {
"rotation": "14"
}
},
{
- "id": 10809,
+ "id": 10950,
"properties": {
"rotation": "15"
}
@@ -25686,7 +25701,7 @@
},
"states": [
{
- "id": 20776,
+ "id": 20917,
"properties": {
"candles": "1",
"lit": "true",
@@ -25694,7 +25709,7 @@
}
},
{
- "id": 20777,
+ "id": 20918,
"properties": {
"candles": "1",
"lit": "true",
@@ -25702,7 +25717,7 @@
}
},
{
- "id": 20778,
+ "id": 20919,
"properties": {
"candles": "1",
"lit": "false",
@@ -25711,7 +25726,7 @@
},
{
"default": true,
- "id": 20779,
+ "id": 20920,
"properties": {
"candles": "1",
"lit": "false",
@@ -25719,7 +25734,7 @@
}
},
{
- "id": 20780,
+ "id": 20921,
"properties": {
"candles": "2",
"lit": "true",
@@ -25727,7 +25742,7 @@
}
},
{
- "id": 20781,
+ "id": 20922,
"properties": {
"candles": "2",
"lit": "true",
@@ -25735,7 +25750,7 @@
}
},
{
- "id": 20782,
+ "id": 20923,
"properties": {
"candles": "2",
"lit": "false",
@@ -25743,7 +25758,7 @@
}
},
{
- "id": 20783,
+ "id": 20924,
"properties": {
"candles": "2",
"lit": "false",
@@ -25751,7 +25766,7 @@
}
},
{
- "id": 20784,
+ "id": 20925,
"properties": {
"candles": "3",
"lit": "true",
@@ -25759,7 +25774,7 @@
}
},
{
- "id": 20785,
+ "id": 20926,
"properties": {
"candles": "3",
"lit": "true",
@@ -25767,7 +25782,7 @@
}
},
{
- "id": 20786,
+ "id": 20927,
"properties": {
"candles": "3",
"lit": "false",
@@ -25775,7 +25790,7 @@
}
},
{
- "id": 20787,
+ "id": 20928,
"properties": {
"candles": "3",
"lit": "false",
@@ -25783,7 +25798,7 @@
}
},
{
- "id": 20788,
+ "id": 20929,
"properties": {
"candles": "4",
"lit": "true",
@@ -25791,7 +25806,7 @@
}
},
{
- "id": 20789,
+ "id": 20930,
"properties": {
"candles": "4",
"lit": "true",
@@ -25799,7 +25814,7 @@
}
},
{
- "id": 20790,
+ "id": 20931,
"properties": {
"candles": "4",
"lit": "false",
@@ -25807,7 +25822,7 @@
}
},
{
- "id": 20791,
+ "id": 20932,
"properties": {
"candles": "4",
"lit": "false",
@@ -25825,14 +25840,14 @@
},
"states": [
{
- "id": 20880,
+ "id": 21021,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20881,
+ "id": 21022,
"properties": {
"lit": "false"
}
@@ -25843,7 +25858,7 @@
"states": [
{
"default": true,
- "id": 10598
+ "id": 10739
}
]
},
@@ -25851,7 +25866,7 @@
"states": [
{
"default": true,
- "id": 12598
+ "id": 12739
}
]
},
@@ -25859,7 +25874,7 @@
"states": [
{
"default": true,
- "id": 12614
+ "id": 12755
}
]
},
@@ -25875,25 +25890,25 @@
"states": [
{
"default": true,
- "id": 12567,
+ "id": 12708,
"properties": {
"facing": "north"
}
},
{
- "id": 12568,
+ "id": 12709,
"properties": {
"facing": "south"
}
},
{
- "id": 12569,
+ "id": 12710,
"properties": {
"facing": "west"
}
},
{
- "id": 12570,
+ "id": 12711,
"properties": {
"facing": "east"
}
@@ -25904,7 +25919,7 @@
"states": [
{
"default": true,
- "id": 12800
+ "id": 12941
}
]
},
@@ -25929,38 +25944,38 @@
},
"states": [
{
- "id": 12493,
+ "id": 12634,
"properties": {
"facing": "north"
}
},
{
- "id": 12494,
+ "id": 12635,
"properties": {
"facing": "east"
}
},
{
- "id": 12495,
+ "id": 12636,
"properties": {
"facing": "south"
}
},
{
- "id": 12496,
+ "id": 12637,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12497,
+ "id": 12638,
"properties": {
"facing": "up"
}
},
{
- "id": 12498,
+ "id": 12639,
"properties": {
"facing": "down"
}
@@ -26000,7 +26015,7 @@
},
"states": [
{
- "id": 9584,
+ "id": 9724,
"properties": {
"east": "true",
"north": "true",
@@ -26010,7 +26025,7 @@
}
},
{
- "id": 9585,
+ "id": 9725,
"properties": {
"east": "true",
"north": "true",
@@ -26020,7 +26035,7 @@
}
},
{
- "id": 9586,
+ "id": 9726,
"properties": {
"east": "true",
"north": "true",
@@ -26030,7 +26045,7 @@
}
},
{
- "id": 9587,
+ "id": 9727,
"properties": {
"east": "true",
"north": "true",
@@ -26040,7 +26055,7 @@
}
},
{
- "id": 9588,
+ "id": 9728,
"properties": {
"east": "true",
"north": "true",
@@ -26050,7 +26065,7 @@
}
},
{
- "id": 9589,
+ "id": 9729,
"properties": {
"east": "true",
"north": "true",
@@ -26060,7 +26075,7 @@
}
},
{
- "id": 9590,
+ "id": 9730,
"properties": {
"east": "true",
"north": "true",
@@ -26070,7 +26085,7 @@
}
},
{
- "id": 9591,
+ "id": 9731,
"properties": {
"east": "true",
"north": "true",
@@ -26080,7 +26095,7 @@
}
},
{
- "id": 9592,
+ "id": 9732,
"properties": {
"east": "true",
"north": "false",
@@ -26090,7 +26105,7 @@
}
},
{
- "id": 9593,
+ "id": 9733,
"properties": {
"east": "true",
"north": "false",
@@ -26100,7 +26115,7 @@
}
},
{
- "id": 9594,
+ "id": 9734,
"properties": {
"east": "true",
"north": "false",
@@ -26110,7 +26125,7 @@
}
},
{
- "id": 9595,
+ "id": 9735,
"properties": {
"east": "true",
"north": "false",
@@ -26120,7 +26135,7 @@
}
},
{
- "id": 9596,
+ "id": 9736,
"properties": {
"east": "true",
"north": "false",
@@ -26130,7 +26145,7 @@
}
},
{
- "id": 9597,
+ "id": 9737,
"properties": {
"east": "true",
"north": "false",
@@ -26140,7 +26155,7 @@
}
},
{
- "id": 9598,
+ "id": 9738,
"properties": {
"east": "true",
"north": "false",
@@ -26150,7 +26165,7 @@
}
},
{
- "id": 9599,
+ "id": 9739,
"properties": {
"east": "true",
"north": "false",
@@ -26160,7 +26175,7 @@
}
},
{
- "id": 9600,
+ "id": 9740,
"properties": {
"east": "false",
"north": "true",
@@ -26170,7 +26185,7 @@
}
},
{
- "id": 9601,
+ "id": 9741,
"properties": {
"east": "false",
"north": "true",
@@ -26180,7 +26195,7 @@
}
},
{
- "id": 9602,
+ "id": 9742,
"properties": {
"east": "false",
"north": "true",
@@ -26190,7 +26205,7 @@
}
},
{
- "id": 9603,
+ "id": 9743,
"properties": {
"east": "false",
"north": "true",
@@ -26200,7 +26215,7 @@
}
},
{
- "id": 9604,
+ "id": 9744,
"properties": {
"east": "false",
"north": "true",
@@ -26210,7 +26225,7 @@
}
},
{
- "id": 9605,
+ "id": 9745,
"properties": {
"east": "false",
"north": "true",
@@ -26220,7 +26235,7 @@
}
},
{
- "id": 9606,
+ "id": 9746,
"properties": {
"east": "false",
"north": "true",
@@ -26230,7 +26245,7 @@
}
},
{
- "id": 9607,
+ "id": 9747,
"properties": {
"east": "false",
"north": "true",
@@ -26240,7 +26255,7 @@
}
},
{
- "id": 9608,
+ "id": 9748,
"properties": {
"east": "false",
"north": "false",
@@ -26250,7 +26265,7 @@
}
},
{
- "id": 9609,
+ "id": 9749,
"properties": {
"east": "false",
"north": "false",
@@ -26260,7 +26275,7 @@
}
},
{
- "id": 9610,
+ "id": 9750,
"properties": {
"east": "false",
"north": "false",
@@ -26270,7 +26285,7 @@
}
},
{
- "id": 9611,
+ "id": 9751,
"properties": {
"east": "false",
"north": "false",
@@ -26280,7 +26295,7 @@
}
},
{
- "id": 9612,
+ "id": 9752,
"properties": {
"east": "false",
"north": "false",
@@ -26290,7 +26305,7 @@
}
},
{
- "id": 9613,
+ "id": 9753,
"properties": {
"east": "false",
"north": "false",
@@ -26300,7 +26315,7 @@
}
},
{
- "id": 9614,
+ "id": 9754,
"properties": {
"east": "false",
"north": "false",
@@ -26311,7 +26326,7 @@
},
{
"default": true,
- "id": 9615,
+ "id": 9755,
"properties": {
"east": "false",
"north": "false",
@@ -26326,7 +26341,7 @@
"states": [
{
"default": true,
- "id": 9227
+ "id": 9367
}
]
},
@@ -26342,25 +26357,25 @@
"states": [
{
"default": true,
- "id": 10918,
+ "id": 11059,
"properties": {
"facing": "north"
}
},
{
- "id": 10919,
+ "id": 11060,
"properties": {
"facing": "south"
}
},
{
- "id": 10920,
+ "id": 11061,
"properties": {
"facing": "west"
}
},
{
- "id": 10921,
+ "id": 11062,
"properties": {
"facing": "east"
}
@@ -26385,20 +26400,20 @@
},
"states": [
{
- "id": 12405,
+ "id": 12546,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 12406,
+ "id": 12547,
"properties": {
"axis": "y"
}
},
{
- "id": 12407,
+ "id": 12548,
"properties": {
"axis": "z"
}
@@ -26423,13 +26438,13 @@
"states": [
{
"default": true,
- "id": 12684,
+ "id": 12825,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12685,
+ "id": 12826,
"properties": {
"waterlogged": "false"
}
@@ -26440,7 +26455,7 @@
"states": [
{
"default": true,
- "id": 12668
+ "id": 12809
}
]
},
@@ -26454,13 +26469,13 @@
"states": [
{
"default": true,
- "id": 12704,
+ "id": 12845,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12705,
+ "id": 12846,
"properties": {
"waterlogged": "false"
}
@@ -26483,56 +26498,56 @@
"states": [
{
"default": true,
- "id": 12760,
+ "id": 12901,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12761,
+ "id": 12902,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12762,
+ "id": 12903,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12763,
+ "id": 12904,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12764,
+ "id": 12905,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12765,
+ "id": 12906,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12766,
+ "id": 12907,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12767,
+ "id": 12908,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -26637,21 +26652,21 @@
},
"states": [
{
- "id": 11117,
+ "id": 11258,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11118,
+ "id": 11259,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11119,
+ "id": 11260,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -26659,21 +26674,21 @@
},
{
"default": true,
- "id": 11120,
+ "id": 11261,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11121,
+ "id": 11262,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11122,
+ "id": 11263,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -27462,7 +27477,7 @@
},
"states": [
{
- "id": 14019,
+ "id": 14160,
"properties": {
"east": "none",
"north": "none",
@@ -27473,7 +27488,7 @@
}
},
{
- "id": 14020,
+ "id": 14161,
"properties": {
"east": "none",
"north": "none",
@@ -27484,7 +27499,7 @@
}
},
{
- "id": 14021,
+ "id": 14162,
"properties": {
"east": "none",
"north": "none",
@@ -27496,2339 +27511,2339 @@
},
{
"default": true,
- "id": 14022,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14023,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14024,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14025,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14026,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14027,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14028,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14029,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14030,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14031,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14032,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14033,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14034,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14035,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14036,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14037,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14038,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14039,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14040,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14041,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14042,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14043,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14044,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14045,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14046,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14047,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14048,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14049,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14050,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14051,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14052,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14053,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14054,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14055,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14056,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14057,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14058,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14059,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14060,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14061,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14062,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14063,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14064,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14065,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14066,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14067,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14068,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14069,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14070,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14071,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14072,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14073,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14074,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14075,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14076,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14077,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14078,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14079,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14080,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14081,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14082,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14083,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14084,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14085,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14086,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14087,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14088,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14089,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14090,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14091,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14092,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14093,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14094,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14095,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14096,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14097,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14098,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14099,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14100,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14101,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14102,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14103,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14104,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14105,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14106,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14107,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14108,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14109,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14110,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14111,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14112,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14113,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14114,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14115,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14116,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14117,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14118,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14119,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14120,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14121,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14122,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14123,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14124,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14125,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14126,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14127,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14128,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14129,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14130,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14131,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14132,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14133,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14134,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14135,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14136,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14137,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14138,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14139,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14140,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14141,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14142,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14143,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14144,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14145,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14146,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14147,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14148,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14149,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14150,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14151,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14152,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14153,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14154,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14155,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14156,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14157,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14158,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14159,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14160,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14161,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14162,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 14163,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14164,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14165,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14166,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14167,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14168,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14169,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14170,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14171,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14172,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14173,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14174,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14175,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14176,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14177,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14178,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14179,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14180,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14181,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14182,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14183,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14184,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14185,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14186,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14187,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14188,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14189,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14190,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14191,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14192,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14193,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14194,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14195,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14196,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14197,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14198,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14199,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14200,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14201,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14202,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14203,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14204,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14205,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14206,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14207,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14208,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14209,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14210,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14211,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14212,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14213,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14214,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14215,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14216,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14217,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14218,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14219,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14220,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14221,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14222,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14223,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14224,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14225,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14226,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14227,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14228,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14229,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14230,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14231,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14232,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14233,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14234,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14235,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14236,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14237,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14238,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14239,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14240,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14241,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14242,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14243,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14244,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14245,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14246,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14247,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14248,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14249,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14250,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14251,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14252,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14253,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14254,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14255,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14256,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14257,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14258,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14259,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14260,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14261,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14262,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14263,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14264,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14265,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14266,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14267,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14268,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14269,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14270,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14271,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14272,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14273,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14274,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14275,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14276,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14277,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14278,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14279,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14280,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14281,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14282,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14283,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14284,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14285,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14286,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14287,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14288,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14289,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14290,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14291,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14292,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14293,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14294,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14295,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14296,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14297,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14298,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14299,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14300,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14301,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14302,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14303,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14304,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14305,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14306,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14307,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14308,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14309,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14310,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14311,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14312,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14313,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14314,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14315,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14316,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14317,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14318,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14319,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14320,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14321,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14322,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14323,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14324,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14325,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14326,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14327,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14328,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14329,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14330,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14331,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14332,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14333,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14334,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14335,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14336,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14337,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14338,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14339,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14340,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14341,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14342,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14343,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14344,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14345,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14346,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14347,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14348,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14349,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14350,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14351,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14352,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14353,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14354,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14355,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14356,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14357,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14358,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14359,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14360,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14361,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14362,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14363,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14364,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14365,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14366,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14367,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14368,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14369,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14370,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14371,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14372,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14373,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14374,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14375,
"properties": {
"east": "low",
"north": "tall",
@@ -29839,7 +29854,7 @@
}
},
{
- "id": 14235,
+ "id": 14376,
"properties": {
"east": "tall",
"north": "none",
@@ -29850,7 +29865,7 @@
}
},
{
- "id": 14236,
+ "id": 14377,
"properties": {
"east": "tall",
"north": "none",
@@ -29861,7 +29876,7 @@
}
},
{
- "id": 14237,
+ "id": 14378,
"properties": {
"east": "tall",
"north": "none",
@@ -29872,7 +29887,7 @@
}
},
{
- "id": 14238,
+ "id": 14379,
"properties": {
"east": "tall",
"north": "none",
@@ -29883,7 +29898,7 @@
}
},
{
- "id": 14239,
+ "id": 14380,
"properties": {
"east": "tall",
"north": "none",
@@ -29894,7 +29909,7 @@
}
},
{
- "id": 14240,
+ "id": 14381,
"properties": {
"east": "tall",
"north": "none",
@@ -29905,7 +29920,7 @@
}
},
{
- "id": 14241,
+ "id": 14382,
"properties": {
"east": "tall",
"north": "none",
@@ -29916,7 +29931,7 @@
}
},
{
- "id": 14242,
+ "id": 14383,
"properties": {
"east": "tall",
"north": "none",
@@ -29927,7 +29942,7 @@
}
},
{
- "id": 14243,
+ "id": 14384,
"properties": {
"east": "tall",
"north": "none",
@@ -29938,7 +29953,7 @@
}
},
{
- "id": 14244,
+ "id": 14385,
"properties": {
"east": "tall",
"north": "none",
@@ -29949,7 +29964,7 @@
}
},
{
- "id": 14245,
+ "id": 14386,
"properties": {
"east": "tall",
"north": "none",
@@ -29960,7 +29975,7 @@
}
},
{
- "id": 14246,
+ "id": 14387,
"properties": {
"east": "tall",
"north": "none",
@@ -29971,7 +29986,7 @@
}
},
{
- "id": 14247,
+ "id": 14388,
"properties": {
"east": "tall",
"north": "none",
@@ -29982,7 +29997,7 @@
}
},
{
- "id": 14248,
+ "id": 14389,
"properties": {
"east": "tall",
"north": "none",
@@ -29993,7 +30008,7 @@
}
},
{
- "id": 14249,
+ "id": 14390,
"properties": {
"east": "tall",
"north": "none",
@@ -30004,7 +30019,7 @@
}
},
{
- "id": 14250,
+ "id": 14391,
"properties": {
"east": "tall",
"north": "none",
@@ -30015,7 +30030,7 @@
}
},
{
- "id": 14251,
+ "id": 14392,
"properties": {
"east": "tall",
"north": "none",
@@ -30026,7 +30041,7 @@
}
},
{
- "id": 14252,
+ "id": 14393,
"properties": {
"east": "tall",
"north": "none",
@@ -30037,7 +30052,7 @@
}
},
{
- "id": 14253,
+ "id": 14394,
"properties": {
"east": "tall",
"north": "none",
@@ -30048,7 +30063,7 @@
}
},
{
- "id": 14254,
+ "id": 14395,
"properties": {
"east": "tall",
"north": "none",
@@ -30059,7 +30074,7 @@
}
},
{
- "id": 14255,
+ "id": 14396,
"properties": {
"east": "tall",
"north": "none",
@@ -30070,7 +30085,7 @@
}
},
{
- "id": 14256,
+ "id": 14397,
"properties": {
"east": "tall",
"north": "none",
@@ -30081,7 +30096,7 @@
}
},
{
- "id": 14257,
+ "id": 14398,
"properties": {
"east": "tall",
"north": "none",
@@ -30092,7 +30107,7 @@
}
},
{
- "id": 14258,
+ "id": 14399,
"properties": {
"east": "tall",
"north": "none",
@@ -30103,7 +30118,7 @@
}
},
{
- "id": 14259,
+ "id": 14400,
"properties": {
"east": "tall",
"north": "none",
@@ -30114,7 +30129,7 @@
}
},
{
- "id": 14260,
+ "id": 14401,
"properties": {
"east": "tall",
"north": "none",
@@ -30125,7 +30140,7 @@
}
},
{
- "id": 14261,
+ "id": 14402,
"properties": {
"east": "tall",
"north": "none",
@@ -30136,7 +30151,7 @@
}
},
{
- "id": 14262,
+ "id": 14403,
"properties": {
"east": "tall",
"north": "none",
@@ -30147,7 +30162,7 @@
}
},
{
- "id": 14263,
+ "id": 14404,
"properties": {
"east": "tall",
"north": "none",
@@ -30158,7 +30173,7 @@
}
},
{
- "id": 14264,
+ "id": 14405,
"properties": {
"east": "tall",
"north": "none",
@@ -30169,7 +30184,7 @@
}
},
{
- "id": 14265,
+ "id": 14406,
"properties": {
"east": "tall",
"north": "none",
@@ -30180,7 +30195,7 @@
}
},
{
- "id": 14266,
+ "id": 14407,
"properties": {
"east": "tall",
"north": "none",
@@ -30191,7 +30206,7 @@
}
},
{
- "id": 14267,
+ "id": 14408,
"properties": {
"east": "tall",
"north": "none",
@@ -30202,7 +30217,7 @@
}
},
{
- "id": 14268,
+ "id": 14409,
"properties": {
"east": "tall",
"north": "none",
@@ -30213,7 +30228,7 @@
}
},
{
- "id": 14269,
+ "id": 14410,
"properties": {
"east": "tall",
"north": "none",
@@ -30224,7 +30239,7 @@
}
},
{
- "id": 14270,
+ "id": 14411,
"properties": {
"east": "tall",
"north": "none",
@@ -30235,7 +30250,7 @@
}
},
{
- "id": 14271,
+ "id": 14412,
"properties": {
"east": "tall",
"north": "low",
@@ -30246,7 +30261,7 @@
}
},
{
- "id": 14272,
+ "id": 14413,
"properties": {
"east": "tall",
"north": "low",
@@ -30257,7 +30272,7 @@
}
},
{
- "id": 14273,
+ "id": 14414,
"properties": {
"east": "tall",
"north": "low",
@@ -30268,7 +30283,7 @@
}
},
{
- "id": 14274,
+ "id": 14415,
"properties": {
"east": "tall",
"north": "low",
@@ -30279,7 +30294,7 @@
}
},
{
- "id": 14275,
+ "id": 14416,
"properties": {
"east": "tall",
"north": "low",
@@ -30290,7 +30305,7 @@
}
},
{
- "id": 14276,
+ "id": 14417,
"properties": {
"east": "tall",
"north": "low",
@@ -30301,7 +30316,7 @@
}
},
{
- "id": 14277,
+ "id": 14418,
"properties": {
"east": "tall",
"north": "low",
@@ -30312,7 +30327,7 @@
}
},
{
- "id": 14278,
+ "id": 14419,
"properties": {
"east": "tall",
"north": "low",
@@ -30323,7 +30338,7 @@
}
},
{
- "id": 14279,
+ "id": 14420,
"properties": {
"east": "tall",
"north": "low",
@@ -30334,7 +30349,7 @@
}
},
{
- "id": 14280,
+ "id": 14421,
"properties": {
"east": "tall",
"north": "low",
@@ -30345,7 +30360,7 @@
}
},
{
- "id": 14281,
+ "id": 14422,
"properties": {
"east": "tall",
"north": "low",
@@ -30356,7 +30371,7 @@
}
},
{
- "id": 14282,
+ "id": 14423,
"properties": {
"east": "tall",
"north": "low",
@@ -30367,7 +30382,7 @@
}
},
{
- "id": 14283,
+ "id": 14424,
"properties": {
"east": "tall",
"north": "low",
@@ -30378,7 +30393,7 @@
}
},
{
- "id": 14284,
+ "id": 14425,
"properties": {
"east": "tall",
"north": "low",
@@ -30389,7 +30404,7 @@
}
},
{
- "id": 14285,
+ "id": 14426,
"properties": {
"east": "tall",
"north": "low",
@@ -30400,7 +30415,7 @@
}
},
{
- "id": 14286,
+ "id": 14427,
"properties": {
"east": "tall",
"north": "low",
@@ -30411,7 +30426,7 @@
}
},
{
- "id": 14287,
+ "id": 14428,
"properties": {
"east": "tall",
"north": "low",
@@ -30422,7 +30437,7 @@
}
},
{
- "id": 14288,
+ "id": 14429,
"properties": {
"east": "tall",
"north": "low",
@@ -30433,7 +30448,7 @@
}
},
{
- "id": 14289,
+ "id": 14430,
"properties": {
"east": "tall",
"north": "low",
@@ -30444,7 +30459,7 @@
}
},
{
- "id": 14290,
+ "id": 14431,
"properties": {
"east": "tall",
"north": "low",
@@ -30455,7 +30470,7 @@
}
},
{
- "id": 14291,
+ "id": 14432,
"properties": {
"east": "tall",
"north": "low",
@@ -30466,7 +30481,7 @@
}
},
{
- "id": 14292,
+ "id": 14433,
"properties": {
"east": "tall",
"north": "low",
@@ -30477,7 +30492,7 @@
}
},
{
- "id": 14293,
+ "id": 14434,
"properties": {
"east": "tall",
"north": "low",
@@ -30488,7 +30503,7 @@
}
},
{
- "id": 14294,
+ "id": 14435,
"properties": {
"east": "tall",
"north": "low",
@@ -30499,7 +30514,7 @@
}
},
{
- "id": 14295,
+ "id": 14436,
"properties": {
"east": "tall",
"north": "low",
@@ -30510,7 +30525,7 @@
}
},
{
- "id": 14296,
+ "id": 14437,
"properties": {
"east": "tall",
"north": "low",
@@ -30521,7 +30536,7 @@
}
},
{
- "id": 14297,
+ "id": 14438,
"properties": {
"east": "tall",
"north": "low",
@@ -30532,7 +30547,7 @@
}
},
{
- "id": 14298,
+ "id": 14439,
"properties": {
"east": "tall",
"north": "low",
@@ -30543,7 +30558,7 @@
}
},
{
- "id": 14299,
+ "id": 14440,
"properties": {
"east": "tall",
"north": "low",
@@ -30554,7 +30569,7 @@
}
},
{
- "id": 14300,
+ "id": 14441,
"properties": {
"east": "tall",
"north": "low",
@@ -30565,7 +30580,7 @@
}
},
{
- "id": 14301,
+ "id": 14442,
"properties": {
"east": "tall",
"north": "low",
@@ -30576,7 +30591,7 @@
}
},
{
- "id": 14302,
+ "id": 14443,
"properties": {
"east": "tall",
"north": "low",
@@ -30587,7 +30602,7 @@
}
},
{
- "id": 14303,
+ "id": 14444,
"properties": {
"east": "tall",
"north": "low",
@@ -30598,7 +30613,7 @@
}
},
{
- "id": 14304,
+ "id": 14445,
"properties": {
"east": "tall",
"north": "low",
@@ -30609,7 +30624,7 @@
}
},
{
- "id": 14305,
+ "id": 14446,
"properties": {
"east": "tall",
"north": "low",
@@ -30620,7 +30635,7 @@
}
},
{
- "id": 14306,
+ "id": 14447,
"properties": {
"east": "tall",
"north": "low",
@@ -30631,7 +30646,7 @@
}
},
{
- "id": 14307,
+ "id": 14448,
"properties": {
"east": "tall",
"north": "tall",
@@ -30642,7 +30657,7 @@
}
},
{
- "id": 14308,
+ "id": 14449,
"properties": {
"east": "tall",
"north": "tall",
@@ -30653,7 +30668,7 @@
}
},
{
- "id": 14309,
+ "id": 14450,
"properties": {
"east": "tall",
"north": "tall",
@@ -30664,7 +30679,7 @@
}
},
{
- "id": 14310,
+ "id": 14451,
"properties": {
"east": "tall",
"north": "tall",
@@ -30675,7 +30690,7 @@
}
},
{
- "id": 14311,
+ "id": 14452,
"properties": {
"east": "tall",
"north": "tall",
@@ -30686,7 +30701,7 @@
}
},
{
- "id": 14312,
+ "id": 14453,
"properties": {
"east": "tall",
"north": "tall",
@@ -30697,7 +30712,7 @@
}
},
{
- "id": 14313,
+ "id": 14454,
"properties": {
"east": "tall",
"north": "tall",
@@ -30708,7 +30723,7 @@
}
},
{
- "id": 14314,
+ "id": 14455,
"properties": {
"east": "tall",
"north": "tall",
@@ -30719,7 +30734,7 @@
}
},
{
- "id": 14315,
+ "id": 14456,
"properties": {
"east": "tall",
"north": "tall",
@@ -30730,7 +30745,7 @@
}
},
{
- "id": 14316,
+ "id": 14457,
"properties": {
"east": "tall",
"north": "tall",
@@ -30741,7 +30756,7 @@
}
},
{
- "id": 14317,
+ "id": 14458,
"properties": {
"east": "tall",
"north": "tall",
@@ -30752,7 +30767,7 @@
}
},
{
- "id": 14318,
+ "id": 14459,
"properties": {
"east": "tall",
"north": "tall",
@@ -30763,7 +30778,7 @@
}
},
{
- "id": 14319,
+ "id": 14460,
"properties": {
"east": "tall",
"north": "tall",
@@ -30774,7 +30789,7 @@
}
},
{
- "id": 14320,
+ "id": 14461,
"properties": {
"east": "tall",
"north": "tall",
@@ -30785,7 +30800,7 @@
}
},
{
- "id": 14321,
+ "id": 14462,
"properties": {
"east": "tall",
"north": "tall",
@@ -30796,7 +30811,7 @@
}
},
{
- "id": 14322,
+ "id": 14463,
"properties": {
"east": "tall",
"north": "tall",
@@ -30807,7 +30822,7 @@
}
},
{
- "id": 14323,
+ "id": 14464,
"properties": {
"east": "tall",
"north": "tall",
@@ -30818,7 +30833,7 @@
}
},
{
- "id": 14324,
+ "id": 14465,
"properties": {
"east": "tall",
"north": "tall",
@@ -30829,7 +30844,7 @@
}
},
{
- "id": 14325,
+ "id": 14466,
"properties": {
"east": "tall",
"north": "tall",
@@ -30840,7 +30855,7 @@
}
},
{
- "id": 14326,
+ "id": 14467,
"properties": {
"east": "tall",
"north": "tall",
@@ -30851,7 +30866,7 @@
}
},
{
- "id": 14327,
+ "id": 14468,
"properties": {
"east": "tall",
"north": "tall",
@@ -30862,7 +30877,7 @@
}
},
{
- "id": 14328,
+ "id": 14469,
"properties": {
"east": "tall",
"north": "tall",
@@ -30873,7 +30888,7 @@
}
},
{
- "id": 14329,
+ "id": 14470,
"properties": {
"east": "tall",
"north": "tall",
@@ -30884,7 +30899,7 @@
}
},
{
- "id": 14330,
+ "id": 14471,
"properties": {
"east": "tall",
"north": "tall",
@@ -30895,7 +30910,7 @@
}
},
{
- "id": 14331,
+ "id": 14472,
"properties": {
"east": "tall",
"north": "tall",
@@ -30906,7 +30921,7 @@
}
},
{
- "id": 14332,
+ "id": 14473,
"properties": {
"east": "tall",
"north": "tall",
@@ -30917,7 +30932,7 @@
}
},
{
- "id": 14333,
+ "id": 14474,
"properties": {
"east": "tall",
"north": "tall",
@@ -30928,7 +30943,7 @@
}
},
{
- "id": 14334,
+ "id": 14475,
"properties": {
"east": "tall",
"north": "tall",
@@ -30939,7 +30954,7 @@
}
},
{
- "id": 14335,
+ "id": 14476,
"properties": {
"east": "tall",
"north": "tall",
@@ -30950,7 +30965,7 @@
}
},
{
- "id": 14336,
+ "id": 14477,
"properties": {
"east": "tall",
"north": "tall",
@@ -30961,7 +30976,7 @@
}
},
{
- "id": 14337,
+ "id": 14478,
"properties": {
"east": "tall",
"north": "tall",
@@ -30972,7 +30987,7 @@
}
},
{
- "id": 14338,
+ "id": 14479,
"properties": {
"east": "tall",
"north": "tall",
@@ -30983,7 +30998,7 @@
}
},
{
- "id": 14339,
+ "id": 14480,
"properties": {
"east": "tall",
"north": "tall",
@@ -30994,7 +31009,7 @@
}
},
{
- "id": 14340,
+ "id": 14481,
"properties": {
"east": "tall",
"north": "tall",
@@ -31005,7 +31020,7 @@
}
},
{
- "id": 14341,
+ "id": 14482,
"properties": {
"east": "tall",
"north": "tall",
@@ -31016,7 +31031,7 @@
}
},
{
- "id": 14342,
+ "id": 14483,
"properties": {
"east": "tall",
"north": "tall",
@@ -31060,97 +31075,97 @@
"states": [
{
"default": true,
- "id": 10810,
+ "id": 10951,
"properties": {
"rotation": "0"
}
},
{
- "id": 10811,
+ "id": 10952,
"properties": {
"rotation": "1"
}
},
{
- "id": 10812,
+ "id": 10953,
"properties": {
"rotation": "2"
}
},
{
- "id": 10813,
+ "id": 10954,
"properties": {
"rotation": "3"
}
},
{
- "id": 10814,
+ "id": 10955,
"properties": {
"rotation": "4"
}
},
{
- "id": 10815,
+ "id": 10956,
"properties": {
"rotation": "5"
}
},
{
- "id": 10816,
+ "id": 10957,
"properties": {
"rotation": "6"
}
},
{
- "id": 10817,
+ "id": 10958,
"properties": {
"rotation": "7"
}
},
{
- "id": 10818,
+ "id": 10959,
"properties": {
"rotation": "8"
}
},
{
- "id": 10819,
+ "id": 10960,
"properties": {
"rotation": "9"
}
},
{
- "id": 10820,
+ "id": 10961,
"properties": {
"rotation": "10"
}
},
{
- "id": 10821,
+ "id": 10962,
"properties": {
"rotation": "11"
}
},
{
- "id": 10822,
+ "id": 10963,
"properties": {
"rotation": "12"
}
},
{
- "id": 10823,
+ "id": 10964,
"properties": {
"rotation": "13"
}
},
{
- "id": 10824,
+ "id": 10965,
"properties": {
"rotation": "14"
}
},
{
- "id": 10825,
+ "id": 10966,
"properties": {
"rotation": "15"
}
@@ -31325,7 +31340,7 @@
},
"states": [
{
- "id": 20792,
+ "id": 20933,
"properties": {
"candles": "1",
"lit": "true",
@@ -31333,7 +31348,7 @@
}
},
{
- "id": 20793,
+ "id": 20934,
"properties": {
"candles": "1",
"lit": "true",
@@ -31341,7 +31356,7 @@
}
},
{
- "id": 20794,
+ "id": 20935,
"properties": {
"candles": "1",
"lit": "false",
@@ -31350,7 +31365,7 @@
},
{
"default": true,
- "id": 20795,
+ "id": 20936,
"properties": {
"candles": "1",
"lit": "false",
@@ -31358,7 +31373,7 @@
}
},
{
- "id": 20796,
+ "id": 20937,
"properties": {
"candles": "2",
"lit": "true",
@@ -31366,7 +31381,7 @@
}
},
{
- "id": 20797,
+ "id": 20938,
"properties": {
"candles": "2",
"lit": "true",
@@ -31374,7 +31389,7 @@
}
},
{
- "id": 20798,
+ "id": 20939,
"properties": {
"candles": "2",
"lit": "false",
@@ -31382,7 +31397,7 @@
}
},
{
- "id": 20799,
+ "id": 20940,
"properties": {
"candles": "2",
"lit": "false",
@@ -31390,7 +31405,7 @@
}
},
{
- "id": 20800,
+ "id": 20941,
"properties": {
"candles": "3",
"lit": "true",
@@ -31398,7 +31413,7 @@
}
},
{
- "id": 20801,
+ "id": 20942,
"properties": {
"candles": "3",
"lit": "true",
@@ -31406,7 +31421,7 @@
}
},
{
- "id": 20802,
+ "id": 20943,
"properties": {
"candles": "3",
"lit": "false",
@@ -31414,7 +31429,7 @@
}
},
{
- "id": 20803,
+ "id": 20944,
"properties": {
"candles": "3",
"lit": "false",
@@ -31422,7 +31437,7 @@
}
},
{
- "id": 20804,
+ "id": 20945,
"properties": {
"candles": "4",
"lit": "true",
@@ -31430,7 +31445,7 @@
}
},
{
- "id": 20805,
+ "id": 20946,
"properties": {
"candles": "4",
"lit": "true",
@@ -31438,7 +31453,7 @@
}
},
{
- "id": 20806,
+ "id": 20947,
"properties": {
"candles": "4",
"lit": "false",
@@ -31446,7 +31461,7 @@
}
},
{
- "id": 20807,
+ "id": 20948,
"properties": {
"candles": "4",
"lit": "false",
@@ -31464,14 +31479,14 @@
},
"states": [
{
- "id": 20882,
+ "id": 21023,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20883,
+ "id": 21024,
"properties": {
"lit": "false"
}
@@ -31482,7 +31497,7 @@
"states": [
{
"default": true,
- "id": 10599
+ "id": 10740
}
]
},
@@ -31490,7 +31505,7 @@
"states": [
{
"default": true,
- "id": 12599
+ "id": 12740
}
]
},
@@ -31498,7 +31513,7 @@
"states": [
{
"default": true,
- "id": 12615
+ "id": 12756
}
]
},
@@ -31514,25 +31529,25 @@
"states": [
{
"default": true,
- "id": 12571,
+ "id": 12712,
"properties": {
"facing": "north"
}
},
{
- "id": 12572,
+ "id": 12713,
"properties": {
"facing": "south"
}
},
{
- "id": 12573,
+ "id": 12714,
"properties": {
"facing": "west"
}
},
{
- "id": 12574,
+ "id": 12715,
"properties": {
"facing": "east"
}
@@ -32295,38 +32310,38 @@
},
"states": [
{
- "id": 12499,
+ "id": 12640,
"properties": {
"facing": "north"
}
},
{
- "id": 12500,
+ "id": 12641,
"properties": {
"facing": "east"
}
},
{
- "id": 12501,
+ "id": 12642,
"properties": {
"facing": "south"
}
},
{
- "id": 12502,
+ "id": 12643,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12503,
+ "id": 12644,
"properties": {
"facing": "up"
}
},
{
- "id": 12504,
+ "id": 12645,
"properties": {
"facing": "down"
}
@@ -32366,7 +32381,7 @@
},
"states": [
{
- "id": 9616,
+ "id": 9756,
"properties": {
"east": "true",
"north": "true",
@@ -32376,7 +32391,7 @@
}
},
{
- "id": 9617,
+ "id": 9757,
"properties": {
"east": "true",
"north": "true",
@@ -32386,7 +32401,7 @@
}
},
{
- "id": 9618,
+ "id": 9758,
"properties": {
"east": "true",
"north": "true",
@@ -32396,7 +32411,7 @@
}
},
{
- "id": 9619,
+ "id": 9759,
"properties": {
"east": "true",
"north": "true",
@@ -32406,7 +32421,7 @@
}
},
{
- "id": 9620,
+ "id": 9760,
"properties": {
"east": "true",
"north": "true",
@@ -32416,7 +32431,7 @@
}
},
{
- "id": 9621,
+ "id": 9761,
"properties": {
"east": "true",
"north": "true",
@@ -32426,7 +32441,7 @@
}
},
{
- "id": 9622,
+ "id": 9762,
"properties": {
"east": "true",
"north": "true",
@@ -32436,7 +32451,7 @@
}
},
{
- "id": 9623,
+ "id": 9763,
"properties": {
"east": "true",
"north": "true",
@@ -32446,7 +32461,7 @@
}
},
{
- "id": 9624,
+ "id": 9764,
"properties": {
"east": "true",
"north": "false",
@@ -32456,7 +32471,7 @@
}
},
{
- "id": 9625,
+ "id": 9765,
"properties": {
"east": "true",
"north": "false",
@@ -32466,7 +32481,7 @@
}
},
{
- "id": 9626,
+ "id": 9766,
"properties": {
"east": "true",
"north": "false",
@@ -32476,7 +32491,7 @@
}
},
{
- "id": 9627,
+ "id": 9767,
"properties": {
"east": "true",
"north": "false",
@@ -32486,7 +32501,7 @@
}
},
{
- "id": 9628,
+ "id": 9768,
"properties": {
"east": "true",
"north": "false",
@@ -32496,7 +32511,7 @@
}
},
{
- "id": 9629,
+ "id": 9769,
"properties": {
"east": "true",
"north": "false",
@@ -32506,7 +32521,7 @@
}
},
{
- "id": 9630,
+ "id": 9770,
"properties": {
"east": "true",
"north": "false",
@@ -32516,7 +32531,7 @@
}
},
{
- "id": 9631,
+ "id": 9771,
"properties": {
"east": "true",
"north": "false",
@@ -32526,7 +32541,7 @@
}
},
{
- "id": 9632,
+ "id": 9772,
"properties": {
"east": "false",
"north": "true",
@@ -32536,7 +32551,7 @@
}
},
{
- "id": 9633,
+ "id": 9773,
"properties": {
"east": "false",
"north": "true",
@@ -32546,7 +32561,7 @@
}
},
{
- "id": 9634,
+ "id": 9774,
"properties": {
"east": "false",
"north": "true",
@@ -32556,7 +32571,7 @@
}
},
{
- "id": 9635,
+ "id": 9775,
"properties": {
"east": "false",
"north": "true",
@@ -32566,7 +32581,7 @@
}
},
{
- "id": 9636,
+ "id": 9776,
"properties": {
"east": "false",
"north": "true",
@@ -32576,7 +32591,7 @@
}
},
{
- "id": 9637,
+ "id": 9777,
"properties": {
"east": "false",
"north": "true",
@@ -32586,7 +32601,7 @@
}
},
{
- "id": 9638,
+ "id": 9778,
"properties": {
"east": "false",
"north": "true",
@@ -32596,7 +32611,7 @@
}
},
{
- "id": 9639,
+ "id": 9779,
"properties": {
"east": "false",
"north": "true",
@@ -32606,7 +32621,7 @@
}
},
{
- "id": 9640,
+ "id": 9780,
"properties": {
"east": "false",
"north": "false",
@@ -32616,7 +32631,7 @@
}
},
{
- "id": 9641,
+ "id": 9781,
"properties": {
"east": "false",
"north": "false",
@@ -32626,7 +32641,7 @@
}
},
{
- "id": 9642,
+ "id": 9782,
"properties": {
"east": "false",
"north": "false",
@@ -32636,7 +32651,7 @@
}
},
{
- "id": 9643,
+ "id": 9783,
"properties": {
"east": "false",
"north": "false",
@@ -32646,7 +32661,7 @@
}
},
{
- "id": 9644,
+ "id": 9784,
"properties": {
"east": "false",
"north": "false",
@@ -32656,7 +32671,7 @@
}
},
{
- "id": 9645,
+ "id": 9785,
"properties": {
"east": "false",
"north": "false",
@@ -32666,7 +32681,7 @@
}
},
{
- "id": 9646,
+ "id": 9786,
"properties": {
"east": "false",
"north": "false",
@@ -32677,7 +32692,7 @@
},
{
"default": true,
- "id": 9647,
+ "id": 9787,
"properties": {
"east": "false",
"north": "false",
@@ -32692,7 +32707,7 @@
"states": [
{
"default": true,
- "id": 9228
+ "id": 9368
}
]
},
@@ -32708,25 +32723,25 @@
"states": [
{
"default": true,
- "id": 10922,
+ "id": 11063,
"properties": {
"facing": "north"
}
},
{
- "id": 10923,
+ "id": 11064,
"properties": {
"facing": "south"
}
},
{
- "id": 10924,
+ "id": 11065,
"properties": {
"facing": "west"
}
},
{
- "id": 10925,
+ "id": 11066,
"properties": {
"facing": "east"
}
@@ -32751,13 +32766,13 @@
"states": [
{
"default": true,
- "id": 12819,
+ "id": 12960,
"properties": {
"drag": "true"
}
},
{
- "id": 12820,
+ "id": 12961,
"properties": {
"drag": "false"
}
@@ -32774,13 +32789,13 @@
"states": [
{
"default": true,
- "id": 12686,
+ "id": 12827,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12687,
+ "id": 12828,
"properties": {
"waterlogged": "false"
}
@@ -32791,7 +32806,7 @@
"states": [
{
"default": true,
- "id": 12669
+ "id": 12810
}
]
},
@@ -32805,13 +32820,13 @@
"states": [
{
"default": true,
- "id": 12706,
+ "id": 12847,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12707,
+ "id": 12848,
"properties": {
"waterlogged": "false"
}
@@ -32834,56 +32849,56 @@
"states": [
{
"default": true,
- "id": 12768,
+ "id": 12909,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12769,
+ "id": 12910,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12770,
+ "id": 12911,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12771,
+ "id": 12912,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12772,
+ "id": 12913,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12773,
+ "id": 12914,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12774,
+ "id": 12915,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12775,
+ "id": 12916,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -32895,7 +32910,7 @@
"states": [
{
"default": true,
- "id": 20891
+ "id": 21032
}
]
},
@@ -33082,7 +33097,7 @@
"states": [
{
"default": true,
- "id": 20941
+ "id": 21082
}
]
},
@@ -33124,7 +33139,7 @@
},
"states": [
{
- "id": 21040,
+ "id": 21181,
"properties": {
"facing": "north",
"power": "0",
@@ -33134,1717 +33149,1717 @@
},
{
"default": true,
- "id": 21041,
- "properties": {
- "facing": "north",
- "power": "0",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21042,
- "properties": {
- "facing": "north",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21043,
- "properties": {
- "facing": "north",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21044,
- "properties": {
- "facing": "north",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21045,
- "properties": {
- "facing": "north",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21046,
- "properties": {
- "facing": "north",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21047,
- "properties": {
- "facing": "north",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21048,
- "properties": {
- "facing": "north",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21049,
- "properties": {
- "facing": "north",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21050,
- "properties": {
- "facing": "north",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21051,
- "properties": {
- "facing": "north",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21052,
- "properties": {
- "facing": "north",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21053,
- "properties": {
- "facing": "north",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21054,
- "properties": {
- "facing": "north",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21055,
- "properties": {
- "facing": "north",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21056,
- "properties": {
- "facing": "north",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21057,
- "properties": {
- "facing": "north",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21058,
- "properties": {
- "facing": "north",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21059,
- "properties": {
- "facing": "north",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21060,
- "properties": {
- "facing": "north",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21061,
- "properties": {
- "facing": "north",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21062,
- "properties": {
- "facing": "north",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21063,
- "properties": {
- "facing": "north",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21064,
- "properties": {
- "facing": "north",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21065,
- "properties": {
- "facing": "north",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21066,
- "properties": {
- "facing": "north",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21067,
- "properties": {
- "facing": "north",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21068,
- "properties": {
- "facing": "north",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21069,
- "properties": {
- "facing": "north",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21070,
- "properties": {
- "facing": "north",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21071,
- "properties": {
- "facing": "north",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21072,
- "properties": {
- "facing": "north",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21073,
- "properties": {
- "facing": "north",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21074,
- "properties": {
- "facing": "north",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21075,
- "properties": {
- "facing": "north",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21076,
- "properties": {
- "facing": "north",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21077,
- "properties": {
- "facing": "north",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21078,
- "properties": {
- "facing": "north",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21079,
- "properties": {
- "facing": "north",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21080,
- "properties": {
- "facing": "north",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21081,
- "properties": {
- "facing": "north",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21082,
- "properties": {
- "facing": "north",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21083,
- "properties": {
- "facing": "north",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21084,
- "properties": {
- "facing": "north",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21085,
- "properties": {
- "facing": "north",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21086,
- "properties": {
- "facing": "north",
- "power": "7",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21087,
- "properties": {
- "facing": "north",
- "power": "7",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21088,
- "properties": {
- "facing": "north",
- "power": "8",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21089,
- "properties": {
- "facing": "north",
- "power": "8",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21090,
- "properties": {
- "facing": "north",
- "power": "8",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21091,
- "properties": {
- "facing": "north",
- "power": "8",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21092,
- "properties": {
- "facing": "north",
- "power": "8",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21093,
- "properties": {
- "facing": "north",
- "power": "8",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21094,
- "properties": {
- "facing": "north",
- "power": "9",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21095,
- "properties": {
- "facing": "north",
- "power": "9",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21096,
- "properties": {
- "facing": "north",
- "power": "9",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21097,
- "properties": {
- "facing": "north",
- "power": "9",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21098,
- "properties": {
- "facing": "north",
- "power": "9",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21099,
- "properties": {
- "facing": "north",
- "power": "9",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21100,
- "properties": {
- "facing": "north",
- "power": "10",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21101,
- "properties": {
- "facing": "north",
- "power": "10",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21102,
- "properties": {
- "facing": "north",
- "power": "10",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21103,
- "properties": {
- "facing": "north",
- "power": "10",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21104,
- "properties": {
- "facing": "north",
- "power": "10",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21105,
- "properties": {
- "facing": "north",
- "power": "10",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21106,
- "properties": {
- "facing": "north",
- "power": "11",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21107,
- "properties": {
- "facing": "north",
- "power": "11",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21108,
- "properties": {
- "facing": "north",
- "power": "11",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21109,
- "properties": {
- "facing": "north",
- "power": "11",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21110,
- "properties": {
- "facing": "north",
- "power": "11",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21111,
- "properties": {
- "facing": "north",
- "power": "11",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21112,
- "properties": {
- "facing": "north",
- "power": "12",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21113,
- "properties": {
- "facing": "north",
- "power": "12",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21114,
- "properties": {
- "facing": "north",
- "power": "12",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21115,
- "properties": {
- "facing": "north",
- "power": "12",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21116,
- "properties": {
- "facing": "north",
- "power": "12",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21117,
- "properties": {
- "facing": "north",
- "power": "12",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21118,
- "properties": {
- "facing": "north",
- "power": "13",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21119,
- "properties": {
- "facing": "north",
- "power": "13",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21120,
- "properties": {
- "facing": "north",
- "power": "13",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21121,
- "properties": {
- "facing": "north",
- "power": "13",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21122,
- "properties": {
- "facing": "north",
- "power": "13",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21123,
- "properties": {
- "facing": "north",
- "power": "13",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21124,
- "properties": {
- "facing": "north",
- "power": "14",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21125,
- "properties": {
- "facing": "north",
- "power": "14",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21126,
- "properties": {
- "facing": "north",
- "power": "14",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21127,
- "properties": {
- "facing": "north",
- "power": "14",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21128,
- "properties": {
- "facing": "north",
- "power": "14",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21129,
- "properties": {
- "facing": "north",
- "power": "14",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21130,
- "properties": {
- "facing": "north",
- "power": "15",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21131,
- "properties": {
- "facing": "north",
- "power": "15",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21132,
- "properties": {
- "facing": "north",
- "power": "15",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21133,
- "properties": {
- "facing": "north",
- "power": "15",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21134,
- "properties": {
- "facing": "north",
- "power": "15",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21135,
- "properties": {
- "facing": "north",
- "power": "15",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21136,
- "properties": {
- "facing": "south",
- "power": "0",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21137,
- "properties": {
- "facing": "south",
- "power": "0",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21138,
- "properties": {
- "facing": "south",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21139,
- "properties": {
- "facing": "south",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21140,
- "properties": {
- "facing": "south",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21141,
- "properties": {
- "facing": "south",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21142,
- "properties": {
- "facing": "south",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21143,
- "properties": {
- "facing": "south",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21144,
- "properties": {
- "facing": "south",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21145,
- "properties": {
- "facing": "south",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21146,
- "properties": {
- "facing": "south",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21147,
- "properties": {
- "facing": "south",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21148,
- "properties": {
- "facing": "south",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21149,
- "properties": {
- "facing": "south",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21150,
- "properties": {
- "facing": "south",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21151,
- "properties": {
- "facing": "south",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21152,
- "properties": {
- "facing": "south",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21153,
- "properties": {
- "facing": "south",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21154,
- "properties": {
- "facing": "south",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21155,
- "properties": {
- "facing": "south",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21156,
- "properties": {
- "facing": "south",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21157,
- "properties": {
- "facing": "south",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21158,
- "properties": {
- "facing": "south",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21159,
- "properties": {
- "facing": "south",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21160,
- "properties": {
- "facing": "south",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21161,
- "properties": {
- "facing": "south",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21162,
- "properties": {
- "facing": "south",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21163,
- "properties": {
- "facing": "south",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21164,
- "properties": {
- "facing": "south",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21165,
- "properties": {
- "facing": "south",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21166,
- "properties": {
- "facing": "south",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21167,
- "properties": {
- "facing": "south",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21168,
- "properties": {
- "facing": "south",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21169,
- "properties": {
- "facing": "south",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21170,
- "properties": {
- "facing": "south",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21171,
- "properties": {
- "facing": "south",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21172,
- "properties": {
- "facing": "south",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21173,
- "properties": {
- "facing": "south",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21174,
- "properties": {
- "facing": "south",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21175,
- "properties": {
- "facing": "south",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21176,
- "properties": {
- "facing": "south",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21177,
- "properties": {
- "facing": "south",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21178,
- "properties": {
- "facing": "south",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21179,
- "properties": {
- "facing": "south",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21180,
- "properties": {
- "facing": "south",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21181,
- "properties": {
- "facing": "south",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
"id": 21182,
"properties": {
- "facing": "south",
- "power": "7",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "0",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21183,
"properties": {
- "facing": "south",
- "power": "7",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21184,
"properties": {
- "facing": "south",
- "power": "8",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21185,
"properties": {
- "facing": "south",
- "power": "8",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21186,
"properties": {
- "facing": "south",
- "power": "8",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21187,
"properties": {
- "facing": "south",
- "power": "8",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21188,
"properties": {
- "facing": "south",
- "power": "8",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21189,
"properties": {
- "facing": "south",
- "power": "8",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21190,
"properties": {
- "facing": "south",
- "power": "9",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21191,
"properties": {
- "facing": "south",
- "power": "9",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21192,
"properties": {
- "facing": "south",
- "power": "9",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21193,
"properties": {
- "facing": "south",
- "power": "9",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21194,
"properties": {
- "facing": "south",
- "power": "9",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21195,
"properties": {
- "facing": "south",
- "power": "9",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21196,
"properties": {
- "facing": "south",
- "power": "10",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21197,
"properties": {
- "facing": "south",
- "power": "10",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21198,
"properties": {
- "facing": "south",
- "power": "10",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21199,
"properties": {
- "facing": "south",
- "power": "10",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21200,
"properties": {
- "facing": "south",
- "power": "10",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21201,
"properties": {
- "facing": "south",
- "power": "10",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21202,
"properties": {
- "facing": "south",
- "power": "11",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21203,
"properties": {
- "facing": "south",
- "power": "11",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21204,
"properties": {
- "facing": "south",
- "power": "11",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21205,
"properties": {
- "facing": "south",
- "power": "11",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21206,
"properties": {
- "facing": "south",
- "power": "11",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21207,
"properties": {
- "facing": "south",
- "power": "11",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21208,
"properties": {
- "facing": "south",
- "power": "12",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21209,
"properties": {
- "facing": "south",
- "power": "12",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21210,
"properties": {
- "facing": "south",
- "power": "12",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21211,
"properties": {
- "facing": "south",
- "power": "12",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21212,
"properties": {
- "facing": "south",
- "power": "12",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21213,
"properties": {
- "facing": "south",
- "power": "12",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21214,
"properties": {
- "facing": "south",
- "power": "13",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21215,
"properties": {
- "facing": "south",
- "power": "13",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21216,
"properties": {
- "facing": "south",
- "power": "13",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21217,
"properties": {
- "facing": "south",
- "power": "13",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21218,
"properties": {
- "facing": "south",
- "power": "13",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21219,
"properties": {
- "facing": "south",
- "power": "13",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21220,
"properties": {
- "facing": "south",
- "power": "14",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21221,
"properties": {
- "facing": "south",
- "power": "14",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21222,
"properties": {
- "facing": "south",
- "power": "14",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21223,
"properties": {
- "facing": "south",
- "power": "14",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21224,
"properties": {
- "facing": "south",
- "power": "14",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21225,
"properties": {
- "facing": "south",
- "power": "14",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
}
},
{
"id": 21226,
"properties": {
- "facing": "south",
- "power": "15",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
}
},
{
"id": 21227,
"properties": {
- "facing": "south",
- "power": "15",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "7",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
}
},
{
"id": 21228,
"properties": {
- "facing": "south",
- "power": "15",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "7",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
}
},
{
"id": 21229,
"properties": {
- "facing": "south",
- "power": "15",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "north",
+ "power": "8",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21230,
"properties": {
- "facing": "south",
- "power": "15",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "north",
+ "power": "8",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21231,
+ "properties": {
+ "facing": "north",
+ "power": "8",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21232,
+ "properties": {
+ "facing": "north",
+ "power": "8",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21233,
+ "properties": {
+ "facing": "north",
+ "power": "8",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21234,
+ "properties": {
+ "facing": "north",
+ "power": "8",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21235,
+ "properties": {
+ "facing": "north",
+ "power": "9",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21236,
+ "properties": {
+ "facing": "north",
+ "power": "9",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21237,
+ "properties": {
+ "facing": "north",
+ "power": "9",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21238,
+ "properties": {
+ "facing": "north",
+ "power": "9",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21239,
+ "properties": {
+ "facing": "north",
+ "power": "9",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21240,
+ "properties": {
+ "facing": "north",
+ "power": "9",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21241,
+ "properties": {
+ "facing": "north",
+ "power": "10",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21242,
+ "properties": {
+ "facing": "north",
+ "power": "10",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21243,
+ "properties": {
+ "facing": "north",
+ "power": "10",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21244,
+ "properties": {
+ "facing": "north",
+ "power": "10",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21245,
+ "properties": {
+ "facing": "north",
+ "power": "10",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21246,
+ "properties": {
+ "facing": "north",
+ "power": "10",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21247,
+ "properties": {
+ "facing": "north",
+ "power": "11",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21248,
+ "properties": {
+ "facing": "north",
+ "power": "11",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21249,
+ "properties": {
+ "facing": "north",
+ "power": "11",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21250,
+ "properties": {
+ "facing": "north",
+ "power": "11",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21251,
+ "properties": {
+ "facing": "north",
+ "power": "11",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21252,
+ "properties": {
+ "facing": "north",
+ "power": "11",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21253,
+ "properties": {
+ "facing": "north",
+ "power": "12",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21254,
+ "properties": {
+ "facing": "north",
+ "power": "12",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21255,
+ "properties": {
+ "facing": "north",
+ "power": "12",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21256,
+ "properties": {
+ "facing": "north",
+ "power": "12",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21257,
+ "properties": {
+ "facing": "north",
+ "power": "12",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21258,
+ "properties": {
+ "facing": "north",
+ "power": "12",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21259,
+ "properties": {
+ "facing": "north",
+ "power": "13",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21260,
+ "properties": {
+ "facing": "north",
+ "power": "13",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21261,
+ "properties": {
+ "facing": "north",
+ "power": "13",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21262,
+ "properties": {
+ "facing": "north",
+ "power": "13",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21263,
+ "properties": {
+ "facing": "north",
+ "power": "13",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21264,
+ "properties": {
+ "facing": "north",
+ "power": "13",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21265,
+ "properties": {
+ "facing": "north",
+ "power": "14",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21266,
+ "properties": {
+ "facing": "north",
+ "power": "14",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21267,
+ "properties": {
+ "facing": "north",
+ "power": "14",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21268,
+ "properties": {
+ "facing": "north",
+ "power": "14",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21269,
+ "properties": {
+ "facing": "north",
+ "power": "14",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21270,
+ "properties": {
+ "facing": "north",
+ "power": "14",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21271,
+ "properties": {
+ "facing": "north",
+ "power": "15",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21272,
+ "properties": {
+ "facing": "north",
+ "power": "15",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21273,
+ "properties": {
+ "facing": "north",
+ "power": "15",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21274,
+ "properties": {
+ "facing": "north",
+ "power": "15",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21275,
+ "properties": {
+ "facing": "north",
+ "power": "15",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21276,
+ "properties": {
+ "facing": "north",
+ "power": "15",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21277,
+ "properties": {
+ "facing": "south",
+ "power": "0",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21278,
+ "properties": {
+ "facing": "south",
+ "power": "0",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21279,
+ "properties": {
+ "facing": "south",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21280,
+ "properties": {
+ "facing": "south",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21281,
+ "properties": {
+ "facing": "south",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21282,
+ "properties": {
+ "facing": "south",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21283,
+ "properties": {
+ "facing": "south",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21284,
+ "properties": {
+ "facing": "south",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21285,
+ "properties": {
+ "facing": "south",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21286,
+ "properties": {
+ "facing": "south",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21287,
+ "properties": {
+ "facing": "south",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21288,
+ "properties": {
+ "facing": "south",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21289,
+ "properties": {
+ "facing": "south",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21290,
+ "properties": {
+ "facing": "south",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21291,
+ "properties": {
+ "facing": "south",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21292,
+ "properties": {
+ "facing": "south",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21293,
+ "properties": {
+ "facing": "south",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21294,
+ "properties": {
+ "facing": "south",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21295,
+ "properties": {
+ "facing": "south",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21296,
+ "properties": {
+ "facing": "south",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21297,
+ "properties": {
+ "facing": "south",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21298,
+ "properties": {
+ "facing": "south",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21299,
+ "properties": {
+ "facing": "south",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21300,
+ "properties": {
+ "facing": "south",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21301,
+ "properties": {
+ "facing": "south",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21302,
+ "properties": {
+ "facing": "south",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21303,
+ "properties": {
+ "facing": "south",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21304,
+ "properties": {
+ "facing": "south",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21305,
+ "properties": {
+ "facing": "south",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21306,
+ "properties": {
+ "facing": "south",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21307,
+ "properties": {
+ "facing": "south",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21308,
+ "properties": {
+ "facing": "south",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21309,
+ "properties": {
+ "facing": "south",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21310,
+ "properties": {
+ "facing": "south",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21311,
+ "properties": {
+ "facing": "south",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21312,
+ "properties": {
+ "facing": "south",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21313,
+ "properties": {
+ "facing": "south",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21314,
+ "properties": {
+ "facing": "south",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21315,
+ "properties": {
+ "facing": "south",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21316,
+ "properties": {
+ "facing": "south",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21317,
+ "properties": {
+ "facing": "south",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21318,
+ "properties": {
+ "facing": "south",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21319,
+ "properties": {
+ "facing": "south",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21320,
+ "properties": {
+ "facing": "south",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21321,
+ "properties": {
+ "facing": "south",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21322,
+ "properties": {
+ "facing": "south",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21323,
+ "properties": {
+ "facing": "south",
+ "power": "7",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21324,
+ "properties": {
+ "facing": "south",
+ "power": "7",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21325,
+ "properties": {
+ "facing": "south",
+ "power": "8",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21326,
+ "properties": {
+ "facing": "south",
+ "power": "8",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21327,
+ "properties": {
+ "facing": "south",
+ "power": "8",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21328,
+ "properties": {
+ "facing": "south",
+ "power": "8",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21329,
+ "properties": {
+ "facing": "south",
+ "power": "8",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21330,
+ "properties": {
+ "facing": "south",
+ "power": "8",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21331,
+ "properties": {
+ "facing": "south",
+ "power": "9",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21332,
+ "properties": {
+ "facing": "south",
+ "power": "9",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21333,
+ "properties": {
+ "facing": "south",
+ "power": "9",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21334,
+ "properties": {
+ "facing": "south",
+ "power": "9",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21335,
+ "properties": {
+ "facing": "south",
+ "power": "9",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21336,
+ "properties": {
+ "facing": "south",
+ "power": "9",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21337,
+ "properties": {
+ "facing": "south",
+ "power": "10",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21338,
+ "properties": {
+ "facing": "south",
+ "power": "10",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21339,
+ "properties": {
+ "facing": "south",
+ "power": "10",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21340,
+ "properties": {
+ "facing": "south",
+ "power": "10",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21341,
+ "properties": {
+ "facing": "south",
+ "power": "10",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21342,
+ "properties": {
+ "facing": "south",
+ "power": "10",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21343,
+ "properties": {
+ "facing": "south",
+ "power": "11",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21344,
+ "properties": {
+ "facing": "south",
+ "power": "11",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21345,
+ "properties": {
+ "facing": "south",
+ "power": "11",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21346,
+ "properties": {
+ "facing": "south",
+ "power": "11",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21347,
+ "properties": {
+ "facing": "south",
+ "power": "11",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21348,
+ "properties": {
+ "facing": "south",
+ "power": "11",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21349,
+ "properties": {
+ "facing": "south",
+ "power": "12",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21350,
+ "properties": {
+ "facing": "south",
+ "power": "12",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21351,
+ "properties": {
+ "facing": "south",
+ "power": "12",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21352,
+ "properties": {
+ "facing": "south",
+ "power": "12",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21353,
+ "properties": {
+ "facing": "south",
+ "power": "12",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21354,
+ "properties": {
+ "facing": "south",
+ "power": "12",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21355,
+ "properties": {
+ "facing": "south",
+ "power": "13",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21356,
+ "properties": {
+ "facing": "south",
+ "power": "13",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21357,
+ "properties": {
+ "facing": "south",
+ "power": "13",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21358,
+ "properties": {
+ "facing": "south",
+ "power": "13",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21359,
+ "properties": {
+ "facing": "south",
+ "power": "13",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21360,
+ "properties": {
+ "facing": "south",
+ "power": "13",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21361,
+ "properties": {
+ "facing": "south",
+ "power": "14",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21362,
+ "properties": {
+ "facing": "south",
+ "power": "14",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21363,
+ "properties": {
+ "facing": "south",
+ "power": "14",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21364,
+ "properties": {
+ "facing": "south",
+ "power": "14",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21365,
+ "properties": {
+ "facing": "south",
+ "power": "14",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21366,
+ "properties": {
+ "facing": "south",
+ "power": "14",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21367,
+ "properties": {
+ "facing": "south",
+ "power": "15",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21368,
+ "properties": {
+ "facing": "south",
+ "power": "15",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21369,
+ "properties": {
+ "facing": "south",
+ "power": "15",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21370,
+ "properties": {
+ "facing": "south",
+ "power": "15",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21371,
+ "properties": {
+ "facing": "south",
+ "power": "15",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21372,
"properties": {
"facing": "south",
"power": "15",
@@ -34852,1295 +34867,1295 @@
"waterlogged": "false"
}
},
- {
- "id": 21232,
- "properties": {
- "facing": "west",
- "power": "0",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21233,
- "properties": {
- "facing": "west",
- "power": "0",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21234,
- "properties": {
- "facing": "west",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21235,
- "properties": {
- "facing": "west",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21236,
- "properties": {
- "facing": "west",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21237,
- "properties": {
- "facing": "west",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21238,
- "properties": {
- "facing": "west",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21239,
- "properties": {
- "facing": "west",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21240,
- "properties": {
- "facing": "west",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21241,
- "properties": {
- "facing": "west",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21242,
- "properties": {
- "facing": "west",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21243,
- "properties": {
- "facing": "west",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21244,
- "properties": {
- "facing": "west",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21245,
- "properties": {
- "facing": "west",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21246,
- "properties": {
- "facing": "west",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21247,
- "properties": {
- "facing": "west",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21248,
- "properties": {
- "facing": "west",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21249,
- "properties": {
- "facing": "west",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21250,
- "properties": {
- "facing": "west",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21251,
- "properties": {
- "facing": "west",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21252,
- "properties": {
- "facing": "west",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21253,
- "properties": {
- "facing": "west",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21254,
- "properties": {
- "facing": "west",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21255,
- "properties": {
- "facing": "west",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21256,
- "properties": {
- "facing": "west",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21257,
- "properties": {
- "facing": "west",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21258,
- "properties": {
- "facing": "west",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21259,
- "properties": {
- "facing": "west",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21260,
- "properties": {
- "facing": "west",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21261,
- "properties": {
- "facing": "west",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21262,
- "properties": {
- "facing": "west",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21263,
- "properties": {
- "facing": "west",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21264,
- "properties": {
- "facing": "west",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21265,
- "properties": {
- "facing": "west",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21266,
- "properties": {
- "facing": "west",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21267,
- "properties": {
- "facing": "west",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21268,
- "properties": {
- "facing": "west",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21269,
- "properties": {
- "facing": "west",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21270,
- "properties": {
- "facing": "west",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21271,
- "properties": {
- "facing": "west",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21272,
- "properties": {
- "facing": "west",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21273,
- "properties": {
- "facing": "west",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21274,
- "properties": {
- "facing": "west",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21275,
- "properties": {
- "facing": "west",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21276,
- "properties": {
- "facing": "west",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21277,
- "properties": {
- "facing": "west",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21278,
- "properties": {
- "facing": "west",
- "power": "7",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21279,
- "properties": {
- "facing": "west",
- "power": "7",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21280,
- "properties": {
- "facing": "west",
- "power": "8",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21281,
- "properties": {
- "facing": "west",
- "power": "8",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21282,
- "properties": {
- "facing": "west",
- "power": "8",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21283,
- "properties": {
- "facing": "west",
- "power": "8",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21284,
- "properties": {
- "facing": "west",
- "power": "8",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21285,
- "properties": {
- "facing": "west",
- "power": "8",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21286,
- "properties": {
- "facing": "west",
- "power": "9",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21287,
- "properties": {
- "facing": "west",
- "power": "9",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21288,
- "properties": {
- "facing": "west",
- "power": "9",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21289,
- "properties": {
- "facing": "west",
- "power": "9",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21290,
- "properties": {
- "facing": "west",
- "power": "9",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21291,
- "properties": {
- "facing": "west",
- "power": "9",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21292,
- "properties": {
- "facing": "west",
- "power": "10",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21293,
- "properties": {
- "facing": "west",
- "power": "10",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21294,
- "properties": {
- "facing": "west",
- "power": "10",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21295,
- "properties": {
- "facing": "west",
- "power": "10",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21296,
- "properties": {
- "facing": "west",
- "power": "10",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21297,
- "properties": {
- "facing": "west",
- "power": "10",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21298,
- "properties": {
- "facing": "west",
- "power": "11",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21299,
- "properties": {
- "facing": "west",
- "power": "11",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21300,
- "properties": {
- "facing": "west",
- "power": "11",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21301,
- "properties": {
- "facing": "west",
- "power": "11",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21302,
- "properties": {
- "facing": "west",
- "power": "11",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21303,
- "properties": {
- "facing": "west",
- "power": "11",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21304,
- "properties": {
- "facing": "west",
- "power": "12",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21305,
- "properties": {
- "facing": "west",
- "power": "12",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21306,
- "properties": {
- "facing": "west",
- "power": "12",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21307,
- "properties": {
- "facing": "west",
- "power": "12",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21308,
- "properties": {
- "facing": "west",
- "power": "12",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21309,
- "properties": {
- "facing": "west",
- "power": "12",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21310,
- "properties": {
- "facing": "west",
- "power": "13",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21311,
- "properties": {
- "facing": "west",
- "power": "13",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21312,
- "properties": {
- "facing": "west",
- "power": "13",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21313,
- "properties": {
- "facing": "west",
- "power": "13",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21314,
- "properties": {
- "facing": "west",
- "power": "13",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21315,
- "properties": {
- "facing": "west",
- "power": "13",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21316,
- "properties": {
- "facing": "west",
- "power": "14",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21317,
- "properties": {
- "facing": "west",
- "power": "14",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21318,
- "properties": {
- "facing": "west",
- "power": "14",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21319,
- "properties": {
- "facing": "west",
- "power": "14",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21320,
- "properties": {
- "facing": "west",
- "power": "14",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21321,
- "properties": {
- "facing": "west",
- "power": "14",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21322,
- "properties": {
- "facing": "west",
- "power": "15",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21323,
- "properties": {
- "facing": "west",
- "power": "15",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21324,
- "properties": {
- "facing": "west",
- "power": "15",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21325,
- "properties": {
- "facing": "west",
- "power": "15",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21326,
- "properties": {
- "facing": "west",
- "power": "15",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21327,
- "properties": {
- "facing": "west",
- "power": "15",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21328,
- "properties": {
- "facing": "east",
- "power": "0",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21329,
- "properties": {
- "facing": "east",
- "power": "0",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21330,
- "properties": {
- "facing": "east",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21331,
- "properties": {
- "facing": "east",
- "power": "0",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21332,
- "properties": {
- "facing": "east",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21333,
- "properties": {
- "facing": "east",
- "power": "0",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21334,
- "properties": {
- "facing": "east",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21335,
- "properties": {
- "facing": "east",
- "power": "1",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21336,
- "properties": {
- "facing": "east",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21337,
- "properties": {
- "facing": "east",
- "power": "1",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21338,
- "properties": {
- "facing": "east",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21339,
- "properties": {
- "facing": "east",
- "power": "1",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21340,
- "properties": {
- "facing": "east",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21341,
- "properties": {
- "facing": "east",
- "power": "2",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21342,
- "properties": {
- "facing": "east",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21343,
- "properties": {
- "facing": "east",
- "power": "2",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21344,
- "properties": {
- "facing": "east",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21345,
- "properties": {
- "facing": "east",
- "power": "2",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21346,
- "properties": {
- "facing": "east",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21347,
- "properties": {
- "facing": "east",
- "power": "3",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21348,
- "properties": {
- "facing": "east",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21349,
- "properties": {
- "facing": "east",
- "power": "3",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21350,
- "properties": {
- "facing": "east",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21351,
- "properties": {
- "facing": "east",
- "power": "3",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21352,
- "properties": {
- "facing": "east",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21353,
- "properties": {
- "facing": "east",
- "power": "4",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21354,
- "properties": {
- "facing": "east",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21355,
- "properties": {
- "facing": "east",
- "power": "4",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21356,
- "properties": {
- "facing": "east",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21357,
- "properties": {
- "facing": "east",
- "power": "4",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21358,
- "properties": {
- "facing": "east",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21359,
- "properties": {
- "facing": "east",
- "power": "5",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21360,
- "properties": {
- "facing": "east",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21361,
- "properties": {
- "facing": "east",
- "power": "5",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21362,
- "properties": {
- "facing": "east",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21363,
- "properties": {
- "facing": "east",
- "power": "5",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21364,
- "properties": {
- "facing": "east",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21365,
- "properties": {
- "facing": "east",
- "power": "6",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21366,
- "properties": {
- "facing": "east",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
- {
- "id": 21367,
- "properties": {
- "facing": "east",
- "power": "6",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
- }
- },
- {
- "id": 21368,
- "properties": {
- "facing": "east",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
- }
- },
- {
- "id": 21369,
- "properties": {
- "facing": "east",
- "power": "6",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "false"
- }
- },
- {
- "id": 21370,
- "properties": {
- "facing": "east",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "true"
- }
- },
- {
- "id": 21371,
- "properties": {
- "facing": "east",
- "power": "7",
- "sculk_sensor_phase": "inactive",
- "waterlogged": "false"
- }
- },
- {
- "id": 21372,
- "properties": {
- "facing": "east",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "true"
- }
- },
{
"id": 21373,
"properties": {
- "facing": "east",
- "power": "7",
- "sculk_sensor_phase": "active",
- "waterlogged": "false"
+ "facing": "west",
+ "power": "0",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
}
},
{
"id": 21374,
"properties": {
- "facing": "east",
- "power": "7",
- "sculk_sensor_phase": "cooldown",
- "waterlogged": "true"
+ "facing": "west",
+ "power": "0",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
}
},
{
"id": 21375,
+ "properties": {
+ "facing": "west",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21376,
+ "properties": {
+ "facing": "west",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21377,
+ "properties": {
+ "facing": "west",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21378,
+ "properties": {
+ "facing": "west",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21379,
+ "properties": {
+ "facing": "west",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21380,
+ "properties": {
+ "facing": "west",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21381,
+ "properties": {
+ "facing": "west",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21382,
+ "properties": {
+ "facing": "west",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21383,
+ "properties": {
+ "facing": "west",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21384,
+ "properties": {
+ "facing": "west",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21385,
+ "properties": {
+ "facing": "west",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21386,
+ "properties": {
+ "facing": "west",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21387,
+ "properties": {
+ "facing": "west",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21388,
+ "properties": {
+ "facing": "west",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21389,
+ "properties": {
+ "facing": "west",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21390,
+ "properties": {
+ "facing": "west",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21391,
+ "properties": {
+ "facing": "west",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21392,
+ "properties": {
+ "facing": "west",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21393,
+ "properties": {
+ "facing": "west",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21394,
+ "properties": {
+ "facing": "west",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21395,
+ "properties": {
+ "facing": "west",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21396,
+ "properties": {
+ "facing": "west",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21397,
+ "properties": {
+ "facing": "west",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21398,
+ "properties": {
+ "facing": "west",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21399,
+ "properties": {
+ "facing": "west",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21400,
+ "properties": {
+ "facing": "west",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21401,
+ "properties": {
+ "facing": "west",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21402,
+ "properties": {
+ "facing": "west",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21403,
+ "properties": {
+ "facing": "west",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21404,
+ "properties": {
+ "facing": "west",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21405,
+ "properties": {
+ "facing": "west",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21406,
+ "properties": {
+ "facing": "west",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21407,
+ "properties": {
+ "facing": "west",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21408,
+ "properties": {
+ "facing": "west",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21409,
+ "properties": {
+ "facing": "west",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21410,
+ "properties": {
+ "facing": "west",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21411,
+ "properties": {
+ "facing": "west",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21412,
+ "properties": {
+ "facing": "west",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21413,
+ "properties": {
+ "facing": "west",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21414,
+ "properties": {
+ "facing": "west",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21415,
+ "properties": {
+ "facing": "west",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21416,
+ "properties": {
+ "facing": "west",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21417,
+ "properties": {
+ "facing": "west",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21418,
+ "properties": {
+ "facing": "west",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21419,
+ "properties": {
+ "facing": "west",
+ "power": "7",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21420,
+ "properties": {
+ "facing": "west",
+ "power": "7",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21421,
+ "properties": {
+ "facing": "west",
+ "power": "8",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21422,
+ "properties": {
+ "facing": "west",
+ "power": "8",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21423,
+ "properties": {
+ "facing": "west",
+ "power": "8",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21424,
+ "properties": {
+ "facing": "west",
+ "power": "8",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21425,
+ "properties": {
+ "facing": "west",
+ "power": "8",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21426,
+ "properties": {
+ "facing": "west",
+ "power": "8",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21427,
+ "properties": {
+ "facing": "west",
+ "power": "9",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21428,
+ "properties": {
+ "facing": "west",
+ "power": "9",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21429,
+ "properties": {
+ "facing": "west",
+ "power": "9",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21430,
+ "properties": {
+ "facing": "west",
+ "power": "9",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21431,
+ "properties": {
+ "facing": "west",
+ "power": "9",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21432,
+ "properties": {
+ "facing": "west",
+ "power": "9",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21433,
+ "properties": {
+ "facing": "west",
+ "power": "10",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21434,
+ "properties": {
+ "facing": "west",
+ "power": "10",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21435,
+ "properties": {
+ "facing": "west",
+ "power": "10",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21436,
+ "properties": {
+ "facing": "west",
+ "power": "10",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21437,
+ "properties": {
+ "facing": "west",
+ "power": "10",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21438,
+ "properties": {
+ "facing": "west",
+ "power": "10",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21439,
+ "properties": {
+ "facing": "west",
+ "power": "11",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21440,
+ "properties": {
+ "facing": "west",
+ "power": "11",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21441,
+ "properties": {
+ "facing": "west",
+ "power": "11",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21442,
+ "properties": {
+ "facing": "west",
+ "power": "11",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21443,
+ "properties": {
+ "facing": "west",
+ "power": "11",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21444,
+ "properties": {
+ "facing": "west",
+ "power": "11",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21445,
+ "properties": {
+ "facing": "west",
+ "power": "12",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21446,
+ "properties": {
+ "facing": "west",
+ "power": "12",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21447,
+ "properties": {
+ "facing": "west",
+ "power": "12",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21448,
+ "properties": {
+ "facing": "west",
+ "power": "12",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21449,
+ "properties": {
+ "facing": "west",
+ "power": "12",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21450,
+ "properties": {
+ "facing": "west",
+ "power": "12",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21451,
+ "properties": {
+ "facing": "west",
+ "power": "13",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21452,
+ "properties": {
+ "facing": "west",
+ "power": "13",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21453,
+ "properties": {
+ "facing": "west",
+ "power": "13",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21454,
+ "properties": {
+ "facing": "west",
+ "power": "13",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21455,
+ "properties": {
+ "facing": "west",
+ "power": "13",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21456,
+ "properties": {
+ "facing": "west",
+ "power": "13",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21457,
+ "properties": {
+ "facing": "west",
+ "power": "14",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21458,
+ "properties": {
+ "facing": "west",
+ "power": "14",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21459,
+ "properties": {
+ "facing": "west",
+ "power": "14",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21460,
+ "properties": {
+ "facing": "west",
+ "power": "14",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21461,
+ "properties": {
+ "facing": "west",
+ "power": "14",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21462,
+ "properties": {
+ "facing": "west",
+ "power": "14",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21463,
+ "properties": {
+ "facing": "west",
+ "power": "15",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21464,
+ "properties": {
+ "facing": "west",
+ "power": "15",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21465,
+ "properties": {
+ "facing": "west",
+ "power": "15",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21466,
+ "properties": {
+ "facing": "west",
+ "power": "15",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21467,
+ "properties": {
+ "facing": "west",
+ "power": "15",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21468,
+ "properties": {
+ "facing": "west",
+ "power": "15",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21469,
+ "properties": {
+ "facing": "east",
+ "power": "0",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21470,
+ "properties": {
+ "facing": "east",
+ "power": "0",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21471,
+ "properties": {
+ "facing": "east",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21472,
+ "properties": {
+ "facing": "east",
+ "power": "0",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21473,
+ "properties": {
+ "facing": "east",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21474,
+ "properties": {
+ "facing": "east",
+ "power": "0",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21475,
+ "properties": {
+ "facing": "east",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21476,
+ "properties": {
+ "facing": "east",
+ "power": "1",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21477,
+ "properties": {
+ "facing": "east",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21478,
+ "properties": {
+ "facing": "east",
+ "power": "1",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21479,
+ "properties": {
+ "facing": "east",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21480,
+ "properties": {
+ "facing": "east",
+ "power": "1",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21481,
+ "properties": {
+ "facing": "east",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21482,
+ "properties": {
+ "facing": "east",
+ "power": "2",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21483,
+ "properties": {
+ "facing": "east",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21484,
+ "properties": {
+ "facing": "east",
+ "power": "2",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21485,
+ "properties": {
+ "facing": "east",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21486,
+ "properties": {
+ "facing": "east",
+ "power": "2",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21487,
+ "properties": {
+ "facing": "east",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21488,
+ "properties": {
+ "facing": "east",
+ "power": "3",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21489,
+ "properties": {
+ "facing": "east",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21490,
+ "properties": {
+ "facing": "east",
+ "power": "3",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21491,
+ "properties": {
+ "facing": "east",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21492,
+ "properties": {
+ "facing": "east",
+ "power": "3",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21493,
+ "properties": {
+ "facing": "east",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21494,
+ "properties": {
+ "facing": "east",
+ "power": "4",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21495,
+ "properties": {
+ "facing": "east",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21496,
+ "properties": {
+ "facing": "east",
+ "power": "4",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21497,
+ "properties": {
+ "facing": "east",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21498,
+ "properties": {
+ "facing": "east",
+ "power": "4",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21499,
+ "properties": {
+ "facing": "east",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21500,
+ "properties": {
+ "facing": "east",
+ "power": "5",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21501,
+ "properties": {
+ "facing": "east",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21502,
+ "properties": {
+ "facing": "east",
+ "power": "5",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21503,
+ "properties": {
+ "facing": "east",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21504,
+ "properties": {
+ "facing": "east",
+ "power": "5",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21505,
+ "properties": {
+ "facing": "east",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21506,
+ "properties": {
+ "facing": "east",
+ "power": "6",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21507,
+ "properties": {
+ "facing": "east",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21508,
+ "properties": {
+ "facing": "east",
+ "power": "6",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21509,
+ "properties": {
+ "facing": "east",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21510,
+ "properties": {
+ "facing": "east",
+ "power": "6",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21511,
+ "properties": {
+ "facing": "east",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21512,
+ "properties": {
+ "facing": "east",
+ "power": "7",
+ "sculk_sensor_phase": "inactive",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21513,
+ "properties": {
+ "facing": "east",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21514,
+ "properties": {
+ "facing": "east",
+ "power": "7",
+ "sculk_sensor_phase": "active",
+ "waterlogged": "false"
+ }
+ },
+ {
+ "id": 21515,
+ "properties": {
+ "facing": "east",
+ "power": "7",
+ "sculk_sensor_phase": "cooldown",
+ "waterlogged": "true"
+ }
+ },
+ {
+ "id": 21516,
"properties": {
"facing": "east",
"power": "7",
@@ -36149,7 +36164,7 @@
}
},
{
- "id": 21376,
+ "id": 21517,
"properties": {
"facing": "east",
"power": "8",
@@ -36158,7 +36173,7 @@
}
},
{
- "id": 21377,
+ "id": 21518,
"properties": {
"facing": "east",
"power": "8",
@@ -36167,7 +36182,7 @@
}
},
{
- "id": 21378,
+ "id": 21519,
"properties": {
"facing": "east",
"power": "8",
@@ -36176,7 +36191,7 @@
}
},
{
- "id": 21379,
+ "id": 21520,
"properties": {
"facing": "east",
"power": "8",
@@ -36185,7 +36200,7 @@
}
},
{
- "id": 21380,
+ "id": 21521,
"properties": {
"facing": "east",
"power": "8",
@@ -36194,7 +36209,7 @@
}
},
{
- "id": 21381,
+ "id": 21522,
"properties": {
"facing": "east",
"power": "8",
@@ -36203,7 +36218,7 @@
}
},
{
- "id": 21382,
+ "id": 21523,
"properties": {
"facing": "east",
"power": "9",
@@ -36212,7 +36227,7 @@
}
},
{
- "id": 21383,
+ "id": 21524,
"properties": {
"facing": "east",
"power": "9",
@@ -36221,7 +36236,7 @@
}
},
{
- "id": 21384,
+ "id": 21525,
"properties": {
"facing": "east",
"power": "9",
@@ -36230,7 +36245,7 @@
}
},
{
- "id": 21385,
+ "id": 21526,
"properties": {
"facing": "east",
"power": "9",
@@ -36239,7 +36254,7 @@
}
},
{
- "id": 21386,
+ "id": 21527,
"properties": {
"facing": "east",
"power": "9",
@@ -36248,7 +36263,7 @@
}
},
{
- "id": 21387,
+ "id": 21528,
"properties": {
"facing": "east",
"power": "9",
@@ -36257,7 +36272,7 @@
}
},
{
- "id": 21388,
+ "id": 21529,
"properties": {
"facing": "east",
"power": "10",
@@ -36266,7 +36281,7 @@
}
},
{
- "id": 21389,
+ "id": 21530,
"properties": {
"facing": "east",
"power": "10",
@@ -36275,7 +36290,7 @@
}
},
{
- "id": 21390,
+ "id": 21531,
"properties": {
"facing": "east",
"power": "10",
@@ -36284,7 +36299,7 @@
}
},
{
- "id": 21391,
+ "id": 21532,
"properties": {
"facing": "east",
"power": "10",
@@ -36293,7 +36308,7 @@
}
},
{
- "id": 21392,
+ "id": 21533,
"properties": {
"facing": "east",
"power": "10",
@@ -36302,7 +36317,7 @@
}
},
{
- "id": 21393,
+ "id": 21534,
"properties": {
"facing": "east",
"power": "10",
@@ -36311,7 +36326,7 @@
}
},
{
- "id": 21394,
+ "id": 21535,
"properties": {
"facing": "east",
"power": "11",
@@ -36320,7 +36335,7 @@
}
},
{
- "id": 21395,
+ "id": 21536,
"properties": {
"facing": "east",
"power": "11",
@@ -36329,7 +36344,7 @@
}
},
{
- "id": 21396,
+ "id": 21537,
"properties": {
"facing": "east",
"power": "11",
@@ -36338,7 +36353,7 @@
}
},
{
- "id": 21397,
+ "id": 21538,
"properties": {
"facing": "east",
"power": "11",
@@ -36347,7 +36362,7 @@
}
},
{
- "id": 21398,
+ "id": 21539,
"properties": {
"facing": "east",
"power": "11",
@@ -36356,7 +36371,7 @@
}
},
{
- "id": 21399,
+ "id": 21540,
"properties": {
"facing": "east",
"power": "11",
@@ -36365,7 +36380,7 @@
}
},
{
- "id": 21400,
+ "id": 21541,
"properties": {
"facing": "east",
"power": "12",
@@ -36374,7 +36389,7 @@
}
},
{
- "id": 21401,
+ "id": 21542,
"properties": {
"facing": "east",
"power": "12",
@@ -36383,7 +36398,7 @@
}
},
{
- "id": 21402,
+ "id": 21543,
"properties": {
"facing": "east",
"power": "12",
@@ -36392,7 +36407,7 @@
}
},
{
- "id": 21403,
+ "id": 21544,
"properties": {
"facing": "east",
"power": "12",
@@ -36401,7 +36416,7 @@
}
},
{
- "id": 21404,
+ "id": 21545,
"properties": {
"facing": "east",
"power": "12",
@@ -36410,7 +36425,7 @@
}
},
{
- "id": 21405,
+ "id": 21546,
"properties": {
"facing": "east",
"power": "12",
@@ -36419,7 +36434,7 @@
}
},
{
- "id": 21406,
+ "id": 21547,
"properties": {
"facing": "east",
"power": "13",
@@ -36428,7 +36443,7 @@
}
},
{
- "id": 21407,
+ "id": 21548,
"properties": {
"facing": "east",
"power": "13",
@@ -36437,7 +36452,7 @@
}
},
{
- "id": 21408,
+ "id": 21549,
"properties": {
"facing": "east",
"power": "13",
@@ -36446,7 +36461,7 @@
}
},
{
- "id": 21409,
+ "id": 21550,
"properties": {
"facing": "east",
"power": "13",
@@ -36455,7 +36470,7 @@
}
},
{
- "id": 21410,
+ "id": 21551,
"properties": {
"facing": "east",
"power": "13",
@@ -36464,7 +36479,7 @@
}
},
{
- "id": 21411,
+ "id": 21552,
"properties": {
"facing": "east",
"power": "13",
@@ -36473,7 +36488,7 @@
}
},
{
- "id": 21412,
+ "id": 21553,
"properties": {
"facing": "east",
"power": "14",
@@ -36482,7 +36497,7 @@
}
},
{
- "id": 21413,
+ "id": 21554,
"properties": {
"facing": "east",
"power": "14",
@@ -36491,7 +36506,7 @@
}
},
{
- "id": 21414,
+ "id": 21555,
"properties": {
"facing": "east",
"power": "14",
@@ -36500,7 +36515,7 @@
}
},
{
- "id": 21415,
+ "id": 21556,
"properties": {
"facing": "east",
"power": "14",
@@ -36509,7 +36524,7 @@
}
},
{
- "id": 21416,
+ "id": 21557,
"properties": {
"facing": "east",
"power": "14",
@@ -36518,7 +36533,7 @@
}
},
{
- "id": 21417,
+ "id": 21558,
"properties": {
"facing": "east",
"power": "14",
@@ -36527,7 +36542,7 @@
}
},
{
- "id": 21418,
+ "id": 21559,
"properties": {
"facing": "east",
"power": "15",
@@ -36536,7 +36551,7 @@
}
},
{
- "id": 21419,
+ "id": 21560,
"properties": {
"facing": "east",
"power": "15",
@@ -36545,7 +36560,7 @@
}
},
{
- "id": 21420,
+ "id": 21561,
"properties": {
"facing": "east",
"power": "15",
@@ -36554,7 +36569,7 @@
}
},
{
- "id": 21421,
+ "id": 21562,
"properties": {
"facing": "east",
"power": "15",
@@ -36563,7 +36578,7 @@
}
},
{
- "id": 21422,
+ "id": 21563,
"properties": {
"facing": "east",
"power": "15",
@@ -36572,7 +36587,7 @@
}
},
{
- "id": 21423,
+ "id": 21564,
"properties": {
"facing": "east",
"power": "15",
@@ -36605,7 +36620,7 @@
},
"states": [
{
- "id": 18370,
+ "id": 18511,
"properties": {
"facing": "north",
"lit": "true",
@@ -36614,7 +36629,7 @@
}
},
{
- "id": 18371,
+ "id": 18512,
"properties": {
"facing": "north",
"lit": "true",
@@ -36623,7 +36638,7 @@
}
},
{
- "id": 18372,
+ "id": 18513,
"properties": {
"facing": "north",
"lit": "true",
@@ -36633,7 +36648,7 @@
},
{
"default": true,
- "id": 18373,
+ "id": 18514,
"properties": {
"facing": "north",
"lit": "true",
@@ -36642,7 +36657,7 @@
}
},
{
- "id": 18374,
+ "id": 18515,
"properties": {
"facing": "north",
"lit": "false",
@@ -36651,7 +36666,7 @@
}
},
{
- "id": 18375,
+ "id": 18516,
"properties": {
"facing": "north",
"lit": "false",
@@ -36660,7 +36675,7 @@
}
},
{
- "id": 18376,
+ "id": 18517,
"properties": {
"facing": "north",
"lit": "false",
@@ -36669,7 +36684,7 @@
}
},
{
- "id": 18377,
+ "id": 18518,
"properties": {
"facing": "north",
"lit": "false",
@@ -36678,7 +36693,7 @@
}
},
{
- "id": 18378,
+ "id": 18519,
"properties": {
"facing": "south",
"lit": "true",
@@ -36687,7 +36702,7 @@
}
},
{
- "id": 18379,
+ "id": 18520,
"properties": {
"facing": "south",
"lit": "true",
@@ -36696,7 +36711,7 @@
}
},
{
- "id": 18380,
+ "id": 18521,
"properties": {
"facing": "south",
"lit": "true",
@@ -36705,7 +36720,7 @@
}
},
{
- "id": 18381,
+ "id": 18522,
"properties": {
"facing": "south",
"lit": "true",
@@ -36714,7 +36729,7 @@
}
},
{
- "id": 18382,
+ "id": 18523,
"properties": {
"facing": "south",
"lit": "false",
@@ -36723,7 +36738,7 @@
}
},
{
- "id": 18383,
+ "id": 18524,
"properties": {
"facing": "south",
"lit": "false",
@@ -36732,7 +36747,7 @@
}
},
{
- "id": 18384,
+ "id": 18525,
"properties": {
"facing": "south",
"lit": "false",
@@ -36741,7 +36756,7 @@
}
},
{
- "id": 18385,
+ "id": 18526,
"properties": {
"facing": "south",
"lit": "false",
@@ -36750,7 +36765,7 @@
}
},
{
- "id": 18386,
+ "id": 18527,
"properties": {
"facing": "west",
"lit": "true",
@@ -36759,7 +36774,7 @@
}
},
{
- "id": 18387,
+ "id": 18528,
"properties": {
"facing": "west",
"lit": "true",
@@ -36768,7 +36783,7 @@
}
},
{
- "id": 18388,
+ "id": 18529,
"properties": {
"facing": "west",
"lit": "true",
@@ -36777,7 +36792,7 @@
}
},
{
- "id": 18389,
+ "id": 18530,
"properties": {
"facing": "west",
"lit": "true",
@@ -36786,7 +36801,7 @@
}
},
{
- "id": 18390,
+ "id": 18531,
"properties": {
"facing": "west",
"lit": "false",
@@ -36795,7 +36810,7 @@
}
},
{
- "id": 18391,
+ "id": 18532,
"properties": {
"facing": "west",
"lit": "false",
@@ -36804,7 +36819,7 @@
}
},
{
- "id": 18392,
+ "id": 18533,
"properties": {
"facing": "west",
"lit": "false",
@@ -36813,7 +36828,7 @@
}
},
{
- "id": 18393,
+ "id": 18534,
"properties": {
"facing": "west",
"lit": "false",
@@ -36822,7 +36837,7 @@
}
},
{
- "id": 18394,
+ "id": 18535,
"properties": {
"facing": "east",
"lit": "true",
@@ -36831,7 +36846,7 @@
}
},
{
- "id": 18395,
+ "id": 18536,
"properties": {
"facing": "east",
"lit": "true",
@@ -36840,7 +36855,7 @@
}
},
{
- "id": 18396,
+ "id": 18537,
"properties": {
"facing": "east",
"lit": "true",
@@ -36849,7 +36864,7 @@
}
},
{
- "id": 18397,
+ "id": 18538,
"properties": {
"facing": "east",
"lit": "true",
@@ -36858,7 +36873,7 @@
}
},
{
- "id": 18398,
+ "id": 18539,
"properties": {
"facing": "east",
"lit": "false",
@@ -36867,7 +36882,7 @@
}
},
{
- "id": 18399,
+ "id": 18540,
"properties": {
"facing": "east",
"lit": "false",
@@ -36876,7 +36891,7 @@
}
},
{
- "id": 18400,
+ "id": 18541,
"properties": {
"facing": "east",
"lit": "false",
@@ -36885,7 +36900,7 @@
}
},
{
- "id": 18401,
+ "id": 18542,
"properties": {
"facing": "east",
"lit": "false",
@@ -36914,7 +36929,7 @@
},
"states": [
{
- "id": 20584,
+ "id": 20725,
"properties": {
"candles": "1",
"lit": "true",
@@ -36922,7 +36937,7 @@
}
},
{
- "id": 20585,
+ "id": 20726,
"properties": {
"candles": "1",
"lit": "true",
@@ -36930,7 +36945,7 @@
}
},
{
- "id": 20586,
+ "id": 20727,
"properties": {
"candles": "1",
"lit": "false",
@@ -36939,7 +36954,7 @@
},
{
"default": true,
- "id": 20587,
+ "id": 20728,
"properties": {
"candles": "1",
"lit": "false",
@@ -36947,7 +36962,7 @@
}
},
{
- "id": 20588,
+ "id": 20729,
"properties": {
"candles": "2",
"lit": "true",
@@ -36955,7 +36970,7 @@
}
},
{
- "id": 20589,
+ "id": 20730,
"properties": {
"candles": "2",
"lit": "true",
@@ -36963,7 +36978,7 @@
}
},
{
- "id": 20590,
+ "id": 20731,
"properties": {
"candles": "2",
"lit": "false",
@@ -36971,7 +36986,7 @@
}
},
{
- "id": 20591,
+ "id": 20732,
"properties": {
"candles": "2",
"lit": "false",
@@ -36979,7 +36994,7 @@
}
},
{
- "id": 20592,
+ "id": 20733,
"properties": {
"candles": "3",
"lit": "true",
@@ -36987,7 +37002,7 @@
}
},
{
- "id": 20593,
+ "id": 20734,
"properties": {
"candles": "3",
"lit": "true",
@@ -36995,7 +37010,7 @@
}
},
{
- "id": 20594,
+ "id": 20735,
"properties": {
"candles": "3",
"lit": "false",
@@ -37003,7 +37018,7 @@
}
},
{
- "id": 20595,
+ "id": 20736,
"properties": {
"candles": "3",
"lit": "false",
@@ -37011,7 +37026,7 @@
}
},
{
- "id": 20596,
+ "id": 20737,
"properties": {
"candles": "4",
"lit": "true",
@@ -37019,7 +37034,7 @@
}
},
{
- "id": 20597,
+ "id": 20738,
"properties": {
"candles": "4",
"lit": "true",
@@ -37027,7 +37042,7 @@
}
},
{
- "id": 20598,
+ "id": 20739,
"properties": {
"candles": "4",
"lit": "false",
@@ -37035,7 +37050,7 @@
}
},
{
- "id": 20599,
+ "id": 20740,
"properties": {
"candles": "4",
"lit": "false",
@@ -37053,14 +37068,14 @@
},
"states": [
{
- "id": 20856,
+ "id": 20997,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20857,
+ "id": 20998,
"properties": {
"lit": "false"
}
@@ -37136,7 +37151,7 @@
"states": [
{
"default": true,
- "id": 18295
+ "id": 18436
}
]
},
@@ -37189,7 +37204,7 @@
"states": [
{
"default": true,
- "id": 12818
+ "id": 12959
}
]
},
@@ -37230,7 +37245,7 @@
},
"states": [
{
- "id": 22314,
+ "id": 22455,
"properties": {
"age": "0",
"berries": "true"
@@ -37238,357 +37253,357 @@
},
{
"default": true,
- "id": 22315,
+ "id": 22456,
"properties": {
"age": "0",
"berries": "false"
}
},
{
- "id": 22316,
+ "id": 22457,
"properties": {
"age": "1",
"berries": "true"
}
},
{
- "id": 22317,
+ "id": 22458,
"properties": {
"age": "1",
"berries": "false"
}
},
{
- "id": 22318,
+ "id": 22459,
"properties": {
"age": "2",
"berries": "true"
}
},
{
- "id": 22319,
+ "id": 22460,
"properties": {
"age": "2",
"berries": "false"
}
},
{
- "id": 22320,
+ "id": 22461,
"properties": {
"age": "3",
"berries": "true"
}
},
{
- "id": 22321,
+ "id": 22462,
"properties": {
"age": "3",
"berries": "false"
}
},
{
- "id": 22322,
+ "id": 22463,
"properties": {
"age": "4",
"berries": "true"
}
},
{
- "id": 22323,
+ "id": 22464,
"properties": {
"age": "4",
"berries": "false"
}
},
{
- "id": 22324,
+ "id": 22465,
"properties": {
"age": "5",
"berries": "true"
}
},
{
- "id": 22325,
+ "id": 22466,
"properties": {
"age": "5",
"berries": "false"
}
},
{
- "id": 22326,
+ "id": 22467,
"properties": {
"age": "6",
"berries": "true"
}
},
{
- "id": 22327,
+ "id": 22468,
"properties": {
"age": "6",
"berries": "false"
}
},
{
- "id": 22328,
+ "id": 22469,
"properties": {
"age": "7",
"berries": "true"
}
},
{
- "id": 22329,
+ "id": 22470,
"properties": {
"age": "7",
"berries": "false"
}
},
{
- "id": 22330,
+ "id": 22471,
"properties": {
"age": "8",
"berries": "true"
}
},
{
- "id": 22331,
+ "id": 22472,
"properties": {
"age": "8",
"berries": "false"
}
},
{
- "id": 22332,
+ "id": 22473,
"properties": {
"age": "9",
"berries": "true"
}
},
{
- "id": 22333,
+ "id": 22474,
"properties": {
"age": "9",
"berries": "false"
}
},
{
- "id": 22334,
+ "id": 22475,
"properties": {
"age": "10",
"berries": "true"
}
},
{
- "id": 22335,
+ "id": 22476,
"properties": {
"age": "10",
"berries": "false"
}
},
{
- "id": 22336,
+ "id": 22477,
"properties": {
"age": "11",
"berries": "true"
}
},
{
- "id": 22337,
+ "id": 22478,
"properties": {
"age": "11",
"berries": "false"
}
},
{
- "id": 22338,
+ "id": 22479,
"properties": {
"age": "12",
"berries": "true"
}
},
{
- "id": 22339,
+ "id": 22480,
"properties": {
"age": "12",
"berries": "false"
}
},
{
- "id": 22340,
+ "id": 22481,
"properties": {
"age": "13",
"berries": "true"
}
},
{
- "id": 22341,
+ "id": 22482,
"properties": {
"age": "13",
"berries": "false"
}
},
{
- "id": 22342,
+ "id": 22483,
"properties": {
"age": "14",
"berries": "true"
}
},
{
- "id": 22343,
+ "id": 22484,
"properties": {
"age": "14",
"berries": "false"
}
},
{
- "id": 22344,
+ "id": 22485,
"properties": {
"age": "15",
"berries": "true"
}
},
{
- "id": 22345,
+ "id": 22486,
"properties": {
"age": "15",
"berries": "false"
}
},
{
- "id": 22346,
+ "id": 22487,
"properties": {
"age": "16",
"berries": "true"
}
},
{
- "id": 22347,
+ "id": 22488,
"properties": {
"age": "16",
"berries": "false"
}
},
{
- "id": 22348,
+ "id": 22489,
"properties": {
"age": "17",
"berries": "true"
}
},
{
- "id": 22349,
+ "id": 22490,
"properties": {
"age": "17",
"berries": "false"
}
},
{
- "id": 22350,
+ "id": 22491,
"properties": {
"age": "18",
"berries": "true"
}
},
{
- "id": 22351,
+ "id": 22492,
"properties": {
"age": "18",
"berries": "false"
}
},
{
- "id": 22352,
+ "id": 22493,
"properties": {
"age": "19",
"berries": "true"
}
},
{
- "id": 22353,
+ "id": 22494,
"properties": {
"age": "19",
"berries": "false"
}
},
{
- "id": 22354,
+ "id": 22495,
"properties": {
"age": "20",
"berries": "true"
}
},
{
- "id": 22355,
+ "id": 22496,
"properties": {
"age": "20",
"berries": "false"
}
},
{
- "id": 22356,
+ "id": 22497,
"properties": {
"age": "21",
"berries": "true"
}
},
{
- "id": 22357,
+ "id": 22498,
"properties": {
"age": "21",
"berries": "false"
}
},
{
- "id": 22358,
+ "id": 22499,
"properties": {
"age": "22",
"berries": "true"
}
},
{
- "id": 22359,
+ "id": 22500,
"properties": {
"age": "22",
"berries": "false"
}
},
{
- "id": 22360,
+ "id": 22501,
"properties": {
"age": "23",
"berries": "true"
}
},
{
- "id": 22361,
+ "id": 22502,
"properties": {
"age": "23",
"berries": "false"
}
},
{
- "id": 22362,
+ "id": 22503,
"properties": {
"age": "24",
"berries": "true"
}
},
{
- "id": 22363,
+ "id": 22504,
"properties": {
"age": "24",
"berries": "false"
}
},
{
- "id": 22364,
+ "id": 22505,
"properties": {
"age": "25",
"berries": "true"
}
},
{
- "id": 22365,
+ "id": 22506,
"properties": {
"age": "25",
"berries": "false"
@@ -37605,14 +37620,14 @@
},
"states": [
{
- "id": 22366,
+ "id": 22507,
"properties": {
"berries": "true"
}
},
{
"default": true,
- "id": 22367,
+ "id": 22508,
"properties": {
"berries": "false"
}
@@ -37694,42 +37709,42 @@
},
"states": [
{
- "id": 12386,
+ "id": 12527,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 12387,
+ "id": 12528,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 12388,
+ "id": 12529,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 12389,
+ "id": 12530,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 12390,
+ "id": 12531,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 12391,
+ "id": 12532,
"properties": {
"conditional": "true",
"facing": "down"
@@ -37737,42 +37752,42 @@
},
{
"default": true,
- "id": 12392,
+ "id": 12533,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 12393,
+ "id": 12534,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 12394,
+ "id": 12535,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 12395,
+ "id": 12536,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 12396,
+ "id": 12537,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 12397,
+ "id": 12538,
"properties": {
"conditional": "false",
"facing": "down"
@@ -38021,7 +38036,7 @@
},
"states": [
{
- "id": 11937,
+ "id": 12078,
"properties": {
"facing": "north",
"half": "upper",
@@ -38031,7 +38046,7 @@
}
},
{
- "id": 11938,
+ "id": 12079,
"properties": {
"facing": "north",
"half": "upper",
@@ -38041,7 +38056,7 @@
}
},
{
- "id": 11939,
+ "id": 12080,
"properties": {
"facing": "north",
"half": "upper",
@@ -38051,7 +38066,7 @@
}
},
{
- "id": 11940,
+ "id": 12081,
"properties": {
"facing": "north",
"half": "upper",
@@ -38061,7 +38076,7 @@
}
},
{
- "id": 11941,
+ "id": 12082,
"properties": {
"facing": "north",
"half": "upper",
@@ -38071,7 +38086,7 @@
}
},
{
- "id": 11942,
+ "id": 12083,
"properties": {
"facing": "north",
"half": "upper",
@@ -38081,7 +38096,7 @@
}
},
{
- "id": 11943,
+ "id": 12084,
"properties": {
"facing": "north",
"half": "upper",
@@ -38091,7 +38106,7 @@
}
},
{
- "id": 11944,
+ "id": 12085,
"properties": {
"facing": "north",
"half": "upper",
@@ -38101,7 +38116,7 @@
}
},
{
- "id": 11945,
+ "id": 12086,
"properties": {
"facing": "north",
"half": "lower",
@@ -38111,7 +38126,7 @@
}
},
{
- "id": 11946,
+ "id": 12087,
"properties": {
"facing": "north",
"half": "lower",
@@ -38121,7 +38136,7 @@
}
},
{
- "id": 11947,
+ "id": 12088,
"properties": {
"facing": "north",
"half": "lower",
@@ -38132,7 +38147,7 @@
},
{
"default": true,
- "id": 11948,
+ "id": 12089,
"properties": {
"facing": "north",
"half": "lower",
@@ -38142,7 +38157,7 @@
}
},
{
- "id": 11949,
+ "id": 12090,
"properties": {
"facing": "north",
"half": "lower",
@@ -38152,7 +38167,7 @@
}
},
{
- "id": 11950,
+ "id": 12091,
"properties": {
"facing": "north",
"half": "lower",
@@ -38162,7 +38177,7 @@
}
},
{
- "id": 11951,
+ "id": 12092,
"properties": {
"facing": "north",
"half": "lower",
@@ -38172,7 +38187,7 @@
}
},
{
- "id": 11952,
+ "id": 12093,
"properties": {
"facing": "north",
"half": "lower",
@@ -38182,7 +38197,7 @@
}
},
{
- "id": 11953,
+ "id": 12094,
"properties": {
"facing": "south",
"half": "upper",
@@ -38192,7 +38207,7 @@
}
},
{
- "id": 11954,
+ "id": 12095,
"properties": {
"facing": "south",
"half": "upper",
@@ -38202,7 +38217,7 @@
}
},
{
- "id": 11955,
+ "id": 12096,
"properties": {
"facing": "south",
"half": "upper",
@@ -38212,7 +38227,7 @@
}
},
{
- "id": 11956,
+ "id": 12097,
"properties": {
"facing": "south",
"half": "upper",
@@ -38222,7 +38237,7 @@
}
},
{
- "id": 11957,
+ "id": 12098,
"properties": {
"facing": "south",
"half": "upper",
@@ -38232,7 +38247,7 @@
}
},
{
- "id": 11958,
+ "id": 12099,
"properties": {
"facing": "south",
"half": "upper",
@@ -38242,7 +38257,7 @@
}
},
{
- "id": 11959,
+ "id": 12100,
"properties": {
"facing": "south",
"half": "upper",
@@ -38252,7 +38267,7 @@
}
},
{
- "id": 11960,
+ "id": 12101,
"properties": {
"facing": "south",
"half": "upper",
@@ -38262,7 +38277,7 @@
}
},
{
- "id": 11961,
+ "id": 12102,
"properties": {
"facing": "south",
"half": "lower",
@@ -38272,7 +38287,7 @@
}
},
{
- "id": 11962,
+ "id": 12103,
"properties": {
"facing": "south",
"half": "lower",
@@ -38282,7 +38297,7 @@
}
},
{
- "id": 11963,
+ "id": 12104,
"properties": {
"facing": "south",
"half": "lower",
@@ -38292,7 +38307,7 @@
}
},
{
- "id": 11964,
+ "id": 12105,
"properties": {
"facing": "south",
"half": "lower",
@@ -38302,7 +38317,7 @@
}
},
{
- "id": 11965,
+ "id": 12106,
"properties": {
"facing": "south",
"half": "lower",
@@ -38312,7 +38327,7 @@
}
},
{
- "id": 11966,
+ "id": 12107,
"properties": {
"facing": "south",
"half": "lower",
@@ -38322,7 +38337,7 @@
}
},
{
- "id": 11967,
+ "id": 12108,
"properties": {
"facing": "south",
"half": "lower",
@@ -38332,7 +38347,7 @@
}
},
{
- "id": 11968,
+ "id": 12109,
"properties": {
"facing": "south",
"half": "lower",
@@ -38342,7 +38357,7 @@
}
},
{
- "id": 11969,
+ "id": 12110,
"properties": {
"facing": "west",
"half": "upper",
@@ -38352,7 +38367,7 @@
}
},
{
- "id": 11970,
+ "id": 12111,
"properties": {
"facing": "west",
"half": "upper",
@@ -38362,7 +38377,7 @@
}
},
{
- "id": 11971,
+ "id": 12112,
"properties": {
"facing": "west",
"half": "upper",
@@ -38372,7 +38387,7 @@
}
},
{
- "id": 11972,
+ "id": 12113,
"properties": {
"facing": "west",
"half": "upper",
@@ -38382,7 +38397,7 @@
}
},
{
- "id": 11973,
+ "id": 12114,
"properties": {
"facing": "west",
"half": "upper",
@@ -38392,7 +38407,7 @@
}
},
{
- "id": 11974,
+ "id": 12115,
"properties": {
"facing": "west",
"half": "upper",
@@ -38402,7 +38417,7 @@
}
},
{
- "id": 11975,
+ "id": 12116,
"properties": {
"facing": "west",
"half": "upper",
@@ -38412,7 +38427,7 @@
}
},
{
- "id": 11976,
+ "id": 12117,
"properties": {
"facing": "west",
"half": "upper",
@@ -38422,7 +38437,7 @@
}
},
{
- "id": 11977,
+ "id": 12118,
"properties": {
"facing": "west",
"half": "lower",
@@ -38432,7 +38447,7 @@
}
},
{
- "id": 11978,
+ "id": 12119,
"properties": {
"facing": "west",
"half": "lower",
@@ -38442,7 +38457,7 @@
}
},
{
- "id": 11979,
+ "id": 12120,
"properties": {
"facing": "west",
"half": "lower",
@@ -38452,7 +38467,7 @@
}
},
{
- "id": 11980,
+ "id": 12121,
"properties": {
"facing": "west",
"half": "lower",
@@ -38462,7 +38477,7 @@
}
},
{
- "id": 11981,
+ "id": 12122,
"properties": {
"facing": "west",
"half": "lower",
@@ -38472,7 +38487,7 @@
}
},
{
- "id": 11982,
+ "id": 12123,
"properties": {
"facing": "west",
"half": "lower",
@@ -38482,7 +38497,7 @@
}
},
{
- "id": 11983,
+ "id": 12124,
"properties": {
"facing": "west",
"half": "lower",
@@ -38492,7 +38507,7 @@
}
},
{
- "id": 11984,
+ "id": 12125,
"properties": {
"facing": "west",
"half": "lower",
@@ -38502,7 +38517,7 @@
}
},
{
- "id": 11985,
+ "id": 12126,
"properties": {
"facing": "east",
"half": "upper",
@@ -38512,7 +38527,7 @@
}
},
{
- "id": 11986,
+ "id": 12127,
"properties": {
"facing": "east",
"half": "upper",
@@ -38522,7 +38537,7 @@
}
},
{
- "id": 11987,
+ "id": 12128,
"properties": {
"facing": "east",
"half": "upper",
@@ -38532,7 +38547,7 @@
}
},
{
- "id": 11988,
+ "id": 12129,
"properties": {
"facing": "east",
"half": "upper",
@@ -38542,7 +38557,7 @@
}
},
{
- "id": 11989,
+ "id": 12130,
"properties": {
"facing": "east",
"half": "upper",
@@ -38552,7 +38567,7 @@
}
},
{
- "id": 11990,
+ "id": 12131,
"properties": {
"facing": "east",
"half": "upper",
@@ -38562,7 +38577,7 @@
}
},
{
- "id": 11991,
+ "id": 12132,
"properties": {
"facing": "east",
"half": "upper",
@@ -38572,7 +38587,7 @@
}
},
{
- "id": 11992,
+ "id": 12133,
"properties": {
"facing": "east",
"half": "upper",
@@ -38582,7 +38597,7 @@
}
},
{
- "id": 11993,
+ "id": 12134,
"properties": {
"facing": "east",
"half": "lower",
@@ -38592,7 +38607,7 @@
}
},
{
- "id": 11994,
+ "id": 12135,
"properties": {
"facing": "east",
"half": "lower",
@@ -38602,7 +38617,7 @@
}
},
{
- "id": 11995,
+ "id": 12136,
"properties": {
"facing": "east",
"half": "lower",
@@ -38612,7 +38627,7 @@
}
},
{
- "id": 11996,
+ "id": 12137,
"properties": {
"facing": "east",
"half": "lower",
@@ -38622,7 +38637,7 @@
}
},
{
- "id": 11997,
+ "id": 12138,
"properties": {
"facing": "east",
"half": "lower",
@@ -38632,7 +38647,7 @@
}
},
{
- "id": 11998,
+ "id": 12139,
"properties": {
"facing": "east",
"half": "lower",
@@ -38642,7 +38657,7 @@
}
},
{
- "id": 11999,
+ "id": 12140,
"properties": {
"facing": "east",
"half": "lower",
@@ -38652,7 +38667,7 @@
}
},
{
- "id": 12000,
+ "id": 12141,
"properties": {
"facing": "east",
"half": "lower",
@@ -38688,7 +38703,7 @@
},
"states": [
{
- "id": 11553,
+ "id": 11694,
"properties": {
"east": "true",
"north": "true",
@@ -38698,7 +38713,7 @@
}
},
{
- "id": 11554,
+ "id": 11695,
"properties": {
"east": "true",
"north": "true",
@@ -38708,7 +38723,7 @@
}
},
{
- "id": 11555,
+ "id": 11696,
"properties": {
"east": "true",
"north": "true",
@@ -38718,7 +38733,7 @@
}
},
{
- "id": 11556,
+ "id": 11697,
"properties": {
"east": "true",
"north": "true",
@@ -38728,7 +38743,7 @@
}
},
{
- "id": 11557,
+ "id": 11698,
"properties": {
"east": "true",
"north": "true",
@@ -38738,7 +38753,7 @@
}
},
{
- "id": 11558,
+ "id": 11699,
"properties": {
"east": "true",
"north": "true",
@@ -38748,7 +38763,7 @@
}
},
{
- "id": 11559,
+ "id": 11700,
"properties": {
"east": "true",
"north": "true",
@@ -38758,7 +38773,7 @@
}
},
{
- "id": 11560,
+ "id": 11701,
"properties": {
"east": "true",
"north": "true",
@@ -38768,7 +38783,7 @@
}
},
{
- "id": 11561,
+ "id": 11702,
"properties": {
"east": "true",
"north": "false",
@@ -38778,7 +38793,7 @@
}
},
{
- "id": 11562,
+ "id": 11703,
"properties": {
"east": "true",
"north": "false",
@@ -38788,7 +38803,7 @@
}
},
{
- "id": 11563,
+ "id": 11704,
"properties": {
"east": "true",
"north": "false",
@@ -38798,7 +38813,7 @@
}
},
{
- "id": 11564,
+ "id": 11705,
"properties": {
"east": "true",
"north": "false",
@@ -38808,7 +38823,7 @@
}
},
{
- "id": 11565,
+ "id": 11706,
"properties": {
"east": "true",
"north": "false",
@@ -38818,7 +38833,7 @@
}
},
{
- "id": 11566,
+ "id": 11707,
"properties": {
"east": "true",
"north": "false",
@@ -38828,7 +38843,7 @@
}
},
{
- "id": 11567,
+ "id": 11708,
"properties": {
"east": "true",
"north": "false",
@@ -38838,7 +38853,7 @@
}
},
{
- "id": 11568,
+ "id": 11709,
"properties": {
"east": "true",
"north": "false",
@@ -38848,7 +38863,7 @@
}
},
{
- "id": 11569,
+ "id": 11710,
"properties": {
"east": "false",
"north": "true",
@@ -38858,7 +38873,7 @@
}
},
{
- "id": 11570,
+ "id": 11711,
"properties": {
"east": "false",
"north": "true",
@@ -38868,7 +38883,7 @@
}
},
{
- "id": 11571,
+ "id": 11712,
"properties": {
"east": "false",
"north": "true",
@@ -38878,7 +38893,7 @@
}
},
{
- "id": 11572,
+ "id": 11713,
"properties": {
"east": "false",
"north": "true",
@@ -38888,7 +38903,7 @@
}
},
{
- "id": 11573,
+ "id": 11714,
"properties": {
"east": "false",
"north": "true",
@@ -38898,7 +38913,7 @@
}
},
{
- "id": 11574,
+ "id": 11715,
"properties": {
"east": "false",
"north": "true",
@@ -38908,7 +38923,7 @@
}
},
{
- "id": 11575,
+ "id": 11716,
"properties": {
"east": "false",
"north": "true",
@@ -38918,7 +38933,7 @@
}
},
{
- "id": 11576,
+ "id": 11717,
"properties": {
"east": "false",
"north": "true",
@@ -38928,7 +38943,7 @@
}
},
{
- "id": 11577,
+ "id": 11718,
"properties": {
"east": "false",
"north": "false",
@@ -38938,7 +38953,7 @@
}
},
{
- "id": 11578,
+ "id": 11719,
"properties": {
"east": "false",
"north": "false",
@@ -38948,7 +38963,7 @@
}
},
{
- "id": 11579,
+ "id": 11720,
"properties": {
"east": "false",
"north": "false",
@@ -38958,7 +38973,7 @@
}
},
{
- "id": 11580,
+ "id": 11721,
"properties": {
"east": "false",
"north": "false",
@@ -38968,7 +38983,7 @@
}
},
{
- "id": 11581,
+ "id": 11722,
"properties": {
"east": "false",
"north": "false",
@@ -38978,7 +38993,7 @@
}
},
{
- "id": 11582,
+ "id": 11723,
"properties": {
"east": "false",
"north": "false",
@@ -38988,7 +39003,7 @@
}
},
{
- "id": 11583,
+ "id": 11724,
"properties": {
"east": "false",
"north": "false",
@@ -38999,7 +39014,7 @@
},
{
"default": true,
- "id": 11584,
+ "id": 11725,
"properties": {
"east": "false",
"north": "false",
@@ -39033,7 +39048,7 @@
},
"states": [
{
- "id": 11297,
+ "id": 11438,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39042,7 +39057,7 @@
}
},
{
- "id": 11298,
+ "id": 11439,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39051,7 +39066,7 @@
}
},
{
- "id": 11299,
+ "id": 11440,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39060,7 +39075,7 @@
}
},
{
- "id": 11300,
+ "id": 11441,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -39069,7 +39084,7 @@
}
},
{
- "id": 11301,
+ "id": 11442,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39078,7 +39093,7 @@
}
},
{
- "id": 11302,
+ "id": 11443,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39087,7 +39102,7 @@
}
},
{
- "id": 11303,
+ "id": 11444,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39097,7 +39112,7 @@
},
{
"default": true,
- "id": 11304,
+ "id": 11445,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -39106,7 +39121,7 @@
}
},
{
- "id": 11305,
+ "id": 11446,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39115,7 +39130,7 @@
}
},
{
- "id": 11306,
+ "id": 11447,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39124,7 +39139,7 @@
}
},
{
- "id": 11307,
+ "id": 11448,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39133,7 +39148,7 @@
}
},
{
- "id": 11308,
+ "id": 11449,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -39142,7 +39157,7 @@
}
},
{
- "id": 11309,
+ "id": 11450,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39151,7 +39166,7 @@
}
},
{
- "id": 11310,
+ "id": 11451,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39160,7 +39175,7 @@
}
},
{
- "id": 11311,
+ "id": 11452,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39169,7 +39184,7 @@
}
},
{
- "id": 11312,
+ "id": 11453,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -39178,7 +39193,7 @@
}
},
{
- "id": 11313,
+ "id": 11454,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -39187,7 +39202,7 @@
}
},
{
- "id": 11314,
+ "id": 11455,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -39196,7 +39211,7 @@
}
},
{
- "id": 11315,
+ "id": 11456,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -39205,7 +39220,7 @@
}
},
{
- "id": 11316,
+ "id": 11457,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -39214,7 +39229,7 @@
}
},
{
- "id": 11317,
+ "id": 11458,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -39223,7 +39238,7 @@
}
},
{
- "id": 11318,
+ "id": 11459,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -39232,7 +39247,7 @@
}
},
{
- "id": 11319,
+ "id": 11460,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -39241,7 +39256,7 @@
}
},
{
- "id": 11320,
+ "id": 11461,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -39250,7 +39265,7 @@
}
},
{
- "id": 11321,
+ "id": 11462,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -39259,7 +39274,7 @@
}
},
{
- "id": 11322,
+ "id": 11463,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -39268,7 +39283,7 @@
}
},
{
- "id": 11323,
+ "id": 11464,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -39277,7 +39292,7 @@
}
},
{
- "id": 11324,
+ "id": 11465,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -39286,7 +39301,7 @@
}
},
{
- "id": 11325,
+ "id": 11466,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -39295,7 +39310,7 @@
}
},
{
- "id": 11326,
+ "id": 11467,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -39304,7 +39319,7 @@
}
},
{
- "id": 11327,
+ "id": 11468,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -39313,7 +39328,7 @@
}
},
{
- "id": 11328,
+ "id": 11469,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -40467,21 +40482,21 @@
},
"states": [
{
- "id": 11051,
+ "id": 11192,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11052,
+ "id": 11193,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11053,
+ "id": 11194,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -40489,21 +40504,21 @@
},
{
"default": true,
- "id": 11054,
+ "id": 11195,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11055,
+ "id": 11196,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11056,
+ "id": 11197,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -40537,7 +40552,7 @@
},
"states": [
{
- "id": 9824,
+ "id": 9964,
"properties": {
"facing": "north",
"half": "top",
@@ -40546,7 +40561,7 @@
}
},
{
- "id": 9825,
+ "id": 9965,
"properties": {
"facing": "north",
"half": "top",
@@ -40555,7 +40570,7 @@
}
},
{
- "id": 9826,
+ "id": 9966,
"properties": {
"facing": "north",
"half": "top",
@@ -40564,7 +40579,7 @@
}
},
{
- "id": 9827,
+ "id": 9967,
"properties": {
"facing": "north",
"half": "top",
@@ -40573,7 +40588,7 @@
}
},
{
- "id": 9828,
+ "id": 9968,
"properties": {
"facing": "north",
"half": "top",
@@ -40582,7 +40597,7 @@
}
},
{
- "id": 9829,
+ "id": 9969,
"properties": {
"facing": "north",
"half": "top",
@@ -40591,7 +40606,7 @@
}
},
{
- "id": 9830,
+ "id": 9970,
"properties": {
"facing": "north",
"half": "top",
@@ -40600,7 +40615,7 @@
}
},
{
- "id": 9831,
+ "id": 9971,
"properties": {
"facing": "north",
"half": "top",
@@ -40609,7 +40624,7 @@
}
},
{
- "id": 9832,
+ "id": 9972,
"properties": {
"facing": "north",
"half": "top",
@@ -40618,7 +40633,7 @@
}
},
{
- "id": 9833,
+ "id": 9973,
"properties": {
"facing": "north",
"half": "top",
@@ -40627,7 +40642,7 @@
}
},
{
- "id": 9834,
+ "id": 9974,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40637,7 +40652,7 @@
},
{
"default": true,
- "id": 9835,
+ "id": 9975,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40646,7 +40661,7 @@
}
},
{
- "id": 9836,
+ "id": 9976,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40655,7 +40670,7 @@
}
},
{
- "id": 9837,
+ "id": 9977,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40664,7 +40679,7 @@
}
},
{
- "id": 9838,
+ "id": 9978,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40673,7 +40688,7 @@
}
},
{
- "id": 9839,
+ "id": 9979,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40682,7 +40697,7 @@
}
},
{
- "id": 9840,
+ "id": 9980,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40691,7 +40706,7 @@
}
},
{
- "id": 9841,
+ "id": 9981,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40700,7 +40715,7 @@
}
},
{
- "id": 9842,
+ "id": 9982,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40709,7 +40724,7 @@
}
},
{
- "id": 9843,
+ "id": 9983,
"properties": {
"facing": "north",
"half": "bottom",
@@ -40718,7 +40733,7 @@
}
},
{
- "id": 9844,
+ "id": 9984,
"properties": {
"facing": "south",
"half": "top",
@@ -40727,7 +40742,7 @@
}
},
{
- "id": 9845,
+ "id": 9985,
"properties": {
"facing": "south",
"half": "top",
@@ -40736,7 +40751,7 @@
}
},
{
- "id": 9846,
+ "id": 9986,
"properties": {
"facing": "south",
"half": "top",
@@ -40745,7 +40760,7 @@
}
},
{
- "id": 9847,
+ "id": 9987,
"properties": {
"facing": "south",
"half": "top",
@@ -40754,7 +40769,7 @@
}
},
{
- "id": 9848,
+ "id": 9988,
"properties": {
"facing": "south",
"half": "top",
@@ -40763,7 +40778,7 @@
}
},
{
- "id": 9849,
+ "id": 9989,
"properties": {
"facing": "south",
"half": "top",
@@ -40772,7 +40787,7 @@
}
},
{
- "id": 9850,
+ "id": 9990,
"properties": {
"facing": "south",
"half": "top",
@@ -40781,7 +40796,7 @@
}
},
{
- "id": 9851,
+ "id": 9991,
"properties": {
"facing": "south",
"half": "top",
@@ -40790,7 +40805,7 @@
}
},
{
- "id": 9852,
+ "id": 9992,
"properties": {
"facing": "south",
"half": "top",
@@ -40799,7 +40814,7 @@
}
},
{
- "id": 9853,
+ "id": 9993,
"properties": {
"facing": "south",
"half": "top",
@@ -40808,7 +40823,7 @@
}
},
{
- "id": 9854,
+ "id": 9994,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40817,7 +40832,7 @@
}
},
{
- "id": 9855,
+ "id": 9995,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40826,7 +40841,7 @@
}
},
{
- "id": 9856,
+ "id": 9996,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40835,7 +40850,7 @@
}
},
{
- "id": 9857,
+ "id": 9997,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40844,7 +40859,7 @@
}
},
{
- "id": 9858,
+ "id": 9998,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40853,7 +40868,7 @@
}
},
{
- "id": 9859,
+ "id": 9999,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40862,7 +40877,7 @@
}
},
{
- "id": 9860,
+ "id": 10000,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40871,7 +40886,7 @@
}
},
{
- "id": 9861,
+ "id": 10001,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40880,7 +40895,7 @@
}
},
{
- "id": 9862,
+ "id": 10002,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40889,7 +40904,7 @@
}
},
{
- "id": 9863,
+ "id": 10003,
"properties": {
"facing": "south",
"half": "bottom",
@@ -40898,7 +40913,7 @@
}
},
{
- "id": 9864,
+ "id": 10004,
"properties": {
"facing": "west",
"half": "top",
@@ -40907,7 +40922,7 @@
}
},
{
- "id": 9865,
+ "id": 10005,
"properties": {
"facing": "west",
"half": "top",
@@ -40916,7 +40931,7 @@
}
},
{
- "id": 9866,
+ "id": 10006,
"properties": {
"facing": "west",
"half": "top",
@@ -40925,7 +40940,7 @@
}
},
{
- "id": 9867,
+ "id": 10007,
"properties": {
"facing": "west",
"half": "top",
@@ -40934,7 +40949,7 @@
}
},
{
- "id": 9868,
+ "id": 10008,
"properties": {
"facing": "west",
"half": "top",
@@ -40943,7 +40958,7 @@
}
},
{
- "id": 9869,
+ "id": 10009,
"properties": {
"facing": "west",
"half": "top",
@@ -40952,7 +40967,7 @@
}
},
{
- "id": 9870,
+ "id": 10010,
"properties": {
"facing": "west",
"half": "top",
@@ -40961,7 +40976,7 @@
}
},
{
- "id": 9871,
+ "id": 10011,
"properties": {
"facing": "west",
"half": "top",
@@ -40970,7 +40985,7 @@
}
},
{
- "id": 9872,
+ "id": 10012,
"properties": {
"facing": "west",
"half": "top",
@@ -40979,7 +40994,7 @@
}
},
{
- "id": 9873,
+ "id": 10013,
"properties": {
"facing": "west",
"half": "top",
@@ -40988,7 +41003,7 @@
}
},
{
- "id": 9874,
+ "id": 10014,
"properties": {
"facing": "west",
"half": "bottom",
@@ -40997,7 +41012,7 @@
}
},
{
- "id": 9875,
+ "id": 10015,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41006,7 +41021,7 @@
}
},
{
- "id": 9876,
+ "id": 10016,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41015,7 +41030,7 @@
}
},
{
- "id": 9877,
+ "id": 10017,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41024,7 +41039,7 @@
}
},
{
- "id": 9878,
+ "id": 10018,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41033,7 +41048,7 @@
}
},
{
- "id": 9879,
+ "id": 10019,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41042,7 +41057,7 @@
}
},
{
- "id": 9880,
+ "id": 10020,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41051,7 +41066,7 @@
}
},
{
- "id": 9881,
+ "id": 10021,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41060,7 +41075,7 @@
}
},
{
- "id": 9882,
+ "id": 10022,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41069,7 +41084,7 @@
}
},
{
- "id": 9883,
+ "id": 10023,
"properties": {
"facing": "west",
"half": "bottom",
@@ -41078,7 +41093,7 @@
}
},
{
- "id": 9884,
+ "id": 10024,
"properties": {
"facing": "east",
"half": "top",
@@ -41087,7 +41102,7 @@
}
},
{
- "id": 9885,
+ "id": 10025,
"properties": {
"facing": "east",
"half": "top",
@@ -41096,7 +41111,7 @@
}
},
{
- "id": 9886,
+ "id": 10026,
"properties": {
"facing": "east",
"half": "top",
@@ -41105,7 +41120,7 @@
}
},
{
- "id": 9887,
+ "id": 10027,
"properties": {
"facing": "east",
"half": "top",
@@ -41114,7 +41129,7 @@
}
},
{
- "id": 9888,
+ "id": 10028,
"properties": {
"facing": "east",
"half": "top",
@@ -41123,7 +41138,7 @@
}
},
{
- "id": 9889,
+ "id": 10029,
"properties": {
"facing": "east",
"half": "top",
@@ -41132,7 +41147,7 @@
}
},
{
- "id": 9890,
+ "id": 10030,
"properties": {
"facing": "east",
"half": "top",
@@ -41141,7 +41156,7 @@
}
},
{
- "id": 9891,
+ "id": 10031,
"properties": {
"facing": "east",
"half": "top",
@@ -41150,7 +41165,7 @@
}
},
{
- "id": 9892,
+ "id": 10032,
"properties": {
"facing": "east",
"half": "top",
@@ -41159,7 +41174,7 @@
}
},
{
- "id": 9893,
+ "id": 10033,
"properties": {
"facing": "east",
"half": "top",
@@ -41168,7 +41183,7 @@
}
},
{
- "id": 9894,
+ "id": 10034,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41177,7 +41192,7 @@
}
},
{
- "id": 9895,
+ "id": 10035,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41186,7 +41201,7 @@
}
},
{
- "id": 9896,
+ "id": 10036,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41195,7 +41210,7 @@
}
},
{
- "id": 9897,
+ "id": 10037,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41204,7 +41219,7 @@
}
},
{
- "id": 9898,
+ "id": 10038,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41213,7 +41228,7 @@
}
},
{
- "id": 9899,
+ "id": 10039,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41222,7 +41237,7 @@
}
},
{
- "id": 9900,
+ "id": 10040,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41231,7 +41246,7 @@
}
},
{
- "id": 9901,
+ "id": 10041,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41240,7 +41255,7 @@
}
},
{
- "id": 9902,
+ "id": 10042,
"properties": {
"facing": "east",
"half": "bottom",
@@ -41249,7 +41264,7 @@
}
},
{
- "id": 9903,
+ "id": 10043,
"properties": {
"facing": "east",
"half": "bottom",
@@ -42330,25 +42345,25 @@
"states": [
{
"default": true,
- "id": 8971,
+ "id": 9111,
"properties": {
"facing": "north"
}
},
{
- "id": 8972,
+ "id": 9112,
"properties": {
"facing": "south"
}
},
{
- "id": 8973,
+ "id": 9113,
"properties": {
"facing": "west"
}
},
{
- "id": 8974,
+ "id": 9114,
"properties": {
"facing": "east"
}
@@ -45468,7 +45483,7 @@
"states": [
{
"default": true,
- "id": 24096
+ "id": 24237
}
]
},
@@ -45476,7 +45491,7 @@
"states": [
{
"default": true,
- "id": 20581
+ "id": 20722
}
]
},
@@ -45484,7 +45499,7 @@
"states": [
{
"default": true,
- "id": 19733
+ "id": 19874
}
]
},
@@ -45492,7 +45507,7 @@
"states": [
{
"default": true,
- "id": 9096
+ "id": 9236
}
]
},
@@ -45500,7 +45515,7 @@
"states": [
{
"default": true,
- "id": 10939
+ "id": 11080
}
]
},
@@ -45534,37 +45549,37 @@
"states": [
{
"default": true,
- "id": 12263,
+ "id": 12404,
"properties": {
"age": "0"
}
},
{
- "id": 12264,
+ "id": 12405,
"properties": {
"age": "1"
}
},
{
- "id": 12265,
+ "id": 12406,
"properties": {
"age": "2"
}
},
{
- "id": 12266,
+ "id": 12407,
"properties": {
"age": "3"
}
},
{
- "id": 12267,
+ "id": 12408,
"properties": {
"age": "4"
}
},
{
- "id": 12268,
+ "id": 12409,
"properties": {
"age": "5"
}
@@ -45600,7 +45615,7 @@
},
"states": [
{
- "id": 12199,
+ "id": 12340,
"properties": {
"down": "true",
"east": "true",
@@ -45611,7 +45626,7 @@
}
},
{
- "id": 12200,
+ "id": 12341,
"properties": {
"down": "true",
"east": "true",
@@ -45622,7 +45637,7 @@
}
},
{
- "id": 12201,
+ "id": 12342,
"properties": {
"down": "true",
"east": "true",
@@ -45633,7 +45648,7 @@
}
},
{
- "id": 12202,
+ "id": 12343,
"properties": {
"down": "true",
"east": "true",
@@ -45644,7 +45659,7 @@
}
},
{
- "id": 12203,
+ "id": 12344,
"properties": {
"down": "true",
"east": "true",
@@ -45655,7 +45670,7 @@
}
},
{
- "id": 12204,
+ "id": 12345,
"properties": {
"down": "true",
"east": "true",
@@ -45666,7 +45681,7 @@
}
},
{
- "id": 12205,
+ "id": 12346,
"properties": {
"down": "true",
"east": "true",
@@ -45677,7 +45692,7 @@
}
},
{
- "id": 12206,
+ "id": 12347,
"properties": {
"down": "true",
"east": "true",
@@ -45688,7 +45703,7 @@
}
},
{
- "id": 12207,
+ "id": 12348,
"properties": {
"down": "true",
"east": "true",
@@ -45699,7 +45714,7 @@
}
},
{
- "id": 12208,
+ "id": 12349,
"properties": {
"down": "true",
"east": "true",
@@ -45710,7 +45725,7 @@
}
},
{
- "id": 12209,
+ "id": 12350,
"properties": {
"down": "true",
"east": "true",
@@ -45721,7 +45736,7 @@
}
},
{
- "id": 12210,
+ "id": 12351,
"properties": {
"down": "true",
"east": "true",
@@ -45732,7 +45747,7 @@
}
},
{
- "id": 12211,
+ "id": 12352,
"properties": {
"down": "true",
"east": "true",
@@ -45743,7 +45758,7 @@
}
},
{
- "id": 12212,
+ "id": 12353,
"properties": {
"down": "true",
"east": "true",
@@ -45754,7 +45769,7 @@
}
},
{
- "id": 12213,
+ "id": 12354,
"properties": {
"down": "true",
"east": "true",
@@ -45765,7 +45780,7 @@
}
},
{
- "id": 12214,
+ "id": 12355,
"properties": {
"down": "true",
"east": "true",
@@ -45776,7 +45791,7 @@
}
},
{
- "id": 12215,
+ "id": 12356,
"properties": {
"down": "true",
"east": "false",
@@ -45787,7 +45802,7 @@
}
},
{
- "id": 12216,
+ "id": 12357,
"properties": {
"down": "true",
"east": "false",
@@ -45798,7 +45813,7 @@
}
},
{
- "id": 12217,
+ "id": 12358,
"properties": {
"down": "true",
"east": "false",
@@ -45809,7 +45824,7 @@
}
},
{
- "id": 12218,
+ "id": 12359,
"properties": {
"down": "true",
"east": "false",
@@ -45820,7 +45835,7 @@
}
},
{
- "id": 12219,
+ "id": 12360,
"properties": {
"down": "true",
"east": "false",
@@ -45831,7 +45846,7 @@
}
},
{
- "id": 12220,
+ "id": 12361,
"properties": {
"down": "true",
"east": "false",
@@ -45842,7 +45857,7 @@
}
},
{
- "id": 12221,
+ "id": 12362,
"properties": {
"down": "true",
"east": "false",
@@ -45853,7 +45868,7 @@
}
},
{
- "id": 12222,
+ "id": 12363,
"properties": {
"down": "true",
"east": "false",
@@ -45864,7 +45879,7 @@
}
},
{
- "id": 12223,
+ "id": 12364,
"properties": {
"down": "true",
"east": "false",
@@ -45875,7 +45890,7 @@
}
},
{
- "id": 12224,
+ "id": 12365,
"properties": {
"down": "true",
"east": "false",
@@ -45886,7 +45901,7 @@
}
},
{
- "id": 12225,
+ "id": 12366,
"properties": {
"down": "true",
"east": "false",
@@ -45897,7 +45912,7 @@
}
},
{
- "id": 12226,
+ "id": 12367,
"properties": {
"down": "true",
"east": "false",
@@ -45908,7 +45923,7 @@
}
},
{
- "id": 12227,
+ "id": 12368,
"properties": {
"down": "true",
"east": "false",
@@ -45919,7 +45934,7 @@
}
},
{
- "id": 12228,
+ "id": 12369,
"properties": {
"down": "true",
"east": "false",
@@ -45930,7 +45945,7 @@
}
},
{
- "id": 12229,
+ "id": 12370,
"properties": {
"down": "true",
"east": "false",
@@ -45941,7 +45956,7 @@
}
},
{
- "id": 12230,
+ "id": 12371,
"properties": {
"down": "true",
"east": "false",
@@ -45952,7 +45967,7 @@
}
},
{
- "id": 12231,
+ "id": 12372,
"properties": {
"down": "false",
"east": "true",
@@ -45963,7 +45978,7 @@
}
},
{
- "id": 12232,
+ "id": 12373,
"properties": {
"down": "false",
"east": "true",
@@ -45974,7 +45989,7 @@
}
},
{
- "id": 12233,
+ "id": 12374,
"properties": {
"down": "false",
"east": "true",
@@ -45985,7 +46000,7 @@
}
},
{
- "id": 12234,
+ "id": 12375,
"properties": {
"down": "false",
"east": "true",
@@ -45996,7 +46011,7 @@
}
},
{
- "id": 12235,
+ "id": 12376,
"properties": {
"down": "false",
"east": "true",
@@ -46007,7 +46022,7 @@
}
},
{
- "id": 12236,
+ "id": 12377,
"properties": {
"down": "false",
"east": "true",
@@ -46018,7 +46033,7 @@
}
},
{
- "id": 12237,
+ "id": 12378,
"properties": {
"down": "false",
"east": "true",
@@ -46029,7 +46044,7 @@
}
},
{
- "id": 12238,
+ "id": 12379,
"properties": {
"down": "false",
"east": "true",
@@ -46040,7 +46055,7 @@
}
},
{
- "id": 12239,
+ "id": 12380,
"properties": {
"down": "false",
"east": "true",
@@ -46051,7 +46066,7 @@
}
},
{
- "id": 12240,
+ "id": 12381,
"properties": {
"down": "false",
"east": "true",
@@ -46062,7 +46077,7 @@
}
},
{
- "id": 12241,
+ "id": 12382,
"properties": {
"down": "false",
"east": "true",
@@ -46073,7 +46088,7 @@
}
},
{
- "id": 12242,
+ "id": 12383,
"properties": {
"down": "false",
"east": "true",
@@ -46084,7 +46099,7 @@
}
},
{
- "id": 12243,
+ "id": 12384,
"properties": {
"down": "false",
"east": "true",
@@ -46095,7 +46110,7 @@
}
},
{
- "id": 12244,
+ "id": 12385,
"properties": {
"down": "false",
"east": "true",
@@ -46106,7 +46121,7 @@
}
},
{
- "id": 12245,
+ "id": 12386,
"properties": {
"down": "false",
"east": "true",
@@ -46117,7 +46132,7 @@
}
},
{
- "id": 12246,
+ "id": 12387,
"properties": {
"down": "false",
"east": "true",
@@ -46128,7 +46143,7 @@
}
},
{
- "id": 12247,
+ "id": 12388,
"properties": {
"down": "false",
"east": "false",
@@ -46139,7 +46154,7 @@
}
},
{
- "id": 12248,
+ "id": 12389,
"properties": {
"down": "false",
"east": "false",
@@ -46150,7 +46165,7 @@
}
},
{
- "id": 12249,
+ "id": 12390,
"properties": {
"down": "false",
"east": "false",
@@ -46161,7 +46176,7 @@
}
},
{
- "id": 12250,
+ "id": 12391,
"properties": {
"down": "false",
"east": "false",
@@ -46172,7 +46187,7 @@
}
},
{
- "id": 12251,
+ "id": 12392,
"properties": {
"down": "false",
"east": "false",
@@ -46183,7 +46198,7 @@
}
},
{
- "id": 12252,
+ "id": 12393,
"properties": {
"down": "false",
"east": "false",
@@ -46194,7 +46209,7 @@
}
},
{
- "id": 12253,
+ "id": 12394,
"properties": {
"down": "false",
"east": "false",
@@ -46205,7 +46220,7 @@
}
},
{
- "id": 12254,
+ "id": 12395,
"properties": {
"down": "false",
"east": "false",
@@ -46216,7 +46231,7 @@
}
},
{
- "id": 12255,
+ "id": 12396,
"properties": {
"down": "false",
"east": "false",
@@ -46227,7 +46242,7 @@
}
},
{
- "id": 12256,
+ "id": 12397,
"properties": {
"down": "false",
"east": "false",
@@ -46238,7 +46253,7 @@
}
},
{
- "id": 12257,
+ "id": 12398,
"properties": {
"down": "false",
"east": "false",
@@ -46249,7 +46264,7 @@
}
},
{
- "id": 12258,
+ "id": 12399,
"properties": {
"down": "false",
"east": "false",
@@ -46260,7 +46275,7 @@
}
},
{
- "id": 12259,
+ "id": 12400,
"properties": {
"down": "false",
"east": "false",
@@ -46271,7 +46286,7 @@
}
},
{
- "id": 12260,
+ "id": 12401,
"properties": {
"down": "false",
"east": "false",
@@ -46282,7 +46297,7 @@
}
},
{
- "id": 12261,
+ "id": 12402,
"properties": {
"down": "false",
"east": "false",
@@ -46294,7 +46309,7 @@
},
{
"default": true,
- "id": 12262,
+ "id": 12403,
"properties": {
"down": "false",
"east": "false",
@@ -46318,7 +46333,7 @@
"states": [
{
"default": true,
- "id": 10604
+ "id": 10745
}
]
},
@@ -46342,7 +46357,7 @@
"states": [
{
"default": true,
- "id": 22452
+ "id": 22593
}
]
},
@@ -46360,21 +46375,21 @@
},
"states": [
{
- "id": 22533,
+ "id": 22674,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22534,
+ "id": 22675,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22535,
+ "id": 22676,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -46382,21 +46397,21 @@
},
{
"default": true,
- "id": 22536,
+ "id": 22677,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22537,
+ "id": 22678,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22538,
+ "id": 22679,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -46430,7 +46445,7 @@
},
"states": [
{
- "id": 22453,
+ "id": 22594,
"properties": {
"facing": "north",
"half": "top",
@@ -46439,7 +46454,7 @@
}
},
{
- "id": 22454,
+ "id": 22595,
"properties": {
"facing": "north",
"half": "top",
@@ -46448,7 +46463,7 @@
}
},
{
- "id": 22455,
+ "id": 22596,
"properties": {
"facing": "north",
"half": "top",
@@ -46457,7 +46472,7 @@
}
},
{
- "id": 22456,
+ "id": 22597,
"properties": {
"facing": "north",
"half": "top",
@@ -46466,7 +46481,7 @@
}
},
{
- "id": 22457,
+ "id": 22598,
"properties": {
"facing": "north",
"half": "top",
@@ -46475,7 +46490,7 @@
}
},
{
- "id": 22458,
+ "id": 22599,
"properties": {
"facing": "north",
"half": "top",
@@ -46484,7 +46499,7 @@
}
},
{
- "id": 22459,
+ "id": 22600,
"properties": {
"facing": "north",
"half": "top",
@@ -46493,7 +46508,7 @@
}
},
{
- "id": 22460,
+ "id": 22601,
"properties": {
"facing": "north",
"half": "top",
@@ -46502,7 +46517,7 @@
}
},
{
- "id": 22461,
+ "id": 22602,
"properties": {
"facing": "north",
"half": "top",
@@ -46511,7 +46526,7 @@
}
},
{
- "id": 22462,
+ "id": 22603,
"properties": {
"facing": "north",
"half": "top",
@@ -46520,7 +46535,7 @@
}
},
{
- "id": 22463,
+ "id": 22604,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46530,7 +46545,7 @@
},
{
"default": true,
- "id": 22464,
+ "id": 22605,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46539,7 +46554,7 @@
}
},
{
- "id": 22465,
+ "id": 22606,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46548,7 +46563,7 @@
}
},
{
- "id": 22466,
+ "id": 22607,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46557,7 +46572,7 @@
}
},
{
- "id": 22467,
+ "id": 22608,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46566,7 +46581,7 @@
}
},
{
- "id": 22468,
+ "id": 22609,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46575,7 +46590,7 @@
}
},
{
- "id": 22469,
+ "id": 22610,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46584,7 +46599,7 @@
}
},
{
- "id": 22470,
+ "id": 22611,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46593,7 +46608,7 @@
}
},
{
- "id": 22471,
+ "id": 22612,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46602,7 +46617,7 @@
}
},
{
- "id": 22472,
+ "id": 22613,
"properties": {
"facing": "north",
"half": "bottom",
@@ -46611,7 +46626,7 @@
}
},
{
- "id": 22473,
+ "id": 22614,
"properties": {
"facing": "south",
"half": "top",
@@ -46620,7 +46635,7 @@
}
},
{
- "id": 22474,
+ "id": 22615,
"properties": {
"facing": "south",
"half": "top",
@@ -46629,7 +46644,7 @@
}
},
{
- "id": 22475,
+ "id": 22616,
"properties": {
"facing": "south",
"half": "top",
@@ -46638,7 +46653,7 @@
}
},
{
- "id": 22476,
+ "id": 22617,
"properties": {
"facing": "south",
"half": "top",
@@ -46647,7 +46662,7 @@
}
},
{
- "id": 22477,
+ "id": 22618,
"properties": {
"facing": "south",
"half": "top",
@@ -46656,7 +46671,7 @@
}
},
{
- "id": 22478,
+ "id": 22619,
"properties": {
"facing": "south",
"half": "top",
@@ -46665,7 +46680,7 @@
}
},
{
- "id": 22479,
+ "id": 22620,
"properties": {
"facing": "south",
"half": "top",
@@ -46674,7 +46689,7 @@
}
},
{
- "id": 22480,
+ "id": 22621,
"properties": {
"facing": "south",
"half": "top",
@@ -46683,7 +46698,7 @@
}
},
{
- "id": 22481,
+ "id": 22622,
"properties": {
"facing": "south",
"half": "top",
@@ -46692,7 +46707,7 @@
}
},
{
- "id": 22482,
+ "id": 22623,
"properties": {
"facing": "south",
"half": "top",
@@ -46701,7 +46716,7 @@
}
},
{
- "id": 22483,
+ "id": 22624,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46710,7 +46725,7 @@
}
},
{
- "id": 22484,
+ "id": 22625,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46719,7 +46734,7 @@
}
},
{
- "id": 22485,
+ "id": 22626,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46728,7 +46743,7 @@
}
},
{
- "id": 22486,
+ "id": 22627,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46737,7 +46752,7 @@
}
},
{
- "id": 22487,
+ "id": 22628,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46746,7 +46761,7 @@
}
},
{
- "id": 22488,
+ "id": 22629,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46755,7 +46770,7 @@
}
},
{
- "id": 22489,
+ "id": 22630,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46764,7 +46779,7 @@
}
},
{
- "id": 22490,
+ "id": 22631,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46773,7 +46788,7 @@
}
},
{
- "id": 22491,
+ "id": 22632,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46782,7 +46797,7 @@
}
},
{
- "id": 22492,
+ "id": 22633,
"properties": {
"facing": "south",
"half": "bottom",
@@ -46791,7 +46806,7 @@
}
},
{
- "id": 22493,
+ "id": 22634,
"properties": {
"facing": "west",
"half": "top",
@@ -46800,7 +46815,7 @@
}
},
{
- "id": 22494,
+ "id": 22635,
"properties": {
"facing": "west",
"half": "top",
@@ -46809,7 +46824,7 @@
}
},
{
- "id": 22495,
+ "id": 22636,
"properties": {
"facing": "west",
"half": "top",
@@ -46818,7 +46833,7 @@
}
},
{
- "id": 22496,
+ "id": 22637,
"properties": {
"facing": "west",
"half": "top",
@@ -46827,7 +46842,7 @@
}
},
{
- "id": 22497,
+ "id": 22638,
"properties": {
"facing": "west",
"half": "top",
@@ -46836,7 +46851,7 @@
}
},
{
- "id": 22498,
+ "id": 22639,
"properties": {
"facing": "west",
"half": "top",
@@ -46845,7 +46860,7 @@
}
},
{
- "id": 22499,
+ "id": 22640,
"properties": {
"facing": "west",
"half": "top",
@@ -46854,7 +46869,7 @@
}
},
{
- "id": 22500,
+ "id": 22641,
"properties": {
"facing": "west",
"half": "top",
@@ -46863,7 +46878,7 @@
}
},
{
- "id": 22501,
+ "id": 22642,
"properties": {
"facing": "west",
"half": "top",
@@ -46872,7 +46887,7 @@
}
},
{
- "id": 22502,
+ "id": 22643,
"properties": {
"facing": "west",
"half": "top",
@@ -46881,7 +46896,7 @@
}
},
{
- "id": 22503,
+ "id": 22644,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46890,7 +46905,7 @@
}
},
{
- "id": 22504,
+ "id": 22645,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46899,7 +46914,7 @@
}
},
{
- "id": 22505,
+ "id": 22646,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46908,7 +46923,7 @@
}
},
{
- "id": 22506,
+ "id": 22647,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46917,7 +46932,7 @@
}
},
{
- "id": 22507,
+ "id": 22648,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46926,7 +46941,7 @@
}
},
{
- "id": 22508,
+ "id": 22649,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46935,7 +46950,7 @@
}
},
{
- "id": 22509,
+ "id": 22650,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46944,7 +46959,7 @@
}
},
{
- "id": 22510,
+ "id": 22651,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46953,7 +46968,7 @@
}
},
{
- "id": 22511,
+ "id": 22652,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46962,7 +46977,7 @@
}
},
{
- "id": 22512,
+ "id": 22653,
"properties": {
"facing": "west",
"half": "bottom",
@@ -46971,7 +46986,7 @@
}
},
{
- "id": 22513,
+ "id": 22654,
"properties": {
"facing": "east",
"half": "top",
@@ -46980,7 +46995,7 @@
}
},
{
- "id": 22514,
+ "id": 22655,
"properties": {
"facing": "east",
"half": "top",
@@ -46989,7 +47004,7 @@
}
},
{
- "id": 22515,
+ "id": 22656,
"properties": {
"facing": "east",
"half": "top",
@@ -46998,7 +47013,7 @@
}
},
{
- "id": 22516,
+ "id": 22657,
"properties": {
"facing": "east",
"half": "top",
@@ -47007,7 +47022,7 @@
}
},
{
- "id": 22517,
+ "id": 22658,
"properties": {
"facing": "east",
"half": "top",
@@ -47016,7 +47031,7 @@
}
},
{
- "id": 22518,
+ "id": 22659,
"properties": {
"facing": "east",
"half": "top",
@@ -47025,7 +47040,7 @@
}
},
{
- "id": 22519,
+ "id": 22660,
"properties": {
"facing": "east",
"half": "top",
@@ -47034,7 +47049,7 @@
}
},
{
- "id": 22520,
+ "id": 22661,
"properties": {
"facing": "east",
"half": "top",
@@ -47043,7 +47058,7 @@
}
},
{
- "id": 22521,
+ "id": 22662,
"properties": {
"facing": "east",
"half": "top",
@@ -47052,7 +47067,7 @@
}
},
{
- "id": 22522,
+ "id": 22663,
"properties": {
"facing": "east",
"half": "top",
@@ -47061,7 +47076,7 @@
}
},
{
- "id": 22523,
+ "id": 22664,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47070,7 +47085,7 @@
}
},
{
- "id": 22524,
+ "id": 22665,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47079,7 +47094,7 @@
}
},
{
- "id": 22525,
+ "id": 22666,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47088,7 +47103,7 @@
}
},
{
- "id": 22526,
+ "id": 22667,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47097,7 +47112,7 @@
}
},
{
- "id": 22527,
+ "id": 22668,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47106,7 +47121,7 @@
}
},
{
- "id": 22528,
+ "id": 22669,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47115,7 +47130,7 @@
}
},
{
- "id": 22529,
+ "id": 22670,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47124,7 +47139,7 @@
}
},
{
- "id": 22530,
+ "id": 22671,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47133,7 +47148,7 @@
}
},
{
- "id": 22531,
+ "id": 22672,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47142,7 +47157,7 @@
}
},
{
- "id": 22532,
+ "id": 22673,
"properties": {
"facing": "east",
"half": "bottom",
@@ -47185,7 +47200,7 @@
},
"states": [
{
- "id": 22539,
+ "id": 22680,
"properties": {
"east": "none",
"north": "none",
@@ -47196,7 +47211,7 @@
}
},
{
- "id": 22540,
+ "id": 22681,
"properties": {
"east": "none",
"north": "none",
@@ -47207,7 +47222,7 @@
}
},
{
- "id": 22541,
+ "id": 22682,
"properties": {
"east": "none",
"north": "none",
@@ -47219,2339 +47234,2339 @@
},
{
"default": true,
- "id": 22542,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22543,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22544,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22545,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22546,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22547,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22548,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22549,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22550,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22551,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22552,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22553,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22554,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22555,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22556,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22557,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22558,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22559,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22560,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22561,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22562,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22563,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22564,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22565,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22566,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22567,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22568,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22569,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22570,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22571,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22572,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22573,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22574,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22575,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22576,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22577,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22578,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22579,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22580,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22581,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22582,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22583,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22584,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22585,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22586,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22587,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22588,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22589,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22590,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22591,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22592,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22593,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22594,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22595,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22596,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22597,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22598,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22599,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22600,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22601,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22602,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22603,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22604,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22605,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22606,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22607,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22608,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22609,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22610,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22611,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22612,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22613,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22614,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22615,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22616,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22617,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22618,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22619,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22620,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22621,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22622,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22623,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22624,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22625,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22626,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22627,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22628,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22629,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22630,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22631,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22632,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22633,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22634,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22635,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22636,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22637,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22638,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22639,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22640,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22641,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22642,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22643,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22644,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22645,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22646,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22647,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22648,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22649,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22650,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22651,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22652,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22653,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22654,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22655,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22656,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22657,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22658,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22659,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22660,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22661,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22662,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22663,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22664,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22665,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22666,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22667,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22668,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22669,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22670,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22671,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22672,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22673,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22674,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22675,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22676,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22677,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22678,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22679,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22680,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22681,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22682,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 22683,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22684,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22685,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22686,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22687,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22688,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22689,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22690,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22691,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22692,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22693,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22694,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22695,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22696,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22697,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22698,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22699,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22700,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22701,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22702,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22703,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22704,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22705,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22706,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22707,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22708,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22709,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22710,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22711,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22712,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22713,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22714,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22715,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22716,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22717,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22718,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22719,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22720,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22721,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22722,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22723,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22724,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22725,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22726,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22727,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22728,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22729,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22730,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22731,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22732,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22733,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22734,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22735,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22736,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22737,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22738,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22739,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22740,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22741,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22742,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22743,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22744,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22745,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22746,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22747,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22748,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 22749,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 22750,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 22751,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 22752,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 22753,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 22754,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22755,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22756,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22757,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22758,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22759,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22760,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22761,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22762,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22763,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22764,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22765,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22766,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22767,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22768,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22769,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22770,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22771,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22772,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22773,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22774,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22775,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22776,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22777,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22778,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22779,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22780,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22781,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22782,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22783,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22784,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22785,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22786,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22787,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22788,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22789,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22790,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22791,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22792,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22793,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22794,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22795,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22796,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22797,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22798,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22799,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22800,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22801,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22802,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22803,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22804,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22805,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22806,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22807,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22808,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22809,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22810,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22811,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22812,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22813,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22814,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22815,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22816,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22817,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22818,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22819,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22820,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22821,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22822,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22823,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22824,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22825,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22826,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22827,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22828,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22829,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22830,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22831,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22832,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22833,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22834,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22835,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22836,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22837,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22838,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22839,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22840,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22841,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22842,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22843,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22844,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22845,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22846,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22847,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22848,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22849,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22850,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22851,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22852,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22853,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22854,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22855,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22856,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22857,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22858,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22859,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22860,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22861,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22862,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22863,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22864,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22865,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22866,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22867,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22868,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22869,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22870,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22871,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22872,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22873,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22874,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22875,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22876,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22877,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22878,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22879,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22880,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22881,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22882,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22883,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22884,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22885,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22886,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22887,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22888,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22889,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22890,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22891,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22892,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 22893,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 22894,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 22895,
"properties": {
"east": "low",
"north": "tall",
@@ -49562,7 +49577,7 @@
}
},
{
- "id": 22755,
+ "id": 22896,
"properties": {
"east": "tall",
"north": "none",
@@ -49573,7 +49588,7 @@
}
},
{
- "id": 22756,
+ "id": 22897,
"properties": {
"east": "tall",
"north": "none",
@@ -49584,7 +49599,7 @@
}
},
{
- "id": 22757,
+ "id": 22898,
"properties": {
"east": "tall",
"north": "none",
@@ -49595,7 +49610,7 @@
}
},
{
- "id": 22758,
+ "id": 22899,
"properties": {
"east": "tall",
"north": "none",
@@ -49606,7 +49621,7 @@
}
},
{
- "id": 22759,
+ "id": 22900,
"properties": {
"east": "tall",
"north": "none",
@@ -49617,7 +49632,7 @@
}
},
{
- "id": 22760,
+ "id": 22901,
"properties": {
"east": "tall",
"north": "none",
@@ -49628,7 +49643,7 @@
}
},
{
- "id": 22761,
+ "id": 22902,
"properties": {
"east": "tall",
"north": "none",
@@ -49639,7 +49654,7 @@
}
},
{
- "id": 22762,
+ "id": 22903,
"properties": {
"east": "tall",
"north": "none",
@@ -49650,7 +49665,7 @@
}
},
{
- "id": 22763,
+ "id": 22904,
"properties": {
"east": "tall",
"north": "none",
@@ -49661,7 +49676,7 @@
}
},
{
- "id": 22764,
+ "id": 22905,
"properties": {
"east": "tall",
"north": "none",
@@ -49672,7 +49687,7 @@
}
},
{
- "id": 22765,
+ "id": 22906,
"properties": {
"east": "tall",
"north": "none",
@@ -49683,7 +49698,7 @@
}
},
{
- "id": 22766,
+ "id": 22907,
"properties": {
"east": "tall",
"north": "none",
@@ -49694,7 +49709,7 @@
}
},
{
- "id": 22767,
+ "id": 22908,
"properties": {
"east": "tall",
"north": "none",
@@ -49705,7 +49720,7 @@
}
},
{
- "id": 22768,
+ "id": 22909,
"properties": {
"east": "tall",
"north": "none",
@@ -49716,7 +49731,7 @@
}
},
{
- "id": 22769,
+ "id": 22910,
"properties": {
"east": "tall",
"north": "none",
@@ -49727,7 +49742,7 @@
}
},
{
- "id": 22770,
+ "id": 22911,
"properties": {
"east": "tall",
"north": "none",
@@ -49738,7 +49753,7 @@
}
},
{
- "id": 22771,
+ "id": 22912,
"properties": {
"east": "tall",
"north": "none",
@@ -49749,7 +49764,7 @@
}
},
{
- "id": 22772,
+ "id": 22913,
"properties": {
"east": "tall",
"north": "none",
@@ -49760,7 +49775,7 @@
}
},
{
- "id": 22773,
+ "id": 22914,
"properties": {
"east": "tall",
"north": "none",
@@ -49771,7 +49786,7 @@
}
},
{
- "id": 22774,
+ "id": 22915,
"properties": {
"east": "tall",
"north": "none",
@@ -49782,7 +49797,7 @@
}
},
{
- "id": 22775,
+ "id": 22916,
"properties": {
"east": "tall",
"north": "none",
@@ -49793,7 +49808,7 @@
}
},
{
- "id": 22776,
+ "id": 22917,
"properties": {
"east": "tall",
"north": "none",
@@ -49804,7 +49819,7 @@
}
},
{
- "id": 22777,
+ "id": 22918,
"properties": {
"east": "tall",
"north": "none",
@@ -49815,7 +49830,7 @@
}
},
{
- "id": 22778,
+ "id": 22919,
"properties": {
"east": "tall",
"north": "none",
@@ -49826,7 +49841,7 @@
}
},
{
- "id": 22779,
+ "id": 22920,
"properties": {
"east": "tall",
"north": "none",
@@ -49837,7 +49852,7 @@
}
},
{
- "id": 22780,
+ "id": 22921,
"properties": {
"east": "tall",
"north": "none",
@@ -49848,7 +49863,7 @@
}
},
{
- "id": 22781,
+ "id": 22922,
"properties": {
"east": "tall",
"north": "none",
@@ -49859,7 +49874,7 @@
}
},
{
- "id": 22782,
+ "id": 22923,
"properties": {
"east": "tall",
"north": "none",
@@ -49870,7 +49885,7 @@
}
},
{
- "id": 22783,
+ "id": 22924,
"properties": {
"east": "tall",
"north": "none",
@@ -49881,7 +49896,7 @@
}
},
{
- "id": 22784,
+ "id": 22925,
"properties": {
"east": "tall",
"north": "none",
@@ -49892,7 +49907,7 @@
}
},
{
- "id": 22785,
+ "id": 22926,
"properties": {
"east": "tall",
"north": "none",
@@ -49903,7 +49918,7 @@
}
},
{
- "id": 22786,
+ "id": 22927,
"properties": {
"east": "tall",
"north": "none",
@@ -49914,7 +49929,7 @@
}
},
{
- "id": 22787,
+ "id": 22928,
"properties": {
"east": "tall",
"north": "none",
@@ -49925,7 +49940,7 @@
}
},
{
- "id": 22788,
+ "id": 22929,
"properties": {
"east": "tall",
"north": "none",
@@ -49936,7 +49951,7 @@
}
},
{
- "id": 22789,
+ "id": 22930,
"properties": {
"east": "tall",
"north": "none",
@@ -49947,7 +49962,7 @@
}
},
{
- "id": 22790,
+ "id": 22931,
"properties": {
"east": "tall",
"north": "none",
@@ -49958,7 +49973,7 @@
}
},
{
- "id": 22791,
+ "id": 22932,
"properties": {
"east": "tall",
"north": "low",
@@ -49969,7 +49984,7 @@
}
},
{
- "id": 22792,
+ "id": 22933,
"properties": {
"east": "tall",
"north": "low",
@@ -49980,7 +49995,7 @@
}
},
{
- "id": 22793,
+ "id": 22934,
"properties": {
"east": "tall",
"north": "low",
@@ -49991,7 +50006,7 @@
}
},
{
- "id": 22794,
+ "id": 22935,
"properties": {
"east": "tall",
"north": "low",
@@ -50002,7 +50017,7 @@
}
},
{
- "id": 22795,
+ "id": 22936,
"properties": {
"east": "tall",
"north": "low",
@@ -50013,7 +50028,7 @@
}
},
{
- "id": 22796,
+ "id": 22937,
"properties": {
"east": "tall",
"north": "low",
@@ -50024,7 +50039,7 @@
}
},
{
- "id": 22797,
+ "id": 22938,
"properties": {
"east": "tall",
"north": "low",
@@ -50035,7 +50050,7 @@
}
},
{
- "id": 22798,
+ "id": 22939,
"properties": {
"east": "tall",
"north": "low",
@@ -50046,7 +50061,7 @@
}
},
{
- "id": 22799,
+ "id": 22940,
"properties": {
"east": "tall",
"north": "low",
@@ -50057,7 +50072,7 @@
}
},
{
- "id": 22800,
+ "id": 22941,
"properties": {
"east": "tall",
"north": "low",
@@ -50068,7 +50083,7 @@
}
},
{
- "id": 22801,
+ "id": 22942,
"properties": {
"east": "tall",
"north": "low",
@@ -50079,7 +50094,7 @@
}
},
{
- "id": 22802,
+ "id": 22943,
"properties": {
"east": "tall",
"north": "low",
@@ -50090,7 +50105,7 @@
}
},
{
- "id": 22803,
+ "id": 22944,
"properties": {
"east": "tall",
"north": "low",
@@ -50101,7 +50116,7 @@
}
},
{
- "id": 22804,
+ "id": 22945,
"properties": {
"east": "tall",
"north": "low",
@@ -50112,7 +50127,7 @@
}
},
{
- "id": 22805,
+ "id": 22946,
"properties": {
"east": "tall",
"north": "low",
@@ -50123,7 +50138,7 @@
}
},
{
- "id": 22806,
+ "id": 22947,
"properties": {
"east": "tall",
"north": "low",
@@ -50134,7 +50149,7 @@
}
},
{
- "id": 22807,
+ "id": 22948,
"properties": {
"east": "tall",
"north": "low",
@@ -50145,7 +50160,7 @@
}
},
{
- "id": 22808,
+ "id": 22949,
"properties": {
"east": "tall",
"north": "low",
@@ -50156,7 +50171,7 @@
}
},
{
- "id": 22809,
+ "id": 22950,
"properties": {
"east": "tall",
"north": "low",
@@ -50167,7 +50182,7 @@
}
},
{
- "id": 22810,
+ "id": 22951,
"properties": {
"east": "tall",
"north": "low",
@@ -50178,7 +50193,7 @@
}
},
{
- "id": 22811,
+ "id": 22952,
"properties": {
"east": "tall",
"north": "low",
@@ -50189,7 +50204,7 @@
}
},
{
- "id": 22812,
+ "id": 22953,
"properties": {
"east": "tall",
"north": "low",
@@ -50200,7 +50215,7 @@
}
},
{
- "id": 22813,
+ "id": 22954,
"properties": {
"east": "tall",
"north": "low",
@@ -50211,7 +50226,7 @@
}
},
{
- "id": 22814,
+ "id": 22955,
"properties": {
"east": "tall",
"north": "low",
@@ -50222,7 +50237,7 @@
}
},
{
- "id": 22815,
+ "id": 22956,
"properties": {
"east": "tall",
"north": "low",
@@ -50233,7 +50248,7 @@
}
},
{
- "id": 22816,
+ "id": 22957,
"properties": {
"east": "tall",
"north": "low",
@@ -50244,7 +50259,7 @@
}
},
{
- "id": 22817,
+ "id": 22958,
"properties": {
"east": "tall",
"north": "low",
@@ -50255,7 +50270,7 @@
}
},
{
- "id": 22818,
+ "id": 22959,
"properties": {
"east": "tall",
"north": "low",
@@ -50266,7 +50281,7 @@
}
},
{
- "id": 22819,
+ "id": 22960,
"properties": {
"east": "tall",
"north": "low",
@@ -50277,7 +50292,7 @@
}
},
{
- "id": 22820,
+ "id": 22961,
"properties": {
"east": "tall",
"north": "low",
@@ -50288,7 +50303,7 @@
}
},
{
- "id": 22821,
+ "id": 22962,
"properties": {
"east": "tall",
"north": "low",
@@ -50299,7 +50314,7 @@
}
},
{
- "id": 22822,
+ "id": 22963,
"properties": {
"east": "tall",
"north": "low",
@@ -50310,7 +50325,7 @@
}
},
{
- "id": 22823,
+ "id": 22964,
"properties": {
"east": "tall",
"north": "low",
@@ -50321,7 +50336,7 @@
}
},
{
- "id": 22824,
+ "id": 22965,
"properties": {
"east": "tall",
"north": "low",
@@ -50332,7 +50347,7 @@
}
},
{
- "id": 22825,
+ "id": 22966,
"properties": {
"east": "tall",
"north": "low",
@@ -50343,7 +50358,7 @@
}
},
{
- "id": 22826,
+ "id": 22967,
"properties": {
"east": "tall",
"north": "low",
@@ -50354,7 +50369,7 @@
}
},
{
- "id": 22827,
+ "id": 22968,
"properties": {
"east": "tall",
"north": "tall",
@@ -50365,7 +50380,7 @@
}
},
{
- "id": 22828,
+ "id": 22969,
"properties": {
"east": "tall",
"north": "tall",
@@ -50376,7 +50391,7 @@
}
},
{
- "id": 22829,
+ "id": 22970,
"properties": {
"east": "tall",
"north": "tall",
@@ -50387,7 +50402,7 @@
}
},
{
- "id": 22830,
+ "id": 22971,
"properties": {
"east": "tall",
"north": "tall",
@@ -50398,7 +50413,7 @@
}
},
{
- "id": 22831,
+ "id": 22972,
"properties": {
"east": "tall",
"north": "tall",
@@ -50409,7 +50424,7 @@
}
},
{
- "id": 22832,
+ "id": 22973,
"properties": {
"east": "tall",
"north": "tall",
@@ -50420,7 +50435,7 @@
}
},
{
- "id": 22833,
+ "id": 22974,
"properties": {
"east": "tall",
"north": "tall",
@@ -50431,7 +50446,7 @@
}
},
{
- "id": 22834,
+ "id": 22975,
"properties": {
"east": "tall",
"north": "tall",
@@ -50442,7 +50457,7 @@
}
},
{
- "id": 22835,
+ "id": 22976,
"properties": {
"east": "tall",
"north": "tall",
@@ -50453,7 +50468,7 @@
}
},
{
- "id": 22836,
+ "id": 22977,
"properties": {
"east": "tall",
"north": "tall",
@@ -50464,7 +50479,7 @@
}
},
{
- "id": 22837,
+ "id": 22978,
"properties": {
"east": "tall",
"north": "tall",
@@ -50475,7 +50490,7 @@
}
},
{
- "id": 22838,
+ "id": 22979,
"properties": {
"east": "tall",
"north": "tall",
@@ -50486,7 +50501,7 @@
}
},
{
- "id": 22839,
+ "id": 22980,
"properties": {
"east": "tall",
"north": "tall",
@@ -50497,7 +50512,7 @@
}
},
{
- "id": 22840,
+ "id": 22981,
"properties": {
"east": "tall",
"north": "tall",
@@ -50508,7 +50523,7 @@
}
},
{
- "id": 22841,
+ "id": 22982,
"properties": {
"east": "tall",
"north": "tall",
@@ -50519,7 +50534,7 @@
}
},
{
- "id": 22842,
+ "id": 22983,
"properties": {
"east": "tall",
"north": "tall",
@@ -50530,7 +50545,7 @@
}
},
{
- "id": 22843,
+ "id": 22984,
"properties": {
"east": "tall",
"north": "tall",
@@ -50541,7 +50556,7 @@
}
},
{
- "id": 22844,
+ "id": 22985,
"properties": {
"east": "tall",
"north": "tall",
@@ -50552,7 +50567,7 @@
}
},
{
- "id": 22845,
+ "id": 22986,
"properties": {
"east": "tall",
"north": "tall",
@@ -50563,7 +50578,7 @@
}
},
{
- "id": 22846,
+ "id": 22987,
"properties": {
"east": "tall",
"north": "tall",
@@ -50574,7 +50589,7 @@
}
},
{
- "id": 22847,
+ "id": 22988,
"properties": {
"east": "tall",
"north": "tall",
@@ -50585,7 +50600,7 @@
}
},
{
- "id": 22848,
+ "id": 22989,
"properties": {
"east": "tall",
"north": "tall",
@@ -50596,7 +50611,7 @@
}
},
{
- "id": 22849,
+ "id": 22990,
"properties": {
"east": "tall",
"north": "tall",
@@ -50607,7 +50622,7 @@
}
},
{
- "id": 22850,
+ "id": 22991,
"properties": {
"east": "tall",
"north": "tall",
@@ -50618,7 +50633,7 @@
}
},
{
- "id": 22851,
+ "id": 22992,
"properties": {
"east": "tall",
"north": "tall",
@@ -50629,7 +50644,7 @@
}
},
{
- "id": 22852,
+ "id": 22993,
"properties": {
"east": "tall",
"north": "tall",
@@ -50640,7 +50655,7 @@
}
},
{
- "id": 22853,
+ "id": 22994,
"properties": {
"east": "tall",
"north": "tall",
@@ -50651,7 +50666,7 @@
}
},
{
- "id": 22854,
+ "id": 22995,
"properties": {
"east": "tall",
"north": "tall",
@@ -50662,7 +50677,7 @@
}
},
{
- "id": 22855,
+ "id": 22996,
"properties": {
"east": "tall",
"north": "tall",
@@ -50673,7 +50688,7 @@
}
},
{
- "id": 22856,
+ "id": 22997,
"properties": {
"east": "tall",
"north": "tall",
@@ -50684,7 +50699,7 @@
}
},
{
- "id": 22857,
+ "id": 22998,
"properties": {
"east": "tall",
"north": "tall",
@@ -50695,7 +50710,7 @@
}
},
{
- "id": 22858,
+ "id": 22999,
"properties": {
"east": "tall",
"north": "tall",
@@ -50706,7 +50721,7 @@
}
},
{
- "id": 22859,
+ "id": 23000,
"properties": {
"east": "tall",
"north": "tall",
@@ -50717,7 +50732,7 @@
}
},
{
- "id": 22860,
+ "id": 23001,
"properties": {
"east": "tall",
"north": "tall",
@@ -50728,7 +50743,7 @@
}
},
{
- "id": 22861,
+ "id": 23002,
"properties": {
"east": "tall",
"north": "tall",
@@ -50739,7 +50754,7 @@
}
},
{
- "id": 22862,
+ "id": 23003,
"properties": {
"east": "tall",
"north": "tall",
@@ -50773,21 +50788,21 @@
},
"states": [
{
- "id": 11111,
+ "id": 11252,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11112,
+ "id": 11253,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11113,
+ "id": 11254,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -50795,21 +50810,21 @@
},
{
"default": true,
- "id": 11114,
+ "id": 11255,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11115,
+ "id": 11256,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11116,
+ "id": 11257,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -55396,7 +55411,7 @@
},
"states": [
{
- "id": 9035,
+ "id": 9175,
"properties": {
"facing": "north",
"mode": "compare",
@@ -55405,7 +55420,7 @@
},
{
"default": true,
- "id": 9036,
+ "id": 9176,
"properties": {
"facing": "north",
"mode": "compare",
@@ -55413,7 +55428,7 @@
}
},
{
- "id": 9037,
+ "id": 9177,
"properties": {
"facing": "north",
"mode": "subtract",
@@ -55421,7 +55436,7 @@
}
},
{
- "id": 9038,
+ "id": 9178,
"properties": {
"facing": "north",
"mode": "subtract",
@@ -55429,7 +55444,7 @@
}
},
{
- "id": 9039,
+ "id": 9179,
"properties": {
"facing": "south",
"mode": "compare",
@@ -55437,7 +55452,7 @@
}
},
{
- "id": 9040,
+ "id": 9180,
"properties": {
"facing": "south",
"mode": "compare",
@@ -55445,7 +55460,7 @@
}
},
{
- "id": 9041,
+ "id": 9181,
"properties": {
"facing": "south",
"mode": "subtract",
@@ -55453,7 +55468,7 @@
}
},
{
- "id": 9042,
+ "id": 9182,
"properties": {
"facing": "south",
"mode": "subtract",
@@ -55461,7 +55476,7 @@
}
},
{
- "id": 9043,
+ "id": 9183,
"properties": {
"facing": "west",
"mode": "compare",
@@ -55469,7 +55484,7 @@
}
},
{
- "id": 9044,
+ "id": 9184,
"properties": {
"facing": "west",
"mode": "compare",
@@ -55477,7 +55492,7 @@
}
},
{
- "id": 9045,
+ "id": 9185,
"properties": {
"facing": "west",
"mode": "subtract",
@@ -55485,7 +55500,7 @@
}
},
{
- "id": 9046,
+ "id": 9186,
"properties": {
"facing": "west",
"mode": "subtract",
@@ -55493,7 +55508,7 @@
}
},
{
- "id": 9047,
+ "id": 9187,
"properties": {
"facing": "east",
"mode": "compare",
@@ -55501,7 +55516,7 @@
}
},
{
- "id": 9048,
+ "id": 9188,
"properties": {
"facing": "east",
"mode": "compare",
@@ -55509,7 +55524,7 @@
}
},
{
- "id": 9049,
+ "id": 9189,
"properties": {
"facing": "east",
"mode": "subtract",
@@ -55517,7 +55532,7 @@
}
},
{
- "id": 9050,
+ "id": 9190,
"properties": {
"facing": "east",
"mode": "subtract",
@@ -55543,55 +55558,55 @@
"states": [
{
"default": true,
- "id": 19231,
+ "id": 19372,
"properties": {
"level": "0"
}
},
{
- "id": 19232,
+ "id": 19373,
"properties": {
"level": "1"
}
},
{
- "id": 19233,
+ "id": 19374,
"properties": {
"level": "2"
}
},
{
- "id": 19234,
+ "id": 19375,
"properties": {
"level": "3"
}
},
{
- "id": 19235,
+ "id": 19376,
"properties": {
"level": "4"
}
},
{
- "id": 19236,
+ "id": 19377,
"properties": {
"level": "5"
}
},
{
- "id": 19237,
+ "id": 19378,
"properties": {
"level": "6"
}
},
{
- "id": 19238,
+ "id": 19379,
"properties": {
"level": "7"
}
},
{
- "id": 19239,
+ "id": 19380,
"properties": {
"level": "8"
}
@@ -55608,13 +55623,13 @@
"states": [
{
"default": true,
- "id": 12801,
+ "id": 12942,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12802,
+ "id": 12943,
"properties": {
"waterlogged": "false"
}
@@ -55625,7 +55640,7 @@
"states": [
{
"default": true,
- "id": 21566
+ "id": 21707
}
]
},
@@ -55633,7 +55648,7 @@
"states": [
{
"default": true,
- "id": 21567
+ "id": 21708
}
]
},
@@ -55649,7 +55664,7 @@
"states": [
{
"default": true,
- "id": 24097
+ "id": 24238
}
]
},
@@ -55657,7 +55672,7 @@
"states": [
{
"default": true,
- "id": 24098
+ "id": 24239
}
]
},
@@ -55665,7 +55680,7 @@
"states": [
{
"default": true,
- "id": 20582
+ "id": 20723
}
]
},
@@ -55673,7 +55688,7 @@
"states": [
{
"default": true,
- "id": 19732
+ "id": 19873
}
]
},
@@ -55695,6 +55710,10 @@
},
"minecraft:creeper_head": {
"properties": {
+ "powered": [
+ "true",
+ "false"
+ ],
"rotation": [
"0",
"1",
@@ -55716,99 +55735,227 @@
},
"states": [
{
- "default": true,
- "id": 8907,
+ "id": 8987,
"properties": {
+ "powered": "true",
"rotation": "0"
}
},
{
- "id": 8908,
+ "id": 8988,
"properties": {
+ "powered": "true",
"rotation": "1"
}
},
{
- "id": 8909,
+ "id": 8989,
"properties": {
+ "powered": "true",
"rotation": "2"
}
},
{
- "id": 8910,
+ "id": 8990,
"properties": {
+ "powered": "true",
"rotation": "3"
}
},
{
- "id": 8911,
+ "id": 8991,
"properties": {
+ "powered": "true",
"rotation": "4"
}
},
{
- "id": 8912,
+ "id": 8992,
"properties": {
+ "powered": "true",
"rotation": "5"
}
},
{
- "id": 8913,
+ "id": 8993,
"properties": {
+ "powered": "true",
"rotation": "6"
}
},
{
- "id": 8914,
+ "id": 8994,
"properties": {
+ "powered": "true",
"rotation": "7"
}
},
{
- "id": 8915,
+ "id": 8995,
"properties": {
+ "powered": "true",
"rotation": "8"
}
},
{
- "id": 8916,
+ "id": 8996,
"properties": {
+ "powered": "true",
"rotation": "9"
}
},
{
- "id": 8917,
+ "id": 8997,
"properties": {
+ "powered": "true",
"rotation": "10"
}
},
{
- "id": 8918,
+ "id": 8998,
"properties": {
+ "powered": "true",
"rotation": "11"
}
},
{
- "id": 8919,
+ "id": 8999,
"properties": {
+ "powered": "true",
"rotation": "12"
}
},
{
- "id": 8920,
+ "id": 9000,
"properties": {
+ "powered": "true",
"rotation": "13"
}
},
{
- "id": 8921,
+ "id": 9001,
"properties": {
+ "powered": "true",
"rotation": "14"
}
},
{
- "id": 8922,
+ "id": 9002,
"properties": {
+ "powered": "true",
+ "rotation": "15"
+ }
+ },
+ {
+ "default": true,
+ "id": 9003,
+ "properties": {
+ "powered": "false",
+ "rotation": "0"
+ }
+ },
+ {
+ "id": 9004,
+ "properties": {
+ "powered": "false",
+ "rotation": "1"
+ }
+ },
+ {
+ "id": 9005,
+ "properties": {
+ "powered": "false",
+ "rotation": "2"
+ }
+ },
+ {
+ "id": 9006,
+ "properties": {
+ "powered": "false",
+ "rotation": "3"
+ }
+ },
+ {
+ "id": 9007,
+ "properties": {
+ "powered": "false",
+ "rotation": "4"
+ }
+ },
+ {
+ "id": 9008,
+ "properties": {
+ "powered": "false",
+ "rotation": "5"
+ }
+ },
+ {
+ "id": 9009,
+ "properties": {
+ "powered": "false",
+ "rotation": "6"
+ }
+ },
+ {
+ "id": 9010,
+ "properties": {
+ "powered": "false",
+ "rotation": "7"
+ }
+ },
+ {
+ "id": 9011,
+ "properties": {
+ "powered": "false",
+ "rotation": "8"
+ }
+ },
+ {
+ "id": 9012,
+ "properties": {
+ "powered": "false",
+ "rotation": "9"
+ }
+ },
+ {
+ "id": 9013,
+ "properties": {
+ "powered": "false",
+ "rotation": "10"
+ }
+ },
+ {
+ "id": 9014,
+ "properties": {
+ "powered": "false",
+ "rotation": "11"
+ }
+ },
+ {
+ "id": 9015,
+ "properties": {
+ "powered": "false",
+ "rotation": "12"
+ }
+ },
+ {
+ "id": 9016,
+ "properties": {
+ "powered": "false",
+ "rotation": "13"
+ }
+ },
+ {
+ "id": 9017,
+ "properties": {
+ "powered": "false",
+ "rotation": "14"
+ }
+ },
+ {
+ "id": 9018,
+ "properties": {
+ "powered": "false",
"rotation": "15"
}
}
@@ -55821,32 +55968,68 @@
"south",
"west",
"east"
+ ],
+ "powered": [
+ "true",
+ "false"
]
},
"states": [
+ {
+ "id": 9019,
+ "properties": {
+ "facing": "north",
+ "powered": "true"
+ }
+ },
{
"default": true,
- "id": 8923,
+ "id": 9020,
"properties": {
- "facing": "north"
+ "facing": "north",
+ "powered": "false"
}
},
{
- "id": 8924,
+ "id": 9021,
"properties": {
- "facing": "south"
+ "facing": "south",
+ "powered": "true"
}
},
{
- "id": 8925,
+ "id": 9022,
"properties": {
- "facing": "west"
+ "facing": "south",
+ "powered": "false"
}
},
{
- "id": 8926,
+ "id": 9023,
"properties": {
- "facing": "east"
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9024,
+ "properties": {
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9025,
+ "properties": {
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9026,
+ "properties": {
+ "facing": "east",
+ "powered": "false"
}
}
]
@@ -55871,7 +56054,7 @@
},
"states": [
{
- "id": 18959,
+ "id": 19100,
"properties": {
"face": "floor",
"facing": "north",
@@ -55879,7 +56062,7 @@
}
},
{
- "id": 18960,
+ "id": 19101,
"properties": {
"face": "floor",
"facing": "north",
@@ -55887,7 +56070,7 @@
}
},
{
- "id": 18961,
+ "id": 19102,
"properties": {
"face": "floor",
"facing": "south",
@@ -55895,7 +56078,7 @@
}
},
{
- "id": 18962,
+ "id": 19103,
"properties": {
"face": "floor",
"facing": "south",
@@ -55903,7 +56086,7 @@
}
},
{
- "id": 18963,
+ "id": 19104,
"properties": {
"face": "floor",
"facing": "west",
@@ -55911,7 +56094,7 @@
}
},
{
- "id": 18964,
+ "id": 19105,
"properties": {
"face": "floor",
"facing": "west",
@@ -55919,7 +56102,7 @@
}
},
{
- "id": 18965,
+ "id": 19106,
"properties": {
"face": "floor",
"facing": "east",
@@ -55927,7 +56110,7 @@
}
},
{
- "id": 18966,
+ "id": 19107,
"properties": {
"face": "floor",
"facing": "east",
@@ -55935,7 +56118,7 @@
}
},
{
- "id": 18967,
+ "id": 19108,
"properties": {
"face": "wall",
"facing": "north",
@@ -55944,7 +56127,7 @@
},
{
"default": true,
- "id": 18968,
+ "id": 19109,
"properties": {
"face": "wall",
"facing": "north",
@@ -55952,7 +56135,7 @@
}
},
{
- "id": 18969,
+ "id": 19110,
"properties": {
"face": "wall",
"facing": "south",
@@ -55960,7 +56143,7 @@
}
},
{
- "id": 18970,
+ "id": 19111,
"properties": {
"face": "wall",
"facing": "south",
@@ -55968,7 +56151,7 @@
}
},
{
- "id": 18971,
+ "id": 19112,
"properties": {
"face": "wall",
"facing": "west",
@@ -55976,7 +56159,7 @@
}
},
{
- "id": 18972,
+ "id": 19113,
"properties": {
"face": "wall",
"facing": "west",
@@ -55984,7 +56167,7 @@
}
},
{
- "id": 18973,
+ "id": 19114,
"properties": {
"face": "wall",
"facing": "east",
@@ -55992,7 +56175,7 @@
}
},
{
- "id": 18974,
+ "id": 19115,
"properties": {
"face": "wall",
"facing": "east",
@@ -56000,7 +56183,7 @@
}
},
{
- "id": 18975,
+ "id": 19116,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -56008,7 +56191,7 @@
}
},
{
- "id": 18976,
+ "id": 19117,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -56016,7 +56199,7 @@
}
},
{
- "id": 18977,
+ "id": 19118,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -56024,7 +56207,7 @@
}
},
{
- "id": 18978,
+ "id": 19119,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -56032,7 +56215,7 @@
}
},
{
- "id": 18979,
+ "id": 19120,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -56040,7 +56223,7 @@
}
},
{
- "id": 18980,
+ "id": 19121,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -56048,7 +56231,7 @@
}
},
{
- "id": 18981,
+ "id": 19122,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -56056,7 +56239,7 @@
}
},
{
- "id": 18982,
+ "id": 19123,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -56092,7 +56275,7 @@
},
"states": [
{
- "id": 19007,
+ "id": 19148,
"properties": {
"facing": "north",
"half": "upper",
@@ -56102,7 +56285,7 @@
}
},
{
- "id": 19008,
+ "id": 19149,
"properties": {
"facing": "north",
"half": "upper",
@@ -56112,7 +56295,7 @@
}
},
{
- "id": 19009,
+ "id": 19150,
"properties": {
"facing": "north",
"half": "upper",
@@ -56122,7 +56305,7 @@
}
},
{
- "id": 19010,
+ "id": 19151,
"properties": {
"facing": "north",
"half": "upper",
@@ -56132,7 +56315,7 @@
}
},
{
- "id": 19011,
+ "id": 19152,
"properties": {
"facing": "north",
"half": "upper",
@@ -56142,7 +56325,7 @@
}
},
{
- "id": 19012,
+ "id": 19153,
"properties": {
"facing": "north",
"half": "upper",
@@ -56152,7 +56335,7 @@
}
},
{
- "id": 19013,
+ "id": 19154,
"properties": {
"facing": "north",
"half": "upper",
@@ -56162,7 +56345,7 @@
}
},
{
- "id": 19014,
+ "id": 19155,
"properties": {
"facing": "north",
"half": "upper",
@@ -56172,7 +56355,7 @@
}
},
{
- "id": 19015,
+ "id": 19156,
"properties": {
"facing": "north",
"half": "lower",
@@ -56182,7 +56365,7 @@
}
},
{
- "id": 19016,
+ "id": 19157,
"properties": {
"facing": "north",
"half": "lower",
@@ -56192,7 +56375,7 @@
}
},
{
- "id": 19017,
+ "id": 19158,
"properties": {
"facing": "north",
"half": "lower",
@@ -56203,7 +56386,7 @@
},
{
"default": true,
- "id": 19018,
+ "id": 19159,
"properties": {
"facing": "north",
"half": "lower",
@@ -56213,7 +56396,7 @@
}
},
{
- "id": 19019,
+ "id": 19160,
"properties": {
"facing": "north",
"half": "lower",
@@ -56223,7 +56406,7 @@
}
},
{
- "id": 19020,
+ "id": 19161,
"properties": {
"facing": "north",
"half": "lower",
@@ -56233,7 +56416,7 @@
}
},
{
- "id": 19021,
+ "id": 19162,
"properties": {
"facing": "north",
"half": "lower",
@@ -56243,7 +56426,7 @@
}
},
{
- "id": 19022,
+ "id": 19163,
"properties": {
"facing": "north",
"half": "lower",
@@ -56253,7 +56436,7 @@
}
},
{
- "id": 19023,
+ "id": 19164,
"properties": {
"facing": "south",
"half": "upper",
@@ -56263,7 +56446,7 @@
}
},
{
- "id": 19024,
+ "id": 19165,
"properties": {
"facing": "south",
"half": "upper",
@@ -56273,7 +56456,7 @@
}
},
{
- "id": 19025,
+ "id": 19166,
"properties": {
"facing": "south",
"half": "upper",
@@ -56283,7 +56466,7 @@
}
},
{
- "id": 19026,
+ "id": 19167,
"properties": {
"facing": "south",
"half": "upper",
@@ -56293,7 +56476,7 @@
}
},
{
- "id": 19027,
+ "id": 19168,
"properties": {
"facing": "south",
"half": "upper",
@@ -56303,7 +56486,7 @@
}
},
{
- "id": 19028,
+ "id": 19169,
"properties": {
"facing": "south",
"half": "upper",
@@ -56313,7 +56496,7 @@
}
},
{
- "id": 19029,
+ "id": 19170,
"properties": {
"facing": "south",
"half": "upper",
@@ -56323,7 +56506,7 @@
}
},
{
- "id": 19030,
+ "id": 19171,
"properties": {
"facing": "south",
"half": "upper",
@@ -56333,7 +56516,7 @@
}
},
{
- "id": 19031,
+ "id": 19172,
"properties": {
"facing": "south",
"half": "lower",
@@ -56343,7 +56526,7 @@
}
},
{
- "id": 19032,
+ "id": 19173,
"properties": {
"facing": "south",
"half": "lower",
@@ -56353,7 +56536,7 @@
}
},
{
- "id": 19033,
+ "id": 19174,
"properties": {
"facing": "south",
"half": "lower",
@@ -56363,7 +56546,7 @@
}
},
{
- "id": 19034,
+ "id": 19175,
"properties": {
"facing": "south",
"half": "lower",
@@ -56373,7 +56556,7 @@
}
},
{
- "id": 19035,
+ "id": 19176,
"properties": {
"facing": "south",
"half": "lower",
@@ -56383,7 +56566,7 @@
}
},
{
- "id": 19036,
+ "id": 19177,
"properties": {
"facing": "south",
"half": "lower",
@@ -56393,7 +56576,7 @@
}
},
{
- "id": 19037,
+ "id": 19178,
"properties": {
"facing": "south",
"half": "lower",
@@ -56403,7 +56586,7 @@
}
},
{
- "id": 19038,
+ "id": 19179,
"properties": {
"facing": "south",
"half": "lower",
@@ -56413,7 +56596,7 @@
}
},
{
- "id": 19039,
+ "id": 19180,
"properties": {
"facing": "west",
"half": "upper",
@@ -56423,7 +56606,7 @@
}
},
{
- "id": 19040,
+ "id": 19181,
"properties": {
"facing": "west",
"half": "upper",
@@ -56433,7 +56616,7 @@
}
},
{
- "id": 19041,
+ "id": 19182,
"properties": {
"facing": "west",
"half": "upper",
@@ -56443,7 +56626,7 @@
}
},
{
- "id": 19042,
+ "id": 19183,
"properties": {
"facing": "west",
"half": "upper",
@@ -56453,7 +56636,7 @@
}
},
{
- "id": 19043,
+ "id": 19184,
"properties": {
"facing": "west",
"half": "upper",
@@ -56463,7 +56646,7 @@
}
},
{
- "id": 19044,
+ "id": 19185,
"properties": {
"facing": "west",
"half": "upper",
@@ -56473,7 +56656,7 @@
}
},
{
- "id": 19045,
+ "id": 19186,
"properties": {
"facing": "west",
"half": "upper",
@@ -56483,7 +56666,7 @@
}
},
{
- "id": 19046,
+ "id": 19187,
"properties": {
"facing": "west",
"half": "upper",
@@ -56493,7 +56676,7 @@
}
},
{
- "id": 19047,
+ "id": 19188,
"properties": {
"facing": "west",
"half": "lower",
@@ -56503,7 +56686,7 @@
}
},
{
- "id": 19048,
+ "id": 19189,
"properties": {
"facing": "west",
"half": "lower",
@@ -56513,7 +56696,7 @@
}
},
{
- "id": 19049,
+ "id": 19190,
"properties": {
"facing": "west",
"half": "lower",
@@ -56523,7 +56706,7 @@
}
},
{
- "id": 19050,
+ "id": 19191,
"properties": {
"facing": "west",
"half": "lower",
@@ -56533,7 +56716,7 @@
}
},
{
- "id": 19051,
+ "id": 19192,
"properties": {
"facing": "west",
"half": "lower",
@@ -56543,7 +56726,7 @@
}
},
{
- "id": 19052,
+ "id": 19193,
"properties": {
"facing": "west",
"half": "lower",
@@ -56553,7 +56736,7 @@
}
},
{
- "id": 19053,
+ "id": 19194,
"properties": {
"facing": "west",
"half": "lower",
@@ -56563,7 +56746,7 @@
}
},
{
- "id": 19054,
+ "id": 19195,
"properties": {
"facing": "west",
"half": "lower",
@@ -56573,7 +56756,7 @@
}
},
{
- "id": 19055,
+ "id": 19196,
"properties": {
"facing": "east",
"half": "upper",
@@ -56583,7 +56766,7 @@
}
},
{
- "id": 19056,
+ "id": 19197,
"properties": {
"facing": "east",
"half": "upper",
@@ -56593,7 +56776,7 @@
}
},
{
- "id": 19057,
+ "id": 19198,
"properties": {
"facing": "east",
"half": "upper",
@@ -56603,7 +56786,7 @@
}
},
{
- "id": 19058,
+ "id": 19199,
"properties": {
"facing": "east",
"half": "upper",
@@ -56613,7 +56796,7 @@
}
},
{
- "id": 19059,
+ "id": 19200,
"properties": {
"facing": "east",
"half": "upper",
@@ -56623,7 +56806,7 @@
}
},
{
- "id": 19060,
+ "id": 19201,
"properties": {
"facing": "east",
"half": "upper",
@@ -56633,7 +56816,7 @@
}
},
{
- "id": 19061,
+ "id": 19202,
"properties": {
"facing": "east",
"half": "upper",
@@ -56643,7 +56826,7 @@
}
},
{
- "id": 19062,
+ "id": 19203,
"properties": {
"facing": "east",
"half": "upper",
@@ -56653,7 +56836,7 @@
}
},
{
- "id": 19063,
+ "id": 19204,
"properties": {
"facing": "east",
"half": "lower",
@@ -56663,7 +56846,7 @@
}
},
{
- "id": 19064,
+ "id": 19205,
"properties": {
"facing": "east",
"half": "lower",
@@ -56673,7 +56856,7 @@
}
},
{
- "id": 19065,
+ "id": 19206,
"properties": {
"facing": "east",
"half": "lower",
@@ -56683,7 +56866,7 @@
}
},
{
- "id": 19066,
+ "id": 19207,
"properties": {
"facing": "east",
"half": "lower",
@@ -56693,7 +56876,7 @@
}
},
{
- "id": 19067,
+ "id": 19208,
"properties": {
"facing": "east",
"half": "lower",
@@ -56703,7 +56886,7 @@
}
},
{
- "id": 19068,
+ "id": 19209,
"properties": {
"facing": "east",
"half": "lower",
@@ -56713,7 +56896,7 @@
}
},
{
- "id": 19069,
+ "id": 19210,
"properties": {
"facing": "east",
"half": "lower",
@@ -56723,7 +56906,7 @@
}
},
{
- "id": 19070,
+ "id": 19211,
"properties": {
"facing": "east",
"half": "lower",
@@ -56759,7 +56942,7 @@
},
"states": [
{
- "id": 18543,
+ "id": 18684,
"properties": {
"east": "true",
"north": "true",
@@ -56769,7 +56952,7 @@
}
},
{
- "id": 18544,
+ "id": 18685,
"properties": {
"east": "true",
"north": "true",
@@ -56779,7 +56962,7 @@
}
},
{
- "id": 18545,
+ "id": 18686,
"properties": {
"east": "true",
"north": "true",
@@ -56789,7 +56972,7 @@
}
},
{
- "id": 18546,
+ "id": 18687,
"properties": {
"east": "true",
"north": "true",
@@ -56799,7 +56982,7 @@
}
},
{
- "id": 18547,
+ "id": 18688,
"properties": {
"east": "true",
"north": "true",
@@ -56809,7 +56992,7 @@
}
},
{
- "id": 18548,
+ "id": 18689,
"properties": {
"east": "true",
"north": "true",
@@ -56819,7 +57002,7 @@
}
},
{
- "id": 18549,
+ "id": 18690,
"properties": {
"east": "true",
"north": "true",
@@ -56829,7 +57012,7 @@
}
},
{
- "id": 18550,
+ "id": 18691,
"properties": {
"east": "true",
"north": "true",
@@ -56839,7 +57022,7 @@
}
},
{
- "id": 18551,
+ "id": 18692,
"properties": {
"east": "true",
"north": "false",
@@ -56849,7 +57032,7 @@
}
},
{
- "id": 18552,
+ "id": 18693,
"properties": {
"east": "true",
"north": "false",
@@ -56859,7 +57042,7 @@
}
},
{
- "id": 18553,
+ "id": 18694,
"properties": {
"east": "true",
"north": "false",
@@ -56869,7 +57052,7 @@
}
},
{
- "id": 18554,
+ "id": 18695,
"properties": {
"east": "true",
"north": "false",
@@ -56879,7 +57062,7 @@
}
},
{
- "id": 18555,
+ "id": 18696,
"properties": {
"east": "true",
"north": "false",
@@ -56889,7 +57072,7 @@
}
},
{
- "id": 18556,
+ "id": 18697,
"properties": {
"east": "true",
"north": "false",
@@ -56899,7 +57082,7 @@
}
},
{
- "id": 18557,
+ "id": 18698,
"properties": {
"east": "true",
"north": "false",
@@ -56909,7 +57092,7 @@
}
},
{
- "id": 18558,
+ "id": 18699,
"properties": {
"east": "true",
"north": "false",
@@ -56919,7 +57102,7 @@
}
},
{
- "id": 18559,
+ "id": 18700,
"properties": {
"east": "false",
"north": "true",
@@ -56929,7 +57112,7 @@
}
},
{
- "id": 18560,
+ "id": 18701,
"properties": {
"east": "false",
"north": "true",
@@ -56939,7 +57122,7 @@
}
},
{
- "id": 18561,
+ "id": 18702,
"properties": {
"east": "false",
"north": "true",
@@ -56949,7 +57132,7 @@
}
},
{
- "id": 18562,
+ "id": 18703,
"properties": {
"east": "false",
"north": "true",
@@ -56959,7 +57142,7 @@
}
},
{
- "id": 18563,
+ "id": 18704,
"properties": {
"east": "false",
"north": "true",
@@ -56969,7 +57152,7 @@
}
},
{
- "id": 18564,
+ "id": 18705,
"properties": {
"east": "false",
"north": "true",
@@ -56979,7 +57162,7 @@
}
},
{
- "id": 18565,
+ "id": 18706,
"properties": {
"east": "false",
"north": "true",
@@ -56989,7 +57172,7 @@
}
},
{
- "id": 18566,
+ "id": 18707,
"properties": {
"east": "false",
"north": "true",
@@ -56999,7 +57182,7 @@
}
},
{
- "id": 18567,
+ "id": 18708,
"properties": {
"east": "false",
"north": "false",
@@ -57009,7 +57192,7 @@
}
},
{
- "id": 18568,
+ "id": 18709,
"properties": {
"east": "false",
"north": "false",
@@ -57019,7 +57202,7 @@
}
},
{
- "id": 18569,
+ "id": 18710,
"properties": {
"east": "false",
"north": "false",
@@ -57029,7 +57212,7 @@
}
},
{
- "id": 18570,
+ "id": 18711,
"properties": {
"east": "false",
"north": "false",
@@ -57039,7 +57222,7 @@
}
},
{
- "id": 18571,
+ "id": 18712,
"properties": {
"east": "false",
"north": "false",
@@ -57049,7 +57232,7 @@
}
},
{
- "id": 18572,
+ "id": 18713,
"properties": {
"east": "false",
"north": "false",
@@ -57059,7 +57242,7 @@
}
},
{
- "id": 18573,
+ "id": 18714,
"properties": {
"east": "false",
"north": "false",
@@ -57070,7 +57253,7 @@
},
{
"default": true,
- "id": 18574,
+ "id": 18715,
"properties": {
"east": "false",
"north": "false",
@@ -57104,7 +57287,7 @@
},
"states": [
{
- "id": 18735,
+ "id": 18876,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -57113,7 +57296,7 @@
}
},
{
- "id": 18736,
+ "id": 18877,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -57122,7 +57305,7 @@
}
},
{
- "id": 18737,
+ "id": 18878,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -57131,7 +57314,7 @@
}
},
{
- "id": 18738,
+ "id": 18879,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -57140,7 +57323,7 @@
}
},
{
- "id": 18739,
+ "id": 18880,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -57149,7 +57332,7 @@
}
},
{
- "id": 18740,
+ "id": 18881,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -57158,7 +57341,7 @@
}
},
{
- "id": 18741,
+ "id": 18882,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -57168,7 +57351,7 @@
},
{
"default": true,
- "id": 18742,
+ "id": 18883,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -57177,7 +57360,7 @@
}
},
{
- "id": 18743,
+ "id": 18884,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -57186,7 +57369,7 @@
}
},
{
- "id": 18744,
+ "id": 18885,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -57195,7 +57378,7 @@
}
},
{
- "id": 18745,
+ "id": 18886,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -57204,7 +57387,7 @@
}
},
{
- "id": 18746,
+ "id": 18887,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -57213,7 +57396,7 @@
}
},
{
- "id": 18747,
+ "id": 18888,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -57222,7 +57405,7 @@
}
},
{
- "id": 18748,
+ "id": 18889,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -57231,7 +57414,7 @@
}
},
{
- "id": 18749,
+ "id": 18890,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -57240,7 +57423,7 @@
}
},
{
- "id": 18750,
+ "id": 18891,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -57249,7 +57432,7 @@
}
},
{
- "id": 18751,
+ "id": 18892,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -57258,7 +57441,7 @@
}
},
{
- "id": 18752,
+ "id": 18893,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -57267,7 +57450,7 @@
}
},
{
- "id": 18753,
+ "id": 18894,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -57276,7 +57459,7 @@
}
},
{
- "id": 18754,
+ "id": 18895,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -57285,7 +57468,7 @@
}
},
{
- "id": 18755,
+ "id": 18896,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -57294,7 +57477,7 @@
}
},
{
- "id": 18756,
+ "id": 18897,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -57303,7 +57486,7 @@
}
},
{
- "id": 18757,
+ "id": 18898,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -57312,7 +57495,7 @@
}
},
{
- "id": 18758,
+ "id": 18899,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -57321,7 +57504,7 @@
}
},
{
- "id": 18759,
+ "id": 18900,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -57330,7 +57513,7 @@
}
},
{
- "id": 18760,
+ "id": 18901,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -57339,7 +57522,7 @@
}
},
{
- "id": 18761,
+ "id": 18902,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -57348,7 +57531,7 @@
}
},
{
- "id": 18762,
+ "id": 18903,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -57357,7 +57540,7 @@
}
},
{
- "id": 18763,
+ "id": 18904,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -57366,7 +57549,7 @@
}
},
{
- "id": 18764,
+ "id": 18905,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -57375,7 +57558,7 @@
}
},
{
- "id": 18765,
+ "id": 18906,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -57384,7 +57567,7 @@
}
},
{
- "id": 18766,
+ "id": 18907,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -57398,7 +57581,7 @@
"states": [
{
"default": true,
- "id": 18468
+ "id": 18609
}
]
},
@@ -57957,20 +58140,20 @@
},
"states": [
{
- "id": 18461,
+ "id": 18602,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18462,
+ "id": 18603,
"properties": {
"axis": "y"
}
},
{
- "id": 18463,
+ "id": 18604,
"properties": {
"axis": "z"
}
@@ -57981,7 +58164,7 @@
"states": [
{
"default": true,
- "id": 18467
+ "id": 18608
}
]
},
@@ -57989,7 +58172,7 @@
"states": [
{
"default": true,
- "id": 18525
+ "id": 18666
}
]
},
@@ -58002,14 +58185,14 @@
},
"states": [
{
- "id": 18539,
+ "id": 18680,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 18540,
+ "id": 18681,
"properties": {
"powered": "false"
}
@@ -58020,7 +58203,7 @@
"states": [
{
"default": true,
- "id": 18524
+ "id": 18665
}
]
},
@@ -58051,7 +58234,7 @@
},
"states": [
{
- "id": 19135,
+ "id": 19276,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -58059,217 +58242,217 @@
},
{
"default": true,
- "id": 19136,
+ "id": 19277,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 19137,
+ "id": 19278,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 19138,
+ "id": 19279,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 19139,
+ "id": 19280,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 19140,
+ "id": 19281,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 19141,
+ "id": 19282,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 19142,
+ "id": 19283,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 19143,
+ "id": 19284,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 19144,
+ "id": 19285,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 19145,
+ "id": 19286,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 19146,
+ "id": 19287,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 19147,
+ "id": 19288,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 19148,
+ "id": 19289,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 19149,
+ "id": 19290,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 19150,
+ "id": 19291,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 19151,
+ "id": 19292,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 19152,
+ "id": 19293,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 19153,
+ "id": 19294,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 19154,
+ "id": 19295,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 19155,
+ "id": 19296,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 19156,
+ "id": 19297,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 19157,
+ "id": 19298,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 19158,
+ "id": 19299,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 19159,
+ "id": 19300,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 19160,
+ "id": 19301,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 19161,
+ "id": 19302,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 19162,
+ "id": 19303,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 19163,
+ "id": 19304,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 19164,
+ "id": 19305,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 19165,
+ "id": 19306,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 19166,
+ "id": 19307,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -58291,21 +58474,21 @@
},
"states": [
{
- "id": 18527,
+ "id": 18668,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 18528,
+ "id": 18669,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 18529,
+ "id": 18670,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -58313,21 +58496,21 @@
},
{
"default": true,
- "id": 18530,
+ "id": 18671,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 18531,
+ "id": 18672,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 18532,
+ "id": 18673,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -58361,7 +58544,7 @@
},
"states": [
{
- "id": 18799,
+ "id": 18940,
"properties": {
"facing": "north",
"half": "top",
@@ -58370,7 +58553,7 @@
}
},
{
- "id": 18800,
+ "id": 18941,
"properties": {
"facing": "north",
"half": "top",
@@ -58379,7 +58562,7 @@
}
},
{
- "id": 18801,
+ "id": 18942,
"properties": {
"facing": "north",
"half": "top",
@@ -58388,7 +58571,7 @@
}
},
{
- "id": 18802,
+ "id": 18943,
"properties": {
"facing": "north",
"half": "top",
@@ -58397,7 +58580,7 @@
}
},
{
- "id": 18803,
+ "id": 18944,
"properties": {
"facing": "north",
"half": "top",
@@ -58406,7 +58589,7 @@
}
},
{
- "id": 18804,
+ "id": 18945,
"properties": {
"facing": "north",
"half": "top",
@@ -58415,7 +58598,7 @@
}
},
{
- "id": 18805,
+ "id": 18946,
"properties": {
"facing": "north",
"half": "top",
@@ -58424,7 +58607,7 @@
}
},
{
- "id": 18806,
+ "id": 18947,
"properties": {
"facing": "north",
"half": "top",
@@ -58433,7 +58616,7 @@
}
},
{
- "id": 18807,
+ "id": 18948,
"properties": {
"facing": "north",
"half": "top",
@@ -58442,7 +58625,7 @@
}
},
{
- "id": 18808,
+ "id": 18949,
"properties": {
"facing": "north",
"half": "top",
@@ -58451,7 +58634,7 @@
}
},
{
- "id": 18809,
+ "id": 18950,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58461,7 +58644,7 @@
},
{
"default": true,
- "id": 18810,
+ "id": 18951,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58470,7 +58653,7 @@
}
},
{
- "id": 18811,
+ "id": 18952,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58479,7 +58662,7 @@
}
},
{
- "id": 18812,
+ "id": 18953,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58488,7 +58671,7 @@
}
},
{
- "id": 18813,
+ "id": 18954,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58497,7 +58680,7 @@
}
},
{
- "id": 18814,
+ "id": 18955,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58506,7 +58689,7 @@
}
},
{
- "id": 18815,
+ "id": 18956,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58515,7 +58698,7 @@
}
},
{
- "id": 18816,
+ "id": 18957,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58524,7 +58707,7 @@
}
},
{
- "id": 18817,
+ "id": 18958,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58533,7 +58716,7 @@
}
},
{
- "id": 18818,
+ "id": 18959,
"properties": {
"facing": "north",
"half": "bottom",
@@ -58542,7 +58725,7 @@
}
},
{
- "id": 18819,
+ "id": 18960,
"properties": {
"facing": "south",
"half": "top",
@@ -58551,7 +58734,7 @@
}
},
{
- "id": 18820,
+ "id": 18961,
"properties": {
"facing": "south",
"half": "top",
@@ -58560,7 +58743,7 @@
}
},
{
- "id": 18821,
+ "id": 18962,
"properties": {
"facing": "south",
"half": "top",
@@ -58569,7 +58752,7 @@
}
},
{
- "id": 18822,
+ "id": 18963,
"properties": {
"facing": "south",
"half": "top",
@@ -58578,7 +58761,7 @@
}
},
{
- "id": 18823,
+ "id": 18964,
"properties": {
"facing": "south",
"half": "top",
@@ -58587,7 +58770,7 @@
}
},
{
- "id": 18824,
+ "id": 18965,
"properties": {
"facing": "south",
"half": "top",
@@ -58596,7 +58779,7 @@
}
},
{
- "id": 18825,
+ "id": 18966,
"properties": {
"facing": "south",
"half": "top",
@@ -58605,7 +58788,7 @@
}
},
{
- "id": 18826,
+ "id": 18967,
"properties": {
"facing": "south",
"half": "top",
@@ -58614,7 +58797,7 @@
}
},
{
- "id": 18827,
+ "id": 18968,
"properties": {
"facing": "south",
"half": "top",
@@ -58623,7 +58806,7 @@
}
},
{
- "id": 18828,
+ "id": 18969,
"properties": {
"facing": "south",
"half": "top",
@@ -58632,7 +58815,7 @@
}
},
{
- "id": 18829,
+ "id": 18970,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58641,7 +58824,7 @@
}
},
{
- "id": 18830,
+ "id": 18971,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58650,7 +58833,7 @@
}
},
{
- "id": 18831,
+ "id": 18972,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58659,7 +58842,7 @@
}
},
{
- "id": 18832,
+ "id": 18973,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58668,7 +58851,7 @@
}
},
{
- "id": 18833,
+ "id": 18974,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58677,7 +58860,7 @@
}
},
{
- "id": 18834,
+ "id": 18975,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58686,7 +58869,7 @@
}
},
{
- "id": 18835,
+ "id": 18976,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58695,7 +58878,7 @@
}
},
{
- "id": 18836,
+ "id": 18977,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58704,7 +58887,7 @@
}
},
{
- "id": 18837,
+ "id": 18978,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58713,7 +58896,7 @@
}
},
{
- "id": 18838,
+ "id": 18979,
"properties": {
"facing": "south",
"half": "bottom",
@@ -58722,7 +58905,7 @@
}
},
{
- "id": 18839,
+ "id": 18980,
"properties": {
"facing": "west",
"half": "top",
@@ -58731,7 +58914,7 @@
}
},
{
- "id": 18840,
+ "id": 18981,
"properties": {
"facing": "west",
"half": "top",
@@ -58740,7 +58923,7 @@
}
},
{
- "id": 18841,
+ "id": 18982,
"properties": {
"facing": "west",
"half": "top",
@@ -58749,7 +58932,7 @@
}
},
{
- "id": 18842,
+ "id": 18983,
"properties": {
"facing": "west",
"half": "top",
@@ -58758,7 +58941,7 @@
}
},
{
- "id": 18843,
+ "id": 18984,
"properties": {
"facing": "west",
"half": "top",
@@ -58767,7 +58950,7 @@
}
},
{
- "id": 18844,
+ "id": 18985,
"properties": {
"facing": "west",
"half": "top",
@@ -58776,7 +58959,7 @@
}
},
{
- "id": 18845,
+ "id": 18986,
"properties": {
"facing": "west",
"half": "top",
@@ -58785,7 +58968,7 @@
}
},
{
- "id": 18846,
+ "id": 18987,
"properties": {
"facing": "west",
"half": "top",
@@ -58794,7 +58977,7 @@
}
},
{
- "id": 18847,
+ "id": 18988,
"properties": {
"facing": "west",
"half": "top",
@@ -58803,7 +58986,7 @@
}
},
{
- "id": 18848,
+ "id": 18989,
"properties": {
"facing": "west",
"half": "top",
@@ -58812,7 +58995,7 @@
}
},
{
- "id": 18849,
+ "id": 18990,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58821,7 +59004,7 @@
}
},
{
- "id": 18850,
+ "id": 18991,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58830,7 +59013,7 @@
}
},
{
- "id": 18851,
+ "id": 18992,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58839,7 +59022,7 @@
}
},
{
- "id": 18852,
+ "id": 18993,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58848,7 +59031,7 @@
}
},
{
- "id": 18853,
+ "id": 18994,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58857,7 +59040,7 @@
}
},
{
- "id": 18854,
+ "id": 18995,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58866,7 +59049,7 @@
}
},
{
- "id": 18855,
+ "id": 18996,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58875,7 +59058,7 @@
}
},
{
- "id": 18856,
+ "id": 18997,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58884,7 +59067,7 @@
}
},
{
- "id": 18857,
+ "id": 18998,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58893,7 +59076,7 @@
}
},
{
- "id": 18858,
+ "id": 18999,
"properties": {
"facing": "west",
"half": "bottom",
@@ -58902,7 +59085,7 @@
}
},
{
- "id": 18859,
+ "id": 19000,
"properties": {
"facing": "east",
"half": "top",
@@ -58911,7 +59094,7 @@
}
},
{
- "id": 18860,
+ "id": 19001,
"properties": {
"facing": "east",
"half": "top",
@@ -58920,7 +59103,7 @@
}
},
{
- "id": 18861,
+ "id": 19002,
"properties": {
"facing": "east",
"half": "top",
@@ -58929,7 +59112,7 @@
}
},
{
- "id": 18862,
+ "id": 19003,
"properties": {
"facing": "east",
"half": "top",
@@ -58938,7 +59121,7 @@
}
},
{
- "id": 18863,
+ "id": 19004,
"properties": {
"facing": "east",
"half": "top",
@@ -58947,7 +59130,7 @@
}
},
{
- "id": 18864,
+ "id": 19005,
"properties": {
"facing": "east",
"half": "top",
@@ -58956,7 +59139,7 @@
}
},
{
- "id": 18865,
+ "id": 19006,
"properties": {
"facing": "east",
"half": "top",
@@ -58965,7 +59148,7 @@
}
},
{
- "id": 18866,
+ "id": 19007,
"properties": {
"facing": "east",
"half": "top",
@@ -58974,7 +59157,7 @@
}
},
{
- "id": 18867,
+ "id": 19008,
"properties": {
"facing": "east",
"half": "top",
@@ -58983,7 +59166,7 @@
}
},
{
- "id": 18868,
+ "id": 19009,
"properties": {
"facing": "east",
"half": "top",
@@ -58992,7 +59175,7 @@
}
},
{
- "id": 18869,
+ "id": 19010,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59001,7 +59184,7 @@
}
},
{
- "id": 18870,
+ "id": 19011,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59010,7 +59193,7 @@
}
},
{
- "id": 18871,
+ "id": 19012,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59019,7 +59202,7 @@
}
},
{
- "id": 18872,
+ "id": 19013,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59028,7 +59211,7 @@
}
},
{
- "id": 18873,
+ "id": 19014,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59037,7 +59220,7 @@
}
},
{
- "id": 18874,
+ "id": 19015,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59046,7 +59229,7 @@
}
},
{
- "id": 18875,
+ "id": 19016,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59055,7 +59238,7 @@
}
},
{
- "id": 18876,
+ "id": 19017,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59064,7 +59247,7 @@
}
},
{
- "id": 18877,
+ "id": 19018,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59073,7 +59256,7 @@
}
},
{
- "id": 18878,
+ "id": 19019,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59093,20 +59276,20 @@
},
"states": [
{
- "id": 18455,
+ "id": 18596,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18456,
+ "id": 18597,
"properties": {
"axis": "y"
}
},
{
- "id": 18457,
+ "id": 18598,
"properties": {
"axis": "z"
}
@@ -59140,7 +59323,7 @@
},
"states": [
{
- "id": 18607,
+ "id": 18748,
"properties": {
"facing": "north",
"half": "top",
@@ -59150,7 +59333,7 @@
}
},
{
- "id": 18608,
+ "id": 18749,
"properties": {
"facing": "north",
"half": "top",
@@ -59160,7 +59343,7 @@
}
},
{
- "id": 18609,
+ "id": 18750,
"properties": {
"facing": "north",
"half": "top",
@@ -59170,7 +59353,7 @@
}
},
{
- "id": 18610,
+ "id": 18751,
"properties": {
"facing": "north",
"half": "top",
@@ -59180,7 +59363,7 @@
}
},
{
- "id": 18611,
+ "id": 18752,
"properties": {
"facing": "north",
"half": "top",
@@ -59190,7 +59373,7 @@
}
},
{
- "id": 18612,
+ "id": 18753,
"properties": {
"facing": "north",
"half": "top",
@@ -59200,7 +59383,7 @@
}
},
{
- "id": 18613,
+ "id": 18754,
"properties": {
"facing": "north",
"half": "top",
@@ -59210,7 +59393,7 @@
}
},
{
- "id": 18614,
+ "id": 18755,
"properties": {
"facing": "north",
"half": "top",
@@ -59220,7 +59403,7 @@
}
},
{
- "id": 18615,
+ "id": 18756,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59230,7 +59413,7 @@
}
},
{
- "id": 18616,
+ "id": 18757,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59240,7 +59423,7 @@
}
},
{
- "id": 18617,
+ "id": 18758,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59250,7 +59433,7 @@
}
},
{
- "id": 18618,
+ "id": 18759,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59260,7 +59443,7 @@
}
},
{
- "id": 18619,
+ "id": 18760,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59270,7 +59453,7 @@
}
},
{
- "id": 18620,
+ "id": 18761,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59280,7 +59463,7 @@
}
},
{
- "id": 18621,
+ "id": 18762,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59291,7 +59474,7 @@
},
{
"default": true,
- "id": 18622,
+ "id": 18763,
"properties": {
"facing": "north",
"half": "bottom",
@@ -59301,7 +59484,7 @@
}
},
{
- "id": 18623,
+ "id": 18764,
"properties": {
"facing": "south",
"half": "top",
@@ -59311,7 +59494,7 @@
}
},
{
- "id": 18624,
+ "id": 18765,
"properties": {
"facing": "south",
"half": "top",
@@ -59321,7 +59504,7 @@
}
},
{
- "id": 18625,
+ "id": 18766,
"properties": {
"facing": "south",
"half": "top",
@@ -59331,7 +59514,7 @@
}
},
{
- "id": 18626,
+ "id": 18767,
"properties": {
"facing": "south",
"half": "top",
@@ -59341,7 +59524,7 @@
}
},
{
- "id": 18627,
+ "id": 18768,
"properties": {
"facing": "south",
"half": "top",
@@ -59351,7 +59534,7 @@
}
},
{
- "id": 18628,
+ "id": 18769,
"properties": {
"facing": "south",
"half": "top",
@@ -59361,7 +59544,7 @@
}
},
{
- "id": 18629,
+ "id": 18770,
"properties": {
"facing": "south",
"half": "top",
@@ -59371,7 +59554,7 @@
}
},
{
- "id": 18630,
+ "id": 18771,
"properties": {
"facing": "south",
"half": "top",
@@ -59381,7 +59564,7 @@
}
},
{
- "id": 18631,
+ "id": 18772,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59391,7 +59574,7 @@
}
},
{
- "id": 18632,
+ "id": 18773,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59401,7 +59584,7 @@
}
},
{
- "id": 18633,
+ "id": 18774,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59411,7 +59594,7 @@
}
},
{
- "id": 18634,
+ "id": 18775,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59421,7 +59604,7 @@
}
},
{
- "id": 18635,
+ "id": 18776,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59431,7 +59614,7 @@
}
},
{
- "id": 18636,
+ "id": 18777,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59441,7 +59624,7 @@
}
},
{
- "id": 18637,
+ "id": 18778,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59451,7 +59634,7 @@
}
},
{
- "id": 18638,
+ "id": 18779,
"properties": {
"facing": "south",
"half": "bottom",
@@ -59461,7 +59644,7 @@
}
},
{
- "id": 18639,
+ "id": 18780,
"properties": {
"facing": "west",
"half": "top",
@@ -59471,7 +59654,7 @@
}
},
{
- "id": 18640,
+ "id": 18781,
"properties": {
"facing": "west",
"half": "top",
@@ -59481,7 +59664,7 @@
}
},
{
- "id": 18641,
+ "id": 18782,
"properties": {
"facing": "west",
"half": "top",
@@ -59491,7 +59674,7 @@
}
},
{
- "id": 18642,
+ "id": 18783,
"properties": {
"facing": "west",
"half": "top",
@@ -59501,7 +59684,7 @@
}
},
{
- "id": 18643,
+ "id": 18784,
"properties": {
"facing": "west",
"half": "top",
@@ -59511,7 +59694,7 @@
}
},
{
- "id": 18644,
+ "id": 18785,
"properties": {
"facing": "west",
"half": "top",
@@ -59521,7 +59704,7 @@
}
},
{
- "id": 18645,
+ "id": 18786,
"properties": {
"facing": "west",
"half": "top",
@@ -59531,7 +59714,7 @@
}
},
{
- "id": 18646,
+ "id": 18787,
"properties": {
"facing": "west",
"half": "top",
@@ -59541,7 +59724,7 @@
}
},
{
- "id": 18647,
+ "id": 18788,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59551,7 +59734,7 @@
}
},
{
- "id": 18648,
+ "id": 18789,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59561,7 +59744,7 @@
}
},
{
- "id": 18649,
+ "id": 18790,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59571,7 +59754,7 @@
}
},
{
- "id": 18650,
+ "id": 18791,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59581,7 +59764,7 @@
}
},
{
- "id": 18651,
+ "id": 18792,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59591,7 +59774,7 @@
}
},
{
- "id": 18652,
+ "id": 18793,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59601,7 +59784,7 @@
}
},
{
- "id": 18653,
+ "id": 18794,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59611,7 +59794,7 @@
}
},
{
- "id": 18654,
+ "id": 18795,
"properties": {
"facing": "west",
"half": "bottom",
@@ -59621,7 +59804,7 @@
}
},
{
- "id": 18655,
+ "id": 18796,
"properties": {
"facing": "east",
"half": "top",
@@ -59631,7 +59814,7 @@
}
},
{
- "id": 18656,
+ "id": 18797,
"properties": {
"facing": "east",
"half": "top",
@@ -59641,7 +59824,7 @@
}
},
{
- "id": 18657,
+ "id": 18798,
"properties": {
"facing": "east",
"half": "top",
@@ -59651,7 +59834,7 @@
}
},
{
- "id": 18658,
+ "id": 18799,
"properties": {
"facing": "east",
"half": "top",
@@ -59661,7 +59844,7 @@
}
},
{
- "id": 18659,
+ "id": 18800,
"properties": {
"facing": "east",
"half": "top",
@@ -59671,7 +59854,7 @@
}
},
{
- "id": 18660,
+ "id": 18801,
"properties": {
"facing": "east",
"half": "top",
@@ -59681,7 +59864,7 @@
}
},
{
- "id": 18661,
+ "id": 18802,
"properties": {
"facing": "east",
"half": "top",
@@ -59691,7 +59874,7 @@
}
},
{
- "id": 18662,
+ "id": 18803,
"properties": {
"facing": "east",
"half": "top",
@@ -59701,7 +59884,7 @@
}
},
{
- "id": 18663,
+ "id": 18804,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59711,7 +59894,7 @@
}
},
{
- "id": 18664,
+ "id": 18805,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59721,7 +59904,7 @@
}
},
{
- "id": 18665,
+ "id": 18806,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59731,7 +59914,7 @@
}
},
{
- "id": 18666,
+ "id": 18807,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59741,7 +59924,7 @@
}
},
{
- "id": 18667,
+ "id": 18808,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59751,7 +59934,7 @@
}
},
{
- "id": 18668,
+ "id": 18809,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59761,7 +59944,7 @@
}
},
{
- "id": 18669,
+ "id": 18810,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59771,7 +59954,7 @@
}
},
{
- "id": 18670,
+ "id": 18811,
"properties": {
"facing": "east",
"half": "bottom",
@@ -59870,7 +60053,7 @@
},
"states": [
{
- "id": 19199,
+ "id": 19340,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -59878,49 +60061,49 @@
},
{
"default": true,
- "id": 19200,
+ "id": 19341,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 19201,
+ "id": 19342,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 19202,
+ "id": 19343,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 19203,
+ "id": 19344,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 19204,
+ "id": 19345,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 19205,
+ "id": 19346,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 19206,
+ "id": 19347,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -59932,7 +60115,7 @@
"states": [
{
"default": true,
- "id": 19308
+ "id": 19449
}
]
},
@@ -59940,7 +60123,7 @@
"states": [
{
"default": true,
- "id": 21572
+ "id": 21713
}
]
},
@@ -59958,21 +60141,21 @@
},
"states": [
{
- "id": 21911,
+ "id": 22052,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21912,
+ "id": 22053,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21913,
+ "id": 22054,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -59980,21 +60163,21 @@
},
{
"default": true,
- "id": 21914,
+ "id": 22055,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21915,
+ "id": 22056,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21916,
+ "id": 22057,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -60028,7 +60211,7 @@
},
"states": [
{
- "id": 21813,
+ "id": 21954,
"properties": {
"facing": "north",
"half": "top",
@@ -60037,7 +60220,7 @@
}
},
{
- "id": 21814,
+ "id": 21955,
"properties": {
"facing": "north",
"half": "top",
@@ -60046,7 +60229,7 @@
}
},
{
- "id": 21815,
+ "id": 21956,
"properties": {
"facing": "north",
"half": "top",
@@ -60055,7 +60238,7 @@
}
},
{
- "id": 21816,
+ "id": 21957,
"properties": {
"facing": "north",
"half": "top",
@@ -60064,7 +60247,7 @@
}
},
{
- "id": 21817,
+ "id": 21958,
"properties": {
"facing": "north",
"half": "top",
@@ -60073,7 +60256,7 @@
}
},
{
- "id": 21818,
+ "id": 21959,
"properties": {
"facing": "north",
"half": "top",
@@ -60082,7 +60265,7 @@
}
},
{
- "id": 21819,
+ "id": 21960,
"properties": {
"facing": "north",
"half": "top",
@@ -60091,7 +60274,7 @@
}
},
{
- "id": 21820,
+ "id": 21961,
"properties": {
"facing": "north",
"half": "top",
@@ -60100,7 +60283,7 @@
}
},
{
- "id": 21821,
+ "id": 21962,
"properties": {
"facing": "north",
"half": "top",
@@ -60109,7 +60292,7 @@
}
},
{
- "id": 21822,
+ "id": 21963,
"properties": {
"facing": "north",
"half": "top",
@@ -60118,7 +60301,7 @@
}
},
{
- "id": 21823,
+ "id": 21964,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60128,7 +60311,7 @@
},
{
"default": true,
- "id": 21824,
+ "id": 21965,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60137,7 +60320,7 @@
}
},
{
- "id": 21825,
+ "id": 21966,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60146,7 +60329,7 @@
}
},
{
- "id": 21826,
+ "id": 21967,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60155,7 +60338,7 @@
}
},
{
- "id": 21827,
+ "id": 21968,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60164,7 +60347,7 @@
}
},
{
- "id": 21828,
+ "id": 21969,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60173,7 +60356,7 @@
}
},
{
- "id": 21829,
+ "id": 21970,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60182,7 +60365,7 @@
}
},
{
- "id": 21830,
+ "id": 21971,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60191,7 +60374,7 @@
}
},
{
- "id": 21831,
+ "id": 21972,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60200,7 +60383,7 @@
}
},
{
- "id": 21832,
+ "id": 21973,
"properties": {
"facing": "north",
"half": "bottom",
@@ -60209,7 +60392,7 @@
}
},
{
- "id": 21833,
+ "id": 21974,
"properties": {
"facing": "south",
"half": "top",
@@ -60218,7 +60401,7 @@
}
},
{
- "id": 21834,
+ "id": 21975,
"properties": {
"facing": "south",
"half": "top",
@@ -60227,7 +60410,7 @@
}
},
{
- "id": 21835,
+ "id": 21976,
"properties": {
"facing": "south",
"half": "top",
@@ -60236,7 +60419,7 @@
}
},
{
- "id": 21836,
+ "id": 21977,
"properties": {
"facing": "south",
"half": "top",
@@ -60245,7 +60428,7 @@
}
},
{
- "id": 21837,
+ "id": 21978,
"properties": {
"facing": "south",
"half": "top",
@@ -60254,7 +60437,7 @@
}
},
{
- "id": 21838,
+ "id": 21979,
"properties": {
"facing": "south",
"half": "top",
@@ -60263,7 +60446,7 @@
}
},
{
- "id": 21839,
+ "id": 21980,
"properties": {
"facing": "south",
"half": "top",
@@ -60272,7 +60455,7 @@
}
},
{
- "id": 21840,
+ "id": 21981,
"properties": {
"facing": "south",
"half": "top",
@@ -60281,7 +60464,7 @@
}
},
{
- "id": 21841,
+ "id": 21982,
"properties": {
"facing": "south",
"half": "top",
@@ -60290,7 +60473,7 @@
}
},
{
- "id": 21842,
+ "id": 21983,
"properties": {
"facing": "south",
"half": "top",
@@ -60299,7 +60482,7 @@
}
},
{
- "id": 21843,
+ "id": 21984,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60308,7 +60491,7 @@
}
},
{
- "id": 21844,
+ "id": 21985,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60317,7 +60500,7 @@
}
},
{
- "id": 21845,
+ "id": 21986,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60326,7 +60509,7 @@
}
},
{
- "id": 21846,
+ "id": 21987,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60335,7 +60518,7 @@
}
},
{
- "id": 21847,
+ "id": 21988,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60344,7 +60527,7 @@
}
},
{
- "id": 21848,
+ "id": 21989,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60353,7 +60536,7 @@
}
},
{
- "id": 21849,
+ "id": 21990,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60362,7 +60545,7 @@
}
},
{
- "id": 21850,
+ "id": 21991,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60371,7 +60554,7 @@
}
},
{
- "id": 21851,
+ "id": 21992,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60380,7 +60563,7 @@
}
},
{
- "id": 21852,
+ "id": 21993,
"properties": {
"facing": "south",
"half": "bottom",
@@ -60389,7 +60572,7 @@
}
},
{
- "id": 21853,
+ "id": 21994,
"properties": {
"facing": "west",
"half": "top",
@@ -60398,7 +60581,7 @@
}
},
{
- "id": 21854,
+ "id": 21995,
"properties": {
"facing": "west",
"half": "top",
@@ -60407,7 +60590,7 @@
}
},
{
- "id": 21855,
+ "id": 21996,
"properties": {
"facing": "west",
"half": "top",
@@ -60416,7 +60599,7 @@
}
},
{
- "id": 21856,
+ "id": 21997,
"properties": {
"facing": "west",
"half": "top",
@@ -60425,7 +60608,7 @@
}
},
{
- "id": 21857,
+ "id": 21998,
"properties": {
"facing": "west",
"half": "top",
@@ -60434,7 +60617,7 @@
}
},
{
- "id": 21858,
+ "id": 21999,
"properties": {
"facing": "west",
"half": "top",
@@ -60443,7 +60626,7 @@
}
},
{
- "id": 21859,
+ "id": 22000,
"properties": {
"facing": "west",
"half": "top",
@@ -60452,7 +60635,7 @@
}
},
{
- "id": 21860,
+ "id": 22001,
"properties": {
"facing": "west",
"half": "top",
@@ -60461,7 +60644,7 @@
}
},
{
- "id": 21861,
+ "id": 22002,
"properties": {
"facing": "west",
"half": "top",
@@ -60470,7 +60653,7 @@
}
},
{
- "id": 21862,
+ "id": 22003,
"properties": {
"facing": "west",
"half": "top",
@@ -60479,7 +60662,7 @@
}
},
{
- "id": 21863,
+ "id": 22004,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60488,7 +60671,7 @@
}
},
{
- "id": 21864,
+ "id": 22005,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60497,7 +60680,7 @@
}
},
{
- "id": 21865,
+ "id": 22006,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60506,7 +60689,7 @@
}
},
{
- "id": 21866,
+ "id": 22007,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60515,7 +60698,7 @@
}
},
{
- "id": 21867,
+ "id": 22008,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60524,7 +60707,7 @@
}
},
{
- "id": 21868,
+ "id": 22009,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60533,7 +60716,7 @@
}
},
{
- "id": 21869,
+ "id": 22010,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60542,7 +60725,7 @@
}
},
{
- "id": 21870,
+ "id": 22011,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60551,7 +60734,7 @@
}
},
{
- "id": 21871,
+ "id": 22012,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60560,7 +60743,7 @@
}
},
{
- "id": 21872,
+ "id": 22013,
"properties": {
"facing": "west",
"half": "bottom",
@@ -60569,7 +60752,7 @@
}
},
{
- "id": 21873,
+ "id": 22014,
"properties": {
"facing": "east",
"half": "top",
@@ -60578,7 +60761,7 @@
}
},
{
- "id": 21874,
+ "id": 22015,
"properties": {
"facing": "east",
"half": "top",
@@ -60587,7 +60770,7 @@
}
},
{
- "id": 21875,
+ "id": 22016,
"properties": {
"facing": "east",
"half": "top",
@@ -60596,7 +60779,7 @@
}
},
{
- "id": 21876,
+ "id": 22017,
"properties": {
"facing": "east",
"half": "top",
@@ -60605,7 +60788,7 @@
}
},
{
- "id": 21877,
+ "id": 22018,
"properties": {
"facing": "east",
"half": "top",
@@ -60614,7 +60797,7 @@
}
},
{
- "id": 21878,
+ "id": 22019,
"properties": {
"facing": "east",
"half": "top",
@@ -60623,7 +60806,7 @@
}
},
{
- "id": 21879,
+ "id": 22020,
"properties": {
"facing": "east",
"half": "top",
@@ -60632,7 +60815,7 @@
}
},
{
- "id": 21880,
+ "id": 22021,
"properties": {
"facing": "east",
"half": "top",
@@ -60641,7 +60824,7 @@
}
},
{
- "id": 21881,
+ "id": 22022,
"properties": {
"facing": "east",
"half": "top",
@@ -60650,7 +60833,7 @@
}
},
{
- "id": 21882,
+ "id": 22023,
"properties": {
"facing": "east",
"half": "top",
@@ -60659,7 +60842,7 @@
}
},
{
- "id": 21883,
+ "id": 22024,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60668,7 +60851,7 @@
}
},
{
- "id": 21884,
+ "id": 22025,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60677,7 +60860,7 @@
}
},
{
- "id": 21885,
+ "id": 22026,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60686,7 +60869,7 @@
}
},
{
- "id": 21886,
+ "id": 22027,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60695,7 +60878,7 @@
}
},
{
- "id": 21887,
+ "id": 22028,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60704,7 +60887,7 @@
}
},
{
- "id": 21888,
+ "id": 22029,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60713,7 +60896,7 @@
}
},
{
- "id": 21889,
+ "id": 22030,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60722,7 +60905,7 @@
}
},
{
- "id": 21890,
+ "id": 22031,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60731,7 +60914,7 @@
}
},
{
- "id": 21891,
+ "id": 22032,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60740,7 +60923,7 @@
}
},
{
- "id": 21892,
+ "id": 22033,
"properties": {
"facing": "east",
"half": "bottom",
@@ -60754,7 +60937,7 @@
"states": [
{
"default": true,
- "id": 10940
+ "id": 11081
}
]
},
@@ -60772,21 +60955,21 @@
},
"states": [
{
- "id": 11153,
+ "id": 11294,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11154,
+ "id": 11295,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11155,
+ "id": 11296,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -60794,21 +60977,21 @@
},
{
"default": true,
- "id": 11156,
+ "id": 11297,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11157,
+ "id": 11298,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11158,
+ "id": 11299,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -60838,21 +61021,21 @@
},
"states": [
{
- "id": 11099,
+ "id": 11240,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11100,
+ "id": 11241,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11101,
+ "id": 11242,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -60860,21 +61043,21 @@
},
{
"default": true,
- "id": 11102,
+ "id": 11243,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11103,
+ "id": 11244,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11104,
+ "id": 11245,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -60906,97 +61089,97 @@
"states": [
{
"default": true,
- "id": 10762,
+ "id": 10903,
"properties": {
"rotation": "0"
}
},
{
- "id": 10763,
+ "id": 10904,
"properties": {
"rotation": "1"
}
},
{
- "id": 10764,
+ "id": 10905,
"properties": {
"rotation": "2"
}
},
{
- "id": 10765,
+ "id": 10906,
"properties": {
"rotation": "3"
}
},
{
- "id": 10766,
+ "id": 10907,
"properties": {
"rotation": "4"
}
},
{
- "id": 10767,
+ "id": 10908,
"properties": {
"rotation": "5"
}
},
{
- "id": 10768,
+ "id": 10909,
"properties": {
"rotation": "6"
}
},
{
- "id": 10769,
+ "id": 10910,
"properties": {
"rotation": "7"
}
},
{
- "id": 10770,
+ "id": 10911,
"properties": {
"rotation": "8"
}
},
{
- "id": 10771,
+ "id": 10912,
"properties": {
"rotation": "9"
}
},
{
- "id": 10772,
+ "id": 10913,
"properties": {
"rotation": "10"
}
},
{
- "id": 10773,
+ "id": 10914,
"properties": {
"rotation": "11"
}
},
{
- "id": 10774,
+ "id": 10915,
"properties": {
"rotation": "12"
}
},
{
- "id": 10775,
+ "id": 10916,
"properties": {
"rotation": "13"
}
},
{
- "id": 10776,
+ "id": 10917,
"properties": {
"rotation": "14"
}
},
{
- "id": 10777,
+ "id": 10918,
"properties": {
"rotation": "15"
}
@@ -61171,7 +61354,7 @@
},
"states": [
{
- "id": 20744,
+ "id": 20885,
"properties": {
"candles": "1",
"lit": "true",
@@ -61179,7 +61362,7 @@
}
},
{
- "id": 20745,
+ "id": 20886,
"properties": {
"candles": "1",
"lit": "true",
@@ -61187,7 +61370,7 @@
}
},
{
- "id": 20746,
+ "id": 20887,
"properties": {
"candles": "1",
"lit": "false",
@@ -61196,7 +61379,7 @@
},
{
"default": true,
- "id": 20747,
+ "id": 20888,
"properties": {
"candles": "1",
"lit": "false",
@@ -61204,7 +61387,7 @@
}
},
{
- "id": 20748,
+ "id": 20889,
"properties": {
"candles": "2",
"lit": "true",
@@ -61212,7 +61395,7 @@
}
},
{
- "id": 20749,
+ "id": 20890,
"properties": {
"candles": "2",
"lit": "true",
@@ -61220,7 +61403,7 @@
}
},
{
- "id": 20750,
+ "id": 20891,
"properties": {
"candles": "2",
"lit": "false",
@@ -61228,7 +61411,7 @@
}
},
{
- "id": 20751,
+ "id": 20892,
"properties": {
"candles": "2",
"lit": "false",
@@ -61236,7 +61419,7 @@
}
},
{
- "id": 20752,
+ "id": 20893,
"properties": {
"candles": "3",
"lit": "true",
@@ -61244,7 +61427,7 @@
}
},
{
- "id": 20753,
+ "id": 20894,
"properties": {
"candles": "3",
"lit": "true",
@@ -61252,7 +61435,7 @@
}
},
{
- "id": 20754,
+ "id": 20895,
"properties": {
"candles": "3",
"lit": "false",
@@ -61260,7 +61443,7 @@
}
},
{
- "id": 20755,
+ "id": 20896,
"properties": {
"candles": "3",
"lit": "false",
@@ -61268,7 +61451,7 @@
}
},
{
- "id": 20756,
+ "id": 20897,
"properties": {
"candles": "4",
"lit": "true",
@@ -61276,7 +61459,7 @@
}
},
{
- "id": 20757,
+ "id": 20898,
"properties": {
"candles": "4",
"lit": "true",
@@ -61284,7 +61467,7 @@
}
},
{
- "id": 20758,
+ "id": 20899,
"properties": {
"candles": "4",
"lit": "false",
@@ -61292,7 +61475,7 @@
}
},
{
- "id": 20759,
+ "id": 20900,
"properties": {
"candles": "4",
"lit": "false",
@@ -61310,14 +61493,14 @@
},
"states": [
{
- "id": 20876,
+ "id": 21017,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20877,
+ "id": 21018,
"properties": {
"lit": "false"
}
@@ -61328,7 +61511,7 @@
"states": [
{
"default": true,
- "id": 10596
+ "id": 10737
}
]
},
@@ -61336,7 +61519,7 @@
"states": [
{
"default": true,
- "id": 12596
+ "id": 12737
}
]
},
@@ -61344,7 +61527,7 @@
"states": [
{
"default": true,
- "id": 12612
+ "id": 12753
}
]
},
@@ -61360,25 +61543,25 @@
"states": [
{
"default": true,
- "id": 12559,
+ "id": 12700,
"properties": {
"facing": "north"
}
},
{
- "id": 12560,
+ "id": 12701,
"properties": {
"facing": "south"
}
},
{
- "id": 12561,
+ "id": 12702,
"properties": {
"facing": "west"
}
},
{
- "id": 12562,
+ "id": 12703,
"properties": {
"facing": "east"
}
@@ -61398,38 +61581,38 @@
},
"states": [
{
- "id": 12481,
+ "id": 12622,
"properties": {
"facing": "north"
}
},
{
- "id": 12482,
+ "id": 12623,
"properties": {
"facing": "east"
}
},
{
- "id": 12483,
+ "id": 12624,
"properties": {
"facing": "south"
}
},
{
- "id": 12484,
+ "id": 12625,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12485,
+ "id": 12626,
"properties": {
"facing": "up"
}
},
{
- "id": 12486,
+ "id": 12627,
"properties": {
"facing": "down"
}
@@ -61469,7 +61652,7 @@
},
"states": [
{
- "id": 9520,
+ "id": 9660,
"properties": {
"east": "true",
"north": "true",
@@ -61479,7 +61662,7 @@
}
},
{
- "id": 9521,
+ "id": 9661,
"properties": {
"east": "true",
"north": "true",
@@ -61489,7 +61672,7 @@
}
},
{
- "id": 9522,
+ "id": 9662,
"properties": {
"east": "true",
"north": "true",
@@ -61499,7 +61682,7 @@
}
},
{
- "id": 9523,
+ "id": 9663,
"properties": {
"east": "true",
"north": "true",
@@ -61509,7 +61692,7 @@
}
},
{
- "id": 9524,
+ "id": 9664,
"properties": {
"east": "true",
"north": "true",
@@ -61519,7 +61702,7 @@
}
},
{
- "id": 9525,
+ "id": 9665,
"properties": {
"east": "true",
"north": "true",
@@ -61529,7 +61712,7 @@
}
},
{
- "id": 9526,
+ "id": 9666,
"properties": {
"east": "true",
"north": "true",
@@ -61539,7 +61722,7 @@
}
},
{
- "id": 9527,
+ "id": 9667,
"properties": {
"east": "true",
"north": "true",
@@ -61549,7 +61732,7 @@
}
},
{
- "id": 9528,
+ "id": 9668,
"properties": {
"east": "true",
"north": "false",
@@ -61559,7 +61742,7 @@
}
},
{
- "id": 9529,
+ "id": 9669,
"properties": {
"east": "true",
"north": "false",
@@ -61569,7 +61752,7 @@
}
},
{
- "id": 9530,
+ "id": 9670,
"properties": {
"east": "true",
"north": "false",
@@ -61579,7 +61762,7 @@
}
},
{
- "id": 9531,
+ "id": 9671,
"properties": {
"east": "true",
"north": "false",
@@ -61589,7 +61772,7 @@
}
},
{
- "id": 9532,
+ "id": 9672,
"properties": {
"east": "true",
"north": "false",
@@ -61599,7 +61782,7 @@
}
},
{
- "id": 9533,
+ "id": 9673,
"properties": {
"east": "true",
"north": "false",
@@ -61609,7 +61792,7 @@
}
},
{
- "id": 9534,
+ "id": 9674,
"properties": {
"east": "true",
"north": "false",
@@ -61619,7 +61802,7 @@
}
},
{
- "id": 9535,
+ "id": 9675,
"properties": {
"east": "true",
"north": "false",
@@ -61629,7 +61812,7 @@
}
},
{
- "id": 9536,
+ "id": 9676,
"properties": {
"east": "false",
"north": "true",
@@ -61639,7 +61822,7 @@
}
},
{
- "id": 9537,
+ "id": 9677,
"properties": {
"east": "false",
"north": "true",
@@ -61649,7 +61832,7 @@
}
},
{
- "id": 9538,
+ "id": 9678,
"properties": {
"east": "false",
"north": "true",
@@ -61659,7 +61842,7 @@
}
},
{
- "id": 9539,
+ "id": 9679,
"properties": {
"east": "false",
"north": "true",
@@ -61669,7 +61852,7 @@
}
},
{
- "id": 9540,
+ "id": 9680,
"properties": {
"east": "false",
"north": "true",
@@ -61679,7 +61862,7 @@
}
},
{
- "id": 9541,
+ "id": 9681,
"properties": {
"east": "false",
"north": "true",
@@ -61689,7 +61872,7 @@
}
},
{
- "id": 9542,
+ "id": 9682,
"properties": {
"east": "false",
"north": "true",
@@ -61699,7 +61882,7 @@
}
},
{
- "id": 9543,
+ "id": 9683,
"properties": {
"east": "false",
"north": "true",
@@ -61709,7 +61892,7 @@
}
},
{
- "id": 9544,
+ "id": 9684,
"properties": {
"east": "false",
"north": "false",
@@ -61719,7 +61902,7 @@
}
},
{
- "id": 9545,
+ "id": 9685,
"properties": {
"east": "false",
"north": "false",
@@ -61729,7 +61912,7 @@
}
},
{
- "id": 9546,
+ "id": 9686,
"properties": {
"east": "false",
"north": "false",
@@ -61739,7 +61922,7 @@
}
},
{
- "id": 9547,
+ "id": 9687,
"properties": {
"east": "false",
"north": "false",
@@ -61749,7 +61932,7 @@
}
},
{
- "id": 9548,
+ "id": 9688,
"properties": {
"east": "false",
"north": "false",
@@ -61759,7 +61942,7 @@
}
},
{
- "id": 9549,
+ "id": 9689,
"properties": {
"east": "false",
"north": "false",
@@ -61769,7 +61952,7 @@
}
},
{
- "id": 9550,
+ "id": 9690,
"properties": {
"east": "false",
"north": "false",
@@ -61780,7 +61963,7 @@
},
{
"default": true,
- "id": 9551,
+ "id": 9691,
"properties": {
"east": "false",
"north": "false",
@@ -61795,7 +61978,7 @@
"states": [
{
"default": true,
- "id": 9225
+ "id": 9365
}
]
},
@@ -61811,25 +61994,25 @@
"states": [
{
"default": true,
- "id": 10910,
+ "id": 11051,
"properties": {
"facing": "north"
}
},
{
- "id": 10911,
+ "id": 11052,
"properties": {
"facing": "south"
}
},
{
- "id": 10912,
+ "id": 11053,
"properties": {
"facing": "west"
}
},
{
- "id": 10913,
+ "id": 11054,
"properties": {
"facing": "east"
}
@@ -61856,25 +62039,25 @@
"states": [
{
"default": true,
- "id": 8975,
+ "id": 9115,
"properties": {
"facing": "north"
}
},
{
- "id": 8976,
+ "id": 9116,
"properties": {
"facing": "south"
}
},
{
- "id": 8977,
+ "id": 9117,
"properties": {
"facing": "west"
}
},
{
- "id": 8978,
+ "id": 9118,
"properties": {
"facing": "east"
}
@@ -62130,7 +62313,7 @@
},
"states": [
{
- "id": 12001,
+ "id": 12142,
"properties": {
"facing": "north",
"half": "upper",
@@ -62140,7 +62323,7 @@
}
},
{
- "id": 12002,
+ "id": 12143,
"properties": {
"facing": "north",
"half": "upper",
@@ -62150,7 +62333,7 @@
}
},
{
- "id": 12003,
+ "id": 12144,
"properties": {
"facing": "north",
"half": "upper",
@@ -62160,7 +62343,7 @@
}
},
{
- "id": 12004,
+ "id": 12145,
"properties": {
"facing": "north",
"half": "upper",
@@ -62170,7 +62353,7 @@
}
},
{
- "id": 12005,
+ "id": 12146,
"properties": {
"facing": "north",
"half": "upper",
@@ -62180,7 +62363,7 @@
}
},
{
- "id": 12006,
+ "id": 12147,
"properties": {
"facing": "north",
"half": "upper",
@@ -62190,7 +62373,7 @@
}
},
{
- "id": 12007,
+ "id": 12148,
"properties": {
"facing": "north",
"half": "upper",
@@ -62200,7 +62383,7 @@
}
},
{
- "id": 12008,
+ "id": 12149,
"properties": {
"facing": "north",
"half": "upper",
@@ -62210,7 +62393,7 @@
}
},
{
- "id": 12009,
+ "id": 12150,
"properties": {
"facing": "north",
"half": "lower",
@@ -62220,7 +62403,7 @@
}
},
{
- "id": 12010,
+ "id": 12151,
"properties": {
"facing": "north",
"half": "lower",
@@ -62230,7 +62413,7 @@
}
},
{
- "id": 12011,
+ "id": 12152,
"properties": {
"facing": "north",
"half": "lower",
@@ -62241,7 +62424,7 @@
},
{
"default": true,
- "id": 12012,
+ "id": 12153,
"properties": {
"facing": "north",
"half": "lower",
@@ -62251,7 +62434,7 @@
}
},
{
- "id": 12013,
+ "id": 12154,
"properties": {
"facing": "north",
"half": "lower",
@@ -62261,7 +62444,7 @@
}
},
{
- "id": 12014,
+ "id": 12155,
"properties": {
"facing": "north",
"half": "lower",
@@ -62271,7 +62454,7 @@
}
},
{
- "id": 12015,
+ "id": 12156,
"properties": {
"facing": "north",
"half": "lower",
@@ -62281,7 +62464,7 @@
}
},
{
- "id": 12016,
+ "id": 12157,
"properties": {
"facing": "north",
"half": "lower",
@@ -62291,7 +62474,7 @@
}
},
{
- "id": 12017,
+ "id": 12158,
"properties": {
"facing": "south",
"half": "upper",
@@ -62301,7 +62484,7 @@
}
},
{
- "id": 12018,
+ "id": 12159,
"properties": {
"facing": "south",
"half": "upper",
@@ -62311,7 +62494,7 @@
}
},
{
- "id": 12019,
+ "id": 12160,
"properties": {
"facing": "south",
"half": "upper",
@@ -62321,7 +62504,7 @@
}
},
{
- "id": 12020,
+ "id": 12161,
"properties": {
"facing": "south",
"half": "upper",
@@ -62331,7 +62514,7 @@
}
},
{
- "id": 12021,
+ "id": 12162,
"properties": {
"facing": "south",
"half": "upper",
@@ -62341,7 +62524,7 @@
}
},
{
- "id": 12022,
+ "id": 12163,
"properties": {
"facing": "south",
"half": "upper",
@@ -62351,7 +62534,7 @@
}
},
{
- "id": 12023,
+ "id": 12164,
"properties": {
"facing": "south",
"half": "upper",
@@ -62361,7 +62544,7 @@
}
},
{
- "id": 12024,
+ "id": 12165,
"properties": {
"facing": "south",
"half": "upper",
@@ -62371,7 +62554,7 @@
}
},
{
- "id": 12025,
+ "id": 12166,
"properties": {
"facing": "south",
"half": "lower",
@@ -62381,7 +62564,7 @@
}
},
{
- "id": 12026,
+ "id": 12167,
"properties": {
"facing": "south",
"half": "lower",
@@ -62391,7 +62574,7 @@
}
},
{
- "id": 12027,
+ "id": 12168,
"properties": {
"facing": "south",
"half": "lower",
@@ -62401,7 +62584,7 @@
}
},
{
- "id": 12028,
+ "id": 12169,
"properties": {
"facing": "south",
"half": "lower",
@@ -62411,7 +62594,7 @@
}
},
{
- "id": 12029,
+ "id": 12170,
"properties": {
"facing": "south",
"half": "lower",
@@ -62421,7 +62604,7 @@
}
},
{
- "id": 12030,
+ "id": 12171,
"properties": {
"facing": "south",
"half": "lower",
@@ -62431,7 +62614,7 @@
}
},
{
- "id": 12031,
+ "id": 12172,
"properties": {
"facing": "south",
"half": "lower",
@@ -62441,7 +62624,7 @@
}
},
{
- "id": 12032,
+ "id": 12173,
"properties": {
"facing": "south",
"half": "lower",
@@ -62451,7 +62634,7 @@
}
},
{
- "id": 12033,
+ "id": 12174,
"properties": {
"facing": "west",
"half": "upper",
@@ -62461,7 +62644,7 @@
}
},
{
- "id": 12034,
+ "id": 12175,
"properties": {
"facing": "west",
"half": "upper",
@@ -62471,7 +62654,7 @@
}
},
{
- "id": 12035,
+ "id": 12176,
"properties": {
"facing": "west",
"half": "upper",
@@ -62481,7 +62664,7 @@
}
},
{
- "id": 12036,
+ "id": 12177,
"properties": {
"facing": "west",
"half": "upper",
@@ -62491,7 +62674,7 @@
}
},
{
- "id": 12037,
+ "id": 12178,
"properties": {
"facing": "west",
"half": "upper",
@@ -62501,7 +62684,7 @@
}
},
{
- "id": 12038,
+ "id": 12179,
"properties": {
"facing": "west",
"half": "upper",
@@ -62511,7 +62694,7 @@
}
},
{
- "id": 12039,
+ "id": 12180,
"properties": {
"facing": "west",
"half": "upper",
@@ -62521,7 +62704,7 @@
}
},
{
- "id": 12040,
+ "id": 12181,
"properties": {
"facing": "west",
"half": "upper",
@@ -62531,7 +62714,7 @@
}
},
{
- "id": 12041,
+ "id": 12182,
"properties": {
"facing": "west",
"half": "lower",
@@ -62541,7 +62724,7 @@
}
},
{
- "id": 12042,
+ "id": 12183,
"properties": {
"facing": "west",
"half": "lower",
@@ -62551,7 +62734,7 @@
}
},
{
- "id": 12043,
+ "id": 12184,
"properties": {
"facing": "west",
"half": "lower",
@@ -62561,7 +62744,7 @@
}
},
{
- "id": 12044,
+ "id": 12185,
"properties": {
"facing": "west",
"half": "lower",
@@ -62571,7 +62754,7 @@
}
},
{
- "id": 12045,
+ "id": 12186,
"properties": {
"facing": "west",
"half": "lower",
@@ -62581,7 +62764,7 @@
}
},
{
- "id": 12046,
+ "id": 12187,
"properties": {
"facing": "west",
"half": "lower",
@@ -62591,7 +62774,7 @@
}
},
{
- "id": 12047,
+ "id": 12188,
"properties": {
"facing": "west",
"half": "lower",
@@ -62601,7 +62784,7 @@
}
},
{
- "id": 12048,
+ "id": 12189,
"properties": {
"facing": "west",
"half": "lower",
@@ -62611,7 +62794,7 @@
}
},
{
- "id": 12049,
+ "id": 12190,
"properties": {
"facing": "east",
"half": "upper",
@@ -62621,7 +62804,7 @@
}
},
{
- "id": 12050,
+ "id": 12191,
"properties": {
"facing": "east",
"half": "upper",
@@ -62631,7 +62814,7 @@
}
},
{
- "id": 12051,
+ "id": 12192,
"properties": {
"facing": "east",
"half": "upper",
@@ -62641,7 +62824,7 @@
}
},
{
- "id": 12052,
+ "id": 12193,
"properties": {
"facing": "east",
"half": "upper",
@@ -62651,7 +62834,7 @@
}
},
{
- "id": 12053,
+ "id": 12194,
"properties": {
"facing": "east",
"half": "upper",
@@ -62661,7 +62844,7 @@
}
},
{
- "id": 12054,
+ "id": 12195,
"properties": {
"facing": "east",
"half": "upper",
@@ -62671,7 +62854,7 @@
}
},
{
- "id": 12055,
+ "id": 12196,
"properties": {
"facing": "east",
"half": "upper",
@@ -62681,7 +62864,7 @@
}
},
{
- "id": 12056,
+ "id": 12197,
"properties": {
"facing": "east",
"half": "upper",
@@ -62691,7 +62874,7 @@
}
},
{
- "id": 12057,
+ "id": 12198,
"properties": {
"facing": "east",
"half": "lower",
@@ -62701,7 +62884,7 @@
}
},
{
- "id": 12058,
+ "id": 12199,
"properties": {
"facing": "east",
"half": "lower",
@@ -62711,7 +62894,7 @@
}
},
{
- "id": 12059,
+ "id": 12200,
"properties": {
"facing": "east",
"half": "lower",
@@ -62721,7 +62904,7 @@
}
},
{
- "id": 12060,
+ "id": 12201,
"properties": {
"facing": "east",
"half": "lower",
@@ -62731,7 +62914,7 @@
}
},
{
- "id": 12061,
+ "id": 12202,
"properties": {
"facing": "east",
"half": "lower",
@@ -62741,7 +62924,7 @@
}
},
{
- "id": 12062,
+ "id": 12203,
"properties": {
"facing": "east",
"half": "lower",
@@ -62751,7 +62934,7 @@
}
},
{
- "id": 12063,
+ "id": 12204,
"properties": {
"facing": "east",
"half": "lower",
@@ -62761,7 +62944,7 @@
}
},
{
- "id": 12064,
+ "id": 12205,
"properties": {
"facing": "east",
"half": "lower",
@@ -62797,7 +62980,7 @@
},
"states": [
{
- "id": 11585,
+ "id": 11726,
"properties": {
"east": "true",
"north": "true",
@@ -62807,7 +62990,7 @@
}
},
{
- "id": 11586,
+ "id": 11727,
"properties": {
"east": "true",
"north": "true",
@@ -62817,7 +63000,7 @@
}
},
{
- "id": 11587,
+ "id": 11728,
"properties": {
"east": "true",
"north": "true",
@@ -62827,7 +63010,7 @@
}
},
{
- "id": 11588,
+ "id": 11729,
"properties": {
"east": "true",
"north": "true",
@@ -62837,7 +63020,7 @@
}
},
{
- "id": 11589,
+ "id": 11730,
"properties": {
"east": "true",
"north": "true",
@@ -62847,7 +63030,7 @@
}
},
{
- "id": 11590,
+ "id": 11731,
"properties": {
"east": "true",
"north": "true",
@@ -62857,7 +63040,7 @@
}
},
{
- "id": 11591,
+ "id": 11732,
"properties": {
"east": "true",
"north": "true",
@@ -62867,7 +63050,7 @@
}
},
{
- "id": 11592,
+ "id": 11733,
"properties": {
"east": "true",
"north": "true",
@@ -62877,7 +63060,7 @@
}
},
{
- "id": 11593,
+ "id": 11734,
"properties": {
"east": "true",
"north": "false",
@@ -62887,7 +63070,7 @@
}
},
{
- "id": 11594,
+ "id": 11735,
"properties": {
"east": "true",
"north": "false",
@@ -62897,7 +63080,7 @@
}
},
{
- "id": 11595,
+ "id": 11736,
"properties": {
"east": "true",
"north": "false",
@@ -62907,7 +63090,7 @@
}
},
{
- "id": 11596,
+ "id": 11737,
"properties": {
"east": "true",
"north": "false",
@@ -62917,7 +63100,7 @@
}
},
{
- "id": 11597,
+ "id": 11738,
"properties": {
"east": "true",
"north": "false",
@@ -62927,7 +63110,7 @@
}
},
{
- "id": 11598,
+ "id": 11739,
"properties": {
"east": "true",
"north": "false",
@@ -62937,7 +63120,7 @@
}
},
{
- "id": 11599,
+ "id": 11740,
"properties": {
"east": "true",
"north": "false",
@@ -62947,7 +63130,7 @@
}
},
{
- "id": 11600,
+ "id": 11741,
"properties": {
"east": "true",
"north": "false",
@@ -62957,7 +63140,7 @@
}
},
{
- "id": 11601,
+ "id": 11742,
"properties": {
"east": "false",
"north": "true",
@@ -62967,7 +63150,7 @@
}
},
{
- "id": 11602,
+ "id": 11743,
"properties": {
"east": "false",
"north": "true",
@@ -62977,7 +63160,7 @@
}
},
{
- "id": 11603,
+ "id": 11744,
"properties": {
"east": "false",
"north": "true",
@@ -62987,7 +63170,7 @@
}
},
{
- "id": 11604,
+ "id": 11745,
"properties": {
"east": "false",
"north": "true",
@@ -62997,7 +63180,7 @@
}
},
{
- "id": 11605,
+ "id": 11746,
"properties": {
"east": "false",
"north": "true",
@@ -63007,7 +63190,7 @@
}
},
{
- "id": 11606,
+ "id": 11747,
"properties": {
"east": "false",
"north": "true",
@@ -63017,7 +63200,7 @@
}
},
{
- "id": 11607,
+ "id": 11748,
"properties": {
"east": "false",
"north": "true",
@@ -63027,7 +63210,7 @@
}
},
{
- "id": 11608,
+ "id": 11749,
"properties": {
"east": "false",
"north": "true",
@@ -63037,7 +63220,7 @@
}
},
{
- "id": 11609,
+ "id": 11750,
"properties": {
"east": "false",
"north": "false",
@@ -63047,7 +63230,7 @@
}
},
{
- "id": 11610,
+ "id": 11751,
"properties": {
"east": "false",
"north": "false",
@@ -63057,7 +63240,7 @@
}
},
{
- "id": 11611,
+ "id": 11752,
"properties": {
"east": "false",
"north": "false",
@@ -63067,7 +63250,7 @@
}
},
{
- "id": 11612,
+ "id": 11753,
"properties": {
"east": "false",
"north": "false",
@@ -63077,7 +63260,7 @@
}
},
{
- "id": 11613,
+ "id": 11754,
"properties": {
"east": "false",
"north": "false",
@@ -63087,7 +63270,7 @@
}
},
{
- "id": 11614,
+ "id": 11755,
"properties": {
"east": "false",
"north": "false",
@@ -63097,7 +63280,7 @@
}
},
{
- "id": 11615,
+ "id": 11756,
"properties": {
"east": "false",
"north": "false",
@@ -63108,7 +63291,7 @@
},
{
"default": true,
- "id": 11616,
+ "id": 11757,
"properties": {
"east": "false",
"north": "false",
@@ -63142,7 +63325,7 @@
},
"states": [
{
- "id": 11329,
+ "id": 11470,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -63151,7 +63334,7 @@
}
},
{
- "id": 11330,
+ "id": 11471,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -63160,7 +63343,7 @@
}
},
{
- "id": 11331,
+ "id": 11472,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -63169,7 +63352,7 @@
}
},
{
- "id": 11332,
+ "id": 11473,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -63178,7 +63361,7 @@
}
},
{
- "id": 11333,
+ "id": 11474,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -63187,7 +63370,7 @@
}
},
{
- "id": 11334,
+ "id": 11475,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -63196,7 +63379,7 @@
}
},
{
- "id": 11335,
+ "id": 11476,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -63206,7 +63389,7 @@
},
{
"default": true,
- "id": 11336,
+ "id": 11477,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -63215,7 +63398,7 @@
}
},
{
- "id": 11337,
+ "id": 11478,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -63224,7 +63407,7 @@
}
},
{
- "id": 11338,
+ "id": 11479,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -63233,7 +63416,7 @@
}
},
{
- "id": 11339,
+ "id": 11480,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -63242,7 +63425,7 @@
}
},
{
- "id": 11340,
+ "id": 11481,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -63251,7 +63434,7 @@
}
},
{
- "id": 11341,
+ "id": 11482,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -63260,7 +63443,7 @@
}
},
{
- "id": 11342,
+ "id": 11483,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -63269,7 +63452,7 @@
}
},
{
- "id": 11343,
+ "id": 11484,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -63278,7 +63461,7 @@
}
},
{
- "id": 11344,
+ "id": 11485,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -63287,7 +63470,7 @@
}
},
{
- "id": 11345,
+ "id": 11486,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -63296,7 +63479,7 @@
}
},
{
- "id": 11346,
+ "id": 11487,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -63305,7 +63488,7 @@
}
},
{
- "id": 11347,
+ "id": 11488,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -63314,7 +63497,7 @@
}
},
{
- "id": 11348,
+ "id": 11489,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -63323,7 +63506,7 @@
}
},
{
- "id": 11349,
+ "id": 11490,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -63332,7 +63515,7 @@
}
},
{
- "id": 11350,
+ "id": 11491,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -63341,7 +63524,7 @@
}
},
{
- "id": 11351,
+ "id": 11492,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -63350,7 +63533,7 @@
}
},
{
- "id": 11352,
+ "id": 11493,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -63359,7 +63542,7 @@
}
},
{
- "id": 11353,
+ "id": 11494,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -63368,7 +63551,7 @@
}
},
{
- "id": 11354,
+ "id": 11495,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -63377,7 +63560,7 @@
}
},
{
- "id": 11355,
+ "id": 11496,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -63386,7 +63569,7 @@
}
},
{
- "id": 11356,
+ "id": 11497,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -63395,7 +63578,7 @@
}
},
{
- "id": 11357,
+ "id": 11498,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -63404,7 +63587,7 @@
}
},
{
- "id": 11358,
+ "id": 11499,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -63413,7 +63596,7 @@
}
},
{
- "id": 11359,
+ "id": 11500,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -63422,7 +63605,7 @@
}
},
{
- "id": 11360,
+ "id": 11501,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -64576,21 +64759,21 @@
},
"states": [
{
- "id": 11057,
+ "id": 11198,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11058,
+ "id": 11199,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11059,
+ "id": 11200,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -64598,21 +64781,21 @@
},
{
"default": true,
- "id": 11060,
+ "id": 11201,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11061,
+ "id": 11202,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11062,
+ "id": 11203,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -64646,7 +64829,7 @@
},
"states": [
{
- "id": 9904,
+ "id": 10044,
"properties": {
"facing": "north",
"half": "top",
@@ -64655,7 +64838,7 @@
}
},
{
- "id": 9905,
+ "id": 10045,
"properties": {
"facing": "north",
"half": "top",
@@ -64664,7 +64847,7 @@
}
},
{
- "id": 9906,
+ "id": 10046,
"properties": {
"facing": "north",
"half": "top",
@@ -64673,7 +64856,7 @@
}
},
{
- "id": 9907,
+ "id": 10047,
"properties": {
"facing": "north",
"half": "top",
@@ -64682,7 +64865,7 @@
}
},
{
- "id": 9908,
+ "id": 10048,
"properties": {
"facing": "north",
"half": "top",
@@ -64691,7 +64874,7 @@
}
},
{
- "id": 9909,
+ "id": 10049,
"properties": {
"facing": "north",
"half": "top",
@@ -64700,7 +64883,7 @@
}
},
{
- "id": 9910,
+ "id": 10050,
"properties": {
"facing": "north",
"half": "top",
@@ -64709,7 +64892,7 @@
}
},
{
- "id": 9911,
+ "id": 10051,
"properties": {
"facing": "north",
"half": "top",
@@ -64718,7 +64901,7 @@
}
},
{
- "id": 9912,
+ "id": 10052,
"properties": {
"facing": "north",
"half": "top",
@@ -64727,7 +64910,7 @@
}
},
{
- "id": 9913,
+ "id": 10053,
"properties": {
"facing": "north",
"half": "top",
@@ -64736,7 +64919,7 @@
}
},
{
- "id": 9914,
+ "id": 10054,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64746,7 +64929,7 @@
},
{
"default": true,
- "id": 9915,
+ "id": 10055,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64755,7 +64938,7 @@
}
},
{
- "id": 9916,
+ "id": 10056,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64764,7 +64947,7 @@
}
},
{
- "id": 9917,
+ "id": 10057,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64773,7 +64956,7 @@
}
},
{
- "id": 9918,
+ "id": 10058,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64782,7 +64965,7 @@
}
},
{
- "id": 9919,
+ "id": 10059,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64791,7 +64974,7 @@
}
},
{
- "id": 9920,
+ "id": 10060,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64800,7 +64983,7 @@
}
},
{
- "id": 9921,
+ "id": 10061,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64809,7 +64992,7 @@
}
},
{
- "id": 9922,
+ "id": 10062,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64818,7 +65001,7 @@
}
},
{
- "id": 9923,
+ "id": 10063,
"properties": {
"facing": "north",
"half": "bottom",
@@ -64827,7 +65010,7 @@
}
},
{
- "id": 9924,
+ "id": 10064,
"properties": {
"facing": "south",
"half": "top",
@@ -64836,7 +65019,7 @@
}
},
{
- "id": 9925,
+ "id": 10065,
"properties": {
"facing": "south",
"half": "top",
@@ -64845,7 +65028,7 @@
}
},
{
- "id": 9926,
+ "id": 10066,
"properties": {
"facing": "south",
"half": "top",
@@ -64854,7 +65037,7 @@
}
},
{
- "id": 9927,
+ "id": 10067,
"properties": {
"facing": "south",
"half": "top",
@@ -64863,7 +65046,7 @@
}
},
{
- "id": 9928,
+ "id": 10068,
"properties": {
"facing": "south",
"half": "top",
@@ -64872,7 +65055,7 @@
}
},
{
- "id": 9929,
+ "id": 10069,
"properties": {
"facing": "south",
"half": "top",
@@ -64881,7 +65064,7 @@
}
},
{
- "id": 9930,
+ "id": 10070,
"properties": {
"facing": "south",
"half": "top",
@@ -64890,7 +65073,7 @@
}
},
{
- "id": 9931,
+ "id": 10071,
"properties": {
"facing": "south",
"half": "top",
@@ -64899,7 +65082,7 @@
}
},
{
- "id": 9932,
+ "id": 10072,
"properties": {
"facing": "south",
"half": "top",
@@ -64908,7 +65091,7 @@
}
},
{
- "id": 9933,
+ "id": 10073,
"properties": {
"facing": "south",
"half": "top",
@@ -64917,7 +65100,7 @@
}
},
{
- "id": 9934,
+ "id": 10074,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64926,7 +65109,7 @@
}
},
{
- "id": 9935,
+ "id": 10075,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64935,7 +65118,7 @@
}
},
{
- "id": 9936,
+ "id": 10076,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64944,7 +65127,7 @@
}
},
{
- "id": 9937,
+ "id": 10077,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64953,7 +65136,7 @@
}
},
{
- "id": 9938,
+ "id": 10078,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64962,7 +65145,7 @@
}
},
{
- "id": 9939,
+ "id": 10079,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64971,7 +65154,7 @@
}
},
{
- "id": 9940,
+ "id": 10080,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64980,7 +65163,7 @@
}
},
{
- "id": 9941,
+ "id": 10081,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64989,7 +65172,7 @@
}
},
{
- "id": 9942,
+ "id": 10082,
"properties": {
"facing": "south",
"half": "bottom",
@@ -64998,7 +65181,7 @@
}
},
{
- "id": 9943,
+ "id": 10083,
"properties": {
"facing": "south",
"half": "bottom",
@@ -65007,7 +65190,7 @@
}
},
{
- "id": 9944,
+ "id": 10084,
"properties": {
"facing": "west",
"half": "top",
@@ -65016,7 +65199,7 @@
}
},
{
- "id": 9945,
+ "id": 10085,
"properties": {
"facing": "west",
"half": "top",
@@ -65025,7 +65208,7 @@
}
},
{
- "id": 9946,
+ "id": 10086,
"properties": {
"facing": "west",
"half": "top",
@@ -65034,7 +65217,7 @@
}
},
{
- "id": 9947,
+ "id": 10087,
"properties": {
"facing": "west",
"half": "top",
@@ -65043,7 +65226,7 @@
}
},
{
- "id": 9948,
+ "id": 10088,
"properties": {
"facing": "west",
"half": "top",
@@ -65052,7 +65235,7 @@
}
},
{
- "id": 9949,
+ "id": 10089,
"properties": {
"facing": "west",
"half": "top",
@@ -65061,7 +65244,7 @@
}
},
{
- "id": 9950,
+ "id": 10090,
"properties": {
"facing": "west",
"half": "top",
@@ -65070,7 +65253,7 @@
}
},
{
- "id": 9951,
+ "id": 10091,
"properties": {
"facing": "west",
"half": "top",
@@ -65079,7 +65262,7 @@
}
},
{
- "id": 9952,
+ "id": 10092,
"properties": {
"facing": "west",
"half": "top",
@@ -65088,7 +65271,7 @@
}
},
{
- "id": 9953,
+ "id": 10093,
"properties": {
"facing": "west",
"half": "top",
@@ -65097,7 +65280,7 @@
}
},
{
- "id": 9954,
+ "id": 10094,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65106,7 +65289,7 @@
}
},
{
- "id": 9955,
+ "id": 10095,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65115,7 +65298,7 @@
}
},
{
- "id": 9956,
+ "id": 10096,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65124,7 +65307,7 @@
}
},
{
- "id": 9957,
+ "id": 10097,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65133,7 +65316,7 @@
}
},
{
- "id": 9958,
+ "id": 10098,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65142,7 +65325,7 @@
}
},
{
- "id": 9959,
+ "id": 10099,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65151,7 +65334,7 @@
}
},
{
- "id": 9960,
+ "id": 10100,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65160,7 +65343,7 @@
}
},
{
- "id": 9961,
+ "id": 10101,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65169,7 +65352,7 @@
}
},
{
- "id": 9962,
+ "id": 10102,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65178,7 +65361,7 @@
}
},
{
- "id": 9963,
+ "id": 10103,
"properties": {
"facing": "west",
"half": "bottom",
@@ -65187,7 +65370,7 @@
}
},
{
- "id": 9964,
+ "id": 10104,
"properties": {
"facing": "east",
"half": "top",
@@ -65196,7 +65379,7 @@
}
},
{
- "id": 9965,
+ "id": 10105,
"properties": {
"facing": "east",
"half": "top",
@@ -65205,7 +65388,7 @@
}
},
{
- "id": 9966,
+ "id": 10106,
"properties": {
"facing": "east",
"half": "top",
@@ -65214,7 +65397,7 @@
}
},
{
- "id": 9967,
+ "id": 10107,
"properties": {
"facing": "east",
"half": "top",
@@ -65223,7 +65406,7 @@
}
},
{
- "id": 9968,
+ "id": 10108,
"properties": {
"facing": "east",
"half": "top",
@@ -65232,7 +65415,7 @@
}
},
{
- "id": 9969,
+ "id": 10109,
"properties": {
"facing": "east",
"half": "top",
@@ -65241,7 +65424,7 @@
}
},
{
- "id": 9970,
+ "id": 10110,
"properties": {
"facing": "east",
"half": "top",
@@ -65250,7 +65433,7 @@
}
},
{
- "id": 9971,
+ "id": 10111,
"properties": {
"facing": "east",
"half": "top",
@@ -65259,7 +65442,7 @@
}
},
{
- "id": 9972,
+ "id": 10112,
"properties": {
"facing": "east",
"half": "top",
@@ -65268,7 +65451,7 @@
}
},
{
- "id": 9973,
+ "id": 10113,
"properties": {
"facing": "east",
"half": "top",
@@ -65277,7 +65460,7 @@
}
},
{
- "id": 9974,
+ "id": 10114,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65286,7 +65469,7 @@
}
},
{
- "id": 9975,
+ "id": 10115,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65295,7 +65478,7 @@
}
},
{
- "id": 9976,
+ "id": 10116,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65304,7 +65487,7 @@
}
},
{
- "id": 9977,
+ "id": 10117,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65313,7 +65496,7 @@
}
},
{
- "id": 9978,
+ "id": 10118,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65322,7 +65505,7 @@
}
},
{
- "id": 9979,
+ "id": 10119,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65331,7 +65514,7 @@
}
},
{
- "id": 9980,
+ "id": 10120,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65340,7 +65523,7 @@
}
},
{
- "id": 9981,
+ "id": 10121,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65349,7 +65532,7 @@
}
},
{
- "id": 9982,
+ "id": 10122,
"properties": {
"facing": "east",
"half": "bottom",
@@ -65358,7 +65541,7 @@
}
},
{
- "id": 9983,
+ "id": 10123,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66217,7 +66400,7 @@
"states": [
{
"default": true,
- "id": 10324
+ "id": 10465
}
]
},
@@ -66235,21 +66418,21 @@
},
"states": [
{
- "id": 10577,
+ "id": 10718,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10578,
+ "id": 10719,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10579,
+ "id": 10720,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -66257,21 +66440,21 @@
},
{
"default": true,
- "id": 10580,
+ "id": 10721,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10581,
+ "id": 10722,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10582,
+ "id": 10723,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -66305,7 +66488,7 @@
},
"states": [
{
- "id": 10485,
+ "id": 10626,
"properties": {
"facing": "north",
"half": "top",
@@ -66314,7 +66497,7 @@
}
},
{
- "id": 10486,
+ "id": 10627,
"properties": {
"facing": "north",
"half": "top",
@@ -66323,7 +66506,7 @@
}
},
{
- "id": 10487,
+ "id": 10628,
"properties": {
"facing": "north",
"half": "top",
@@ -66332,7 +66515,7 @@
}
},
{
- "id": 10488,
+ "id": 10629,
"properties": {
"facing": "north",
"half": "top",
@@ -66341,7 +66524,7 @@
}
},
{
- "id": 10489,
+ "id": 10630,
"properties": {
"facing": "north",
"half": "top",
@@ -66350,7 +66533,7 @@
}
},
{
- "id": 10490,
+ "id": 10631,
"properties": {
"facing": "north",
"half": "top",
@@ -66359,7 +66542,7 @@
}
},
{
- "id": 10491,
+ "id": 10632,
"properties": {
"facing": "north",
"half": "top",
@@ -66368,7 +66551,7 @@
}
},
{
- "id": 10492,
+ "id": 10633,
"properties": {
"facing": "north",
"half": "top",
@@ -66377,7 +66560,7 @@
}
},
{
- "id": 10493,
+ "id": 10634,
"properties": {
"facing": "north",
"half": "top",
@@ -66386,7 +66569,7 @@
}
},
{
- "id": 10494,
+ "id": 10635,
"properties": {
"facing": "north",
"half": "top",
@@ -66395,7 +66578,7 @@
}
},
{
- "id": 10495,
+ "id": 10636,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66405,7 +66588,7 @@
},
{
"default": true,
- "id": 10496,
+ "id": 10637,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66414,7 +66597,7 @@
}
},
{
- "id": 10497,
+ "id": 10638,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66423,7 +66606,7 @@
}
},
{
- "id": 10498,
+ "id": 10639,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66432,7 +66615,7 @@
}
},
{
- "id": 10499,
+ "id": 10640,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66441,7 +66624,7 @@
}
},
{
- "id": 10500,
+ "id": 10641,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66450,7 +66633,7 @@
}
},
{
- "id": 10501,
+ "id": 10642,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66459,7 +66642,7 @@
}
},
{
- "id": 10502,
+ "id": 10643,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66468,7 +66651,7 @@
}
},
{
- "id": 10503,
+ "id": 10644,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66477,7 +66660,7 @@
}
},
{
- "id": 10504,
+ "id": 10645,
"properties": {
"facing": "north",
"half": "bottom",
@@ -66486,7 +66669,7 @@
}
},
{
- "id": 10505,
+ "id": 10646,
"properties": {
"facing": "south",
"half": "top",
@@ -66495,7 +66678,7 @@
}
},
{
- "id": 10506,
+ "id": 10647,
"properties": {
"facing": "south",
"half": "top",
@@ -66504,7 +66687,7 @@
}
},
{
- "id": 10507,
+ "id": 10648,
"properties": {
"facing": "south",
"half": "top",
@@ -66513,7 +66696,7 @@
}
},
{
- "id": 10508,
+ "id": 10649,
"properties": {
"facing": "south",
"half": "top",
@@ -66522,7 +66705,7 @@
}
},
{
- "id": 10509,
+ "id": 10650,
"properties": {
"facing": "south",
"half": "top",
@@ -66531,7 +66714,7 @@
}
},
{
- "id": 10510,
+ "id": 10651,
"properties": {
"facing": "south",
"half": "top",
@@ -66540,7 +66723,7 @@
}
},
{
- "id": 10511,
+ "id": 10652,
"properties": {
"facing": "south",
"half": "top",
@@ -66549,7 +66732,7 @@
}
},
{
- "id": 10512,
+ "id": 10653,
"properties": {
"facing": "south",
"half": "top",
@@ -66558,7 +66741,7 @@
}
},
{
- "id": 10513,
+ "id": 10654,
"properties": {
"facing": "south",
"half": "top",
@@ -66567,7 +66750,7 @@
}
},
{
- "id": 10514,
+ "id": 10655,
"properties": {
"facing": "south",
"half": "top",
@@ -66576,7 +66759,7 @@
}
},
{
- "id": 10515,
+ "id": 10656,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66585,7 +66768,7 @@
}
},
{
- "id": 10516,
+ "id": 10657,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66594,7 +66777,7 @@
}
},
{
- "id": 10517,
+ "id": 10658,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66603,7 +66786,7 @@
}
},
{
- "id": 10518,
+ "id": 10659,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66612,7 +66795,7 @@
}
},
{
- "id": 10519,
+ "id": 10660,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66621,7 +66804,7 @@
}
},
{
- "id": 10520,
+ "id": 10661,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66630,7 +66813,7 @@
}
},
{
- "id": 10521,
+ "id": 10662,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66639,7 +66822,7 @@
}
},
{
- "id": 10522,
+ "id": 10663,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66648,7 +66831,7 @@
}
},
{
- "id": 10523,
+ "id": 10664,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66657,7 +66840,7 @@
}
},
{
- "id": 10524,
+ "id": 10665,
"properties": {
"facing": "south",
"half": "bottom",
@@ -66666,7 +66849,7 @@
}
},
{
- "id": 10525,
+ "id": 10666,
"properties": {
"facing": "west",
"half": "top",
@@ -66675,7 +66858,7 @@
}
},
{
- "id": 10526,
+ "id": 10667,
"properties": {
"facing": "west",
"half": "top",
@@ -66684,7 +66867,7 @@
}
},
{
- "id": 10527,
+ "id": 10668,
"properties": {
"facing": "west",
"half": "top",
@@ -66693,7 +66876,7 @@
}
},
{
- "id": 10528,
+ "id": 10669,
"properties": {
"facing": "west",
"half": "top",
@@ -66702,7 +66885,7 @@
}
},
{
- "id": 10529,
+ "id": 10670,
"properties": {
"facing": "west",
"half": "top",
@@ -66711,7 +66894,7 @@
}
},
{
- "id": 10530,
+ "id": 10671,
"properties": {
"facing": "west",
"half": "top",
@@ -66720,7 +66903,7 @@
}
},
{
- "id": 10531,
+ "id": 10672,
"properties": {
"facing": "west",
"half": "top",
@@ -66729,7 +66912,7 @@
}
},
{
- "id": 10532,
+ "id": 10673,
"properties": {
"facing": "west",
"half": "top",
@@ -66738,7 +66921,7 @@
}
},
{
- "id": 10533,
+ "id": 10674,
"properties": {
"facing": "west",
"half": "top",
@@ -66747,7 +66930,7 @@
}
},
{
- "id": 10534,
+ "id": 10675,
"properties": {
"facing": "west",
"half": "top",
@@ -66756,7 +66939,7 @@
}
},
{
- "id": 10535,
+ "id": 10676,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66765,7 +66948,7 @@
}
},
{
- "id": 10536,
+ "id": 10677,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66774,7 +66957,7 @@
}
},
{
- "id": 10537,
+ "id": 10678,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66783,7 +66966,7 @@
}
},
{
- "id": 10538,
+ "id": 10679,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66792,7 +66975,7 @@
}
},
{
- "id": 10539,
+ "id": 10680,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66801,7 +66984,7 @@
}
},
{
- "id": 10540,
+ "id": 10681,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66810,7 +66993,7 @@
}
},
{
- "id": 10541,
+ "id": 10682,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66819,7 +67002,7 @@
}
},
{
- "id": 10542,
+ "id": 10683,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66828,7 +67011,7 @@
}
},
{
- "id": 10543,
+ "id": 10684,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66837,7 +67020,7 @@
}
},
{
- "id": 10544,
+ "id": 10685,
"properties": {
"facing": "west",
"half": "bottom",
@@ -66846,7 +67029,7 @@
}
},
{
- "id": 10545,
+ "id": 10686,
"properties": {
"facing": "east",
"half": "top",
@@ -66855,7 +67038,7 @@
}
},
{
- "id": 10546,
+ "id": 10687,
"properties": {
"facing": "east",
"half": "top",
@@ -66864,7 +67047,7 @@
}
},
{
- "id": 10547,
+ "id": 10688,
"properties": {
"facing": "east",
"half": "top",
@@ -66873,7 +67056,7 @@
}
},
{
- "id": 10548,
+ "id": 10689,
"properties": {
"facing": "east",
"half": "top",
@@ -66882,7 +67065,7 @@
}
},
{
- "id": 10549,
+ "id": 10690,
"properties": {
"facing": "east",
"half": "top",
@@ -66891,7 +67074,7 @@
}
},
{
- "id": 10550,
+ "id": 10691,
"properties": {
"facing": "east",
"half": "top",
@@ -66900,7 +67083,7 @@
}
},
{
- "id": 10551,
+ "id": 10692,
"properties": {
"facing": "east",
"half": "top",
@@ -66909,7 +67092,7 @@
}
},
{
- "id": 10552,
+ "id": 10693,
"properties": {
"facing": "east",
"half": "top",
@@ -66918,7 +67101,7 @@
}
},
{
- "id": 10553,
+ "id": 10694,
"properties": {
"facing": "east",
"half": "top",
@@ -66927,7 +67110,7 @@
}
},
{
- "id": 10554,
+ "id": 10695,
"properties": {
"facing": "east",
"half": "top",
@@ -66936,7 +67119,7 @@
}
},
{
- "id": 10555,
+ "id": 10696,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66945,7 +67128,7 @@
}
},
{
- "id": 10556,
+ "id": 10697,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66954,7 +67137,7 @@
}
},
{
- "id": 10557,
+ "id": 10698,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66963,7 +67146,7 @@
}
},
{
- "id": 10558,
+ "id": 10699,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66972,7 +67155,7 @@
}
},
{
- "id": 10559,
+ "id": 10700,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66981,7 +67164,7 @@
}
},
{
- "id": 10560,
+ "id": 10701,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66990,7 +67173,7 @@
}
},
{
- "id": 10561,
+ "id": 10702,
"properties": {
"facing": "east",
"half": "bottom",
@@ -66999,7 +67182,7 @@
}
},
{
- "id": 10562,
+ "id": 10703,
"properties": {
"facing": "east",
"half": "bottom",
@@ -67008,7 +67191,7 @@
}
},
{
- "id": 10563,
+ "id": 10704,
"properties": {
"facing": "east",
"half": "bottom",
@@ -67017,7 +67200,7 @@
}
},
{
- "id": 10564,
+ "id": 10705,
"properties": {
"facing": "east",
"half": "bottom",
@@ -67054,112 +67237,112 @@
},
"states": [
{
- "id": 9051,
+ "id": 9191,
"properties": {
"inverted": "true",
"power": "0"
}
},
{
- "id": 9052,
+ "id": 9192,
"properties": {
"inverted": "true",
"power": "1"
}
},
{
- "id": 9053,
+ "id": 9193,
"properties": {
"inverted": "true",
"power": "2"
}
},
{
- "id": 9054,
+ "id": 9194,
"properties": {
"inverted": "true",
"power": "3"
}
},
{
- "id": 9055,
+ "id": 9195,
"properties": {
"inverted": "true",
"power": "4"
}
},
{
- "id": 9056,
+ "id": 9196,
"properties": {
"inverted": "true",
"power": "5"
}
},
{
- "id": 9057,
+ "id": 9197,
"properties": {
"inverted": "true",
"power": "6"
}
},
{
- "id": 9058,
+ "id": 9198,
"properties": {
"inverted": "true",
"power": "7"
}
},
{
- "id": 9059,
+ "id": 9199,
"properties": {
"inverted": "true",
"power": "8"
}
},
{
- "id": 9060,
+ "id": 9200,
"properties": {
"inverted": "true",
"power": "9"
}
},
{
- "id": 9061,
+ "id": 9201,
"properties": {
"inverted": "true",
"power": "10"
}
},
{
- "id": 9062,
+ "id": 9202,
"properties": {
"inverted": "true",
"power": "11"
}
},
{
- "id": 9063,
+ "id": 9203,
"properties": {
"inverted": "true",
"power": "12"
}
},
{
- "id": 9064,
+ "id": 9204,
"properties": {
"inverted": "true",
"power": "13"
}
},
{
- "id": 9065,
+ "id": 9205,
"properties": {
"inverted": "true",
"power": "14"
}
},
{
- "id": 9066,
+ "id": 9206,
"properties": {
"inverted": "true",
"power": "15"
@@ -67167,112 +67350,112 @@
},
{
"default": true,
- "id": 9067,
+ "id": 9207,
"properties": {
"inverted": "false",
"power": "0"
}
},
{
- "id": 9068,
+ "id": 9208,
"properties": {
"inverted": "false",
"power": "1"
}
},
{
- "id": 9069,
+ "id": 9209,
"properties": {
"inverted": "false",
"power": "2"
}
},
{
- "id": 9070,
+ "id": 9210,
"properties": {
"inverted": "false",
"power": "3"
}
},
{
- "id": 9071,
+ "id": 9211,
"properties": {
"inverted": "false",
"power": "4"
}
},
{
- "id": 9072,
+ "id": 9212,
"properties": {
"inverted": "false",
"power": "5"
}
},
{
- "id": 9073,
+ "id": 9213,
"properties": {
"inverted": "false",
"power": "6"
}
},
{
- "id": 9074,
+ "id": 9214,
"properties": {
"inverted": "false",
"power": "7"
}
},
{
- "id": 9075,
+ "id": 9215,
"properties": {
"inverted": "false",
"power": "8"
}
},
{
- "id": 9076,
+ "id": 9216,
"properties": {
"inverted": "false",
"power": "9"
}
},
{
- "id": 9077,
+ "id": 9217,
"properties": {
"inverted": "false",
"power": "10"
}
},
{
- "id": 9078,
+ "id": 9218,
"properties": {
"inverted": "false",
"power": "11"
}
},
{
- "id": 9079,
+ "id": 9219,
"properties": {
"inverted": "false",
"power": "12"
}
},
{
- "id": 9080,
+ "id": 9220,
"properties": {
"inverted": "false",
"power": "13"
}
},
{
- "id": 9081,
+ "id": 9221,
"properties": {
"inverted": "false",
"power": "14"
}
},
{
- "id": 9082,
+ "id": 9222,
"properties": {
"inverted": "false",
"power": "15"
@@ -67290,13 +67473,13 @@
"states": [
{
"default": true,
- "id": 12674,
+ "id": 12815,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12675,
+ "id": 12816,
"properties": {
"waterlogged": "false"
}
@@ -67307,7 +67490,7 @@
"states": [
{
"default": true,
- "id": 12663
+ "id": 12804
}
]
},
@@ -67321,13 +67504,13 @@
"states": [
{
"default": true,
- "id": 12694,
+ "id": 12835,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12695,
+ "id": 12836,
"properties": {
"waterlogged": "false"
}
@@ -67350,56 +67533,56 @@
"states": [
{
"default": true,
- "id": 12720,
+ "id": 12861,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12721,
+ "id": 12862,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12722,
+ "id": 12863,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12723,
+ "id": 12864,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12724,
+ "id": 12865,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12725,
+ "id": 12866,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12726,
+ "id": 12867,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12727,
+ "id": 12868,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -67417,13 +67600,13 @@
"states": [
{
"default": true,
- "id": 12676,
+ "id": 12817,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12677,
+ "id": 12818,
"properties": {
"waterlogged": "false"
}
@@ -67434,7 +67617,7 @@
"states": [
{
"default": true,
- "id": 12664
+ "id": 12805
}
]
},
@@ -67448,13 +67631,13 @@
"states": [
{
"default": true,
- "id": 12696,
+ "id": 12837,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12697,
+ "id": 12838,
"properties": {
"waterlogged": "false"
}
@@ -67477,56 +67660,56 @@
"states": [
{
"default": true,
- "id": 12728,
+ "id": 12869,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12729,
+ "id": 12870,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12730,
+ "id": 12871,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12731,
+ "id": 12872,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12732,
+ "id": 12873,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12733,
+ "id": 12874,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12734,
+ "id": 12875,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12735,
+ "id": 12876,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -67552,13 +67735,13 @@
"states": [
{
"default": true,
- "id": 12678,
+ "id": 12819,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12679,
+ "id": 12820,
"properties": {
"waterlogged": "false"
}
@@ -67569,7 +67752,7 @@
"states": [
{
"default": true,
- "id": 12665
+ "id": 12806
}
]
},
@@ -67583,13 +67766,13 @@
"states": [
{
"default": true,
- "id": 12698,
+ "id": 12839,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12699,
+ "id": 12840,
"properties": {
"waterlogged": "false"
}
@@ -67612,56 +67795,56 @@
"states": [
{
"default": true,
- "id": 12736,
+ "id": 12877,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12737,
+ "id": 12878,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12738,
+ "id": 12879,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12739,
+ "id": 12880,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12740,
+ "id": 12881,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12741,
+ "id": 12882,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12742,
+ "id": 12883,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12743,
+ "id": 12884,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -67679,13 +67862,13 @@
"states": [
{
"default": true,
- "id": 12680,
+ "id": 12821,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12681,
+ "id": 12822,
"properties": {
"waterlogged": "false"
}
@@ -67696,7 +67879,7 @@
"states": [
{
"default": true,
- "id": 12666
+ "id": 12807
}
]
},
@@ -67710,13 +67893,13 @@
"states": [
{
"default": true,
- "id": 12700,
+ "id": 12841,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12701,
+ "id": 12842,
"properties": {
"waterlogged": "false"
}
@@ -67739,56 +67922,56 @@
"states": [
{
"default": true,
- "id": 12744,
+ "id": 12885,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12745,
+ "id": 12886,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12746,
+ "id": 12887,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12747,
+ "id": 12888,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12748,
+ "id": 12889,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12749,
+ "id": 12890,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12750,
+ "id": 12891,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12751,
+ "id": 12892,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -67806,13 +67989,13 @@
"states": [
{
"default": true,
- "id": 12672,
+ "id": 12813,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12673,
+ "id": 12814,
"properties": {
"waterlogged": "false"
}
@@ -67823,7 +68006,7 @@
"states": [
{
"default": true,
- "id": 12662
+ "id": 12803
}
]
},
@@ -67837,13 +68020,13 @@
"states": [
{
"default": true,
- "id": 12692,
+ "id": 12833,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12693,
+ "id": 12834,
"properties": {
"waterlogged": "false"
}
@@ -67866,56 +68049,56 @@
"states": [
{
"default": true,
- "id": 12712,
+ "id": 12853,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12713,
+ "id": 12854,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12714,
+ "id": 12855,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12715,
+ "id": 12856,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12716,
+ "id": 12857,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12717,
+ "id": 12858,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12718,
+ "id": 12859,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12719,
+ "id": 12860,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -67942,7 +68125,7 @@
},
"states": [
{
- "id": 24119,
+ "id": 24260,
"properties": {
"cracked": "true",
"facing": "north",
@@ -67950,7 +68133,7 @@
}
},
{
- "id": 24120,
+ "id": 24261,
"properties": {
"cracked": "true",
"facing": "north",
@@ -67958,7 +68141,7 @@
}
},
{
- "id": 24121,
+ "id": 24262,
"properties": {
"cracked": "true",
"facing": "south",
@@ -67966,7 +68149,7 @@
}
},
{
- "id": 24122,
+ "id": 24263,
"properties": {
"cracked": "true",
"facing": "south",
@@ -67974,7 +68157,7 @@
}
},
{
- "id": 24123,
+ "id": 24264,
"properties": {
"cracked": "true",
"facing": "west",
@@ -67982,7 +68165,7 @@
}
},
{
- "id": 24124,
+ "id": 24265,
"properties": {
"cracked": "true",
"facing": "west",
@@ -67990,7 +68173,7 @@
}
},
{
- "id": 24125,
+ "id": 24266,
"properties": {
"cracked": "true",
"facing": "east",
@@ -67998,7 +68181,7 @@
}
},
{
- "id": 24126,
+ "id": 24267,
"properties": {
"cracked": "true",
"facing": "east",
@@ -68006,7 +68189,7 @@
}
},
{
- "id": 24127,
+ "id": 24268,
"properties": {
"cracked": "false",
"facing": "north",
@@ -68015,7 +68198,7 @@
},
{
"default": true,
- "id": 24128,
+ "id": 24269,
"properties": {
"cracked": "false",
"facing": "north",
@@ -68023,7 +68206,7 @@
}
},
{
- "id": 24129,
+ "id": 24270,
"properties": {
"cracked": "false",
"facing": "south",
@@ -68031,7 +68214,7 @@
}
},
{
- "id": 24130,
+ "id": 24271,
"properties": {
"cracked": "false",
"facing": "south",
@@ -68039,7 +68222,7 @@
}
},
{
- "id": 24131,
+ "id": 24272,
"properties": {
"cracked": "false",
"facing": "west",
@@ -68047,7 +68230,7 @@
}
},
{
- "id": 24132,
+ "id": 24273,
"properties": {
"cracked": "false",
"facing": "west",
@@ -68055,7 +68238,7 @@
}
},
{
- "id": 24133,
+ "id": 24274,
"properties": {
"cracked": "false",
"facing": "east",
@@ -68063,7 +68246,7 @@
}
},
{
- "id": 24134,
+ "id": 24275,
"properties": {
"cracked": "false",
"facing": "east",
@@ -68082,20 +68265,20 @@
},
"states": [
{
- "id": 22449,
+ "id": 22590,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 22450,
+ "id": 22591,
"properties": {
"axis": "y"
}
},
{
- "id": 22451,
+ "id": 22592,
"properties": {
"axis": "z"
}
@@ -68116,21 +68299,21 @@
},
"states": [
{
- "id": 23766,
+ "id": 23907,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23767,
+ "id": 23908,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23768,
+ "id": 23909,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -68138,21 +68321,21 @@
},
{
"default": true,
- "id": 23769,
+ "id": 23910,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23770,
+ "id": 23911,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23771,
+ "id": 23912,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -68186,7 +68369,7 @@
},
"states": [
{
- "id": 23686,
+ "id": 23827,
"properties": {
"facing": "north",
"half": "top",
@@ -68195,7 +68378,7 @@
}
},
{
- "id": 23687,
+ "id": 23828,
"properties": {
"facing": "north",
"half": "top",
@@ -68204,7 +68387,7 @@
}
},
{
- "id": 23688,
+ "id": 23829,
"properties": {
"facing": "north",
"half": "top",
@@ -68213,7 +68396,7 @@
}
},
{
- "id": 23689,
+ "id": 23830,
"properties": {
"facing": "north",
"half": "top",
@@ -68222,7 +68405,7 @@
}
},
{
- "id": 23690,
+ "id": 23831,
"properties": {
"facing": "north",
"half": "top",
@@ -68231,7 +68414,7 @@
}
},
{
- "id": 23691,
+ "id": 23832,
"properties": {
"facing": "north",
"half": "top",
@@ -68240,7 +68423,7 @@
}
},
{
- "id": 23692,
+ "id": 23833,
"properties": {
"facing": "north",
"half": "top",
@@ -68249,7 +68432,7 @@
}
},
{
- "id": 23693,
+ "id": 23834,
"properties": {
"facing": "north",
"half": "top",
@@ -68258,7 +68441,7 @@
}
},
{
- "id": 23694,
+ "id": 23835,
"properties": {
"facing": "north",
"half": "top",
@@ -68267,7 +68450,7 @@
}
},
{
- "id": 23695,
+ "id": 23836,
"properties": {
"facing": "north",
"half": "top",
@@ -68276,7 +68459,7 @@
}
},
{
- "id": 23696,
+ "id": 23837,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68286,7 +68469,7 @@
},
{
"default": true,
- "id": 23697,
+ "id": 23838,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68295,7 +68478,7 @@
}
},
{
- "id": 23698,
+ "id": 23839,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68304,7 +68487,7 @@
}
},
{
- "id": 23699,
+ "id": 23840,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68313,7 +68496,7 @@
}
},
{
- "id": 23700,
+ "id": 23841,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68322,7 +68505,7 @@
}
},
{
- "id": 23701,
+ "id": 23842,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68331,7 +68514,7 @@
}
},
{
- "id": 23702,
+ "id": 23843,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68340,7 +68523,7 @@
}
},
{
- "id": 23703,
+ "id": 23844,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68349,7 +68532,7 @@
}
},
{
- "id": 23704,
+ "id": 23845,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68358,7 +68541,7 @@
}
},
{
- "id": 23705,
+ "id": 23846,
"properties": {
"facing": "north",
"half": "bottom",
@@ -68367,7 +68550,7 @@
}
},
{
- "id": 23706,
+ "id": 23847,
"properties": {
"facing": "south",
"half": "top",
@@ -68376,7 +68559,7 @@
}
},
{
- "id": 23707,
+ "id": 23848,
"properties": {
"facing": "south",
"half": "top",
@@ -68385,7 +68568,7 @@
}
},
{
- "id": 23708,
+ "id": 23849,
"properties": {
"facing": "south",
"half": "top",
@@ -68394,7 +68577,7 @@
}
},
{
- "id": 23709,
+ "id": 23850,
"properties": {
"facing": "south",
"half": "top",
@@ -68403,7 +68586,7 @@
}
},
{
- "id": 23710,
+ "id": 23851,
"properties": {
"facing": "south",
"half": "top",
@@ -68412,7 +68595,7 @@
}
},
{
- "id": 23711,
+ "id": 23852,
"properties": {
"facing": "south",
"half": "top",
@@ -68421,7 +68604,7 @@
}
},
{
- "id": 23712,
+ "id": 23853,
"properties": {
"facing": "south",
"half": "top",
@@ -68430,7 +68613,7 @@
}
},
{
- "id": 23713,
+ "id": 23854,
"properties": {
"facing": "south",
"half": "top",
@@ -68439,7 +68622,7 @@
}
},
{
- "id": 23714,
+ "id": 23855,
"properties": {
"facing": "south",
"half": "top",
@@ -68448,7 +68631,7 @@
}
},
{
- "id": 23715,
+ "id": 23856,
"properties": {
"facing": "south",
"half": "top",
@@ -68457,7 +68640,7 @@
}
},
{
- "id": 23716,
+ "id": 23857,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68466,7 +68649,7 @@
}
},
{
- "id": 23717,
+ "id": 23858,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68475,7 +68658,7 @@
}
},
{
- "id": 23718,
+ "id": 23859,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68484,7 +68667,7 @@
}
},
{
- "id": 23719,
+ "id": 23860,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68493,7 +68676,7 @@
}
},
{
- "id": 23720,
+ "id": 23861,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68502,7 +68685,7 @@
}
},
{
- "id": 23721,
+ "id": 23862,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68511,7 +68694,7 @@
}
},
{
- "id": 23722,
+ "id": 23863,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68520,7 +68703,7 @@
}
},
{
- "id": 23723,
+ "id": 23864,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68529,7 +68712,7 @@
}
},
{
- "id": 23724,
+ "id": 23865,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68538,7 +68721,7 @@
}
},
{
- "id": 23725,
+ "id": 23866,
"properties": {
"facing": "south",
"half": "bottom",
@@ -68547,7 +68730,7 @@
}
},
{
- "id": 23726,
+ "id": 23867,
"properties": {
"facing": "west",
"half": "top",
@@ -68556,7 +68739,7 @@
}
},
{
- "id": 23727,
+ "id": 23868,
"properties": {
"facing": "west",
"half": "top",
@@ -68565,7 +68748,7 @@
}
},
{
- "id": 23728,
+ "id": 23869,
"properties": {
"facing": "west",
"half": "top",
@@ -68574,7 +68757,7 @@
}
},
{
- "id": 23729,
+ "id": 23870,
"properties": {
"facing": "west",
"half": "top",
@@ -68583,7 +68766,7 @@
}
},
{
- "id": 23730,
+ "id": 23871,
"properties": {
"facing": "west",
"half": "top",
@@ -68592,7 +68775,7 @@
}
},
{
- "id": 23731,
+ "id": 23872,
"properties": {
"facing": "west",
"half": "top",
@@ -68601,7 +68784,7 @@
}
},
{
- "id": 23732,
+ "id": 23873,
"properties": {
"facing": "west",
"half": "top",
@@ -68610,7 +68793,7 @@
}
},
{
- "id": 23733,
+ "id": 23874,
"properties": {
"facing": "west",
"half": "top",
@@ -68619,7 +68802,7 @@
}
},
{
- "id": 23734,
+ "id": 23875,
"properties": {
"facing": "west",
"half": "top",
@@ -68628,7 +68811,7 @@
}
},
{
- "id": 23735,
+ "id": 23876,
"properties": {
"facing": "west",
"half": "top",
@@ -68637,7 +68820,7 @@
}
},
{
- "id": 23736,
+ "id": 23877,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68646,7 +68829,7 @@
}
},
{
- "id": 23737,
+ "id": 23878,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68655,7 +68838,7 @@
}
},
{
- "id": 23738,
+ "id": 23879,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68664,7 +68847,7 @@
}
},
{
- "id": 23739,
+ "id": 23880,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68673,7 +68856,7 @@
}
},
{
- "id": 23740,
+ "id": 23881,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68682,7 +68865,7 @@
}
},
{
- "id": 23741,
+ "id": 23882,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68691,7 +68874,7 @@
}
},
{
- "id": 23742,
+ "id": 23883,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68700,7 +68883,7 @@
}
},
{
- "id": 23743,
+ "id": 23884,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68709,7 +68892,7 @@
}
},
{
- "id": 23744,
+ "id": 23885,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68718,7 +68901,7 @@
}
},
{
- "id": 23745,
+ "id": 23886,
"properties": {
"facing": "west",
"half": "bottom",
@@ -68727,7 +68910,7 @@
}
},
{
- "id": 23746,
+ "id": 23887,
"properties": {
"facing": "east",
"half": "top",
@@ -68736,7 +68919,7 @@
}
},
{
- "id": 23747,
+ "id": 23888,
"properties": {
"facing": "east",
"half": "top",
@@ -68745,7 +68928,7 @@
}
},
{
- "id": 23748,
+ "id": 23889,
"properties": {
"facing": "east",
"half": "top",
@@ -68754,7 +68937,7 @@
}
},
{
- "id": 23749,
+ "id": 23890,
"properties": {
"facing": "east",
"half": "top",
@@ -68763,7 +68946,7 @@
}
},
{
- "id": 23750,
+ "id": 23891,
"properties": {
"facing": "east",
"half": "top",
@@ -68772,7 +68955,7 @@
}
},
{
- "id": 23751,
+ "id": 23892,
"properties": {
"facing": "east",
"half": "top",
@@ -68781,7 +68964,7 @@
}
},
{
- "id": 23752,
+ "id": 23893,
"properties": {
"facing": "east",
"half": "top",
@@ -68790,7 +68973,7 @@
}
},
{
- "id": 23753,
+ "id": 23894,
"properties": {
"facing": "east",
"half": "top",
@@ -68799,7 +68982,7 @@
}
},
{
- "id": 23754,
+ "id": 23895,
"properties": {
"facing": "east",
"half": "top",
@@ -68808,7 +68991,7 @@
}
},
{
- "id": 23755,
+ "id": 23896,
"properties": {
"facing": "east",
"half": "top",
@@ -68817,7 +69000,7 @@
}
},
{
- "id": 23756,
+ "id": 23897,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68826,7 +69009,7 @@
}
},
{
- "id": 23757,
+ "id": 23898,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68835,7 +69018,7 @@
}
},
{
- "id": 23758,
+ "id": 23899,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68844,7 +69027,7 @@
}
},
{
- "id": 23759,
+ "id": 23900,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68853,7 +69036,7 @@
}
},
{
- "id": 23760,
+ "id": 23901,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68862,7 +69045,7 @@
}
},
{
- "id": 23761,
+ "id": 23902,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68871,7 +69054,7 @@
}
},
{
- "id": 23762,
+ "id": 23903,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68880,7 +69063,7 @@
}
},
{
- "id": 23763,
+ "id": 23904,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68889,7 +69072,7 @@
}
},
{
- "id": 23764,
+ "id": 23905,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68898,7 +69081,7 @@
}
},
{
- "id": 23765,
+ "id": 23906,
"properties": {
"facing": "east",
"half": "bottom",
@@ -68941,7 +69124,7 @@
},
"states": [
{
- "id": 23772,
+ "id": 23913,
"properties": {
"east": "none",
"north": "none",
@@ -68952,7 +69135,7 @@
}
},
{
- "id": 23773,
+ "id": 23914,
"properties": {
"east": "none",
"north": "none",
@@ -68963,7 +69146,7 @@
}
},
{
- "id": 23774,
+ "id": 23915,
"properties": {
"east": "none",
"north": "none",
@@ -68975,2339 +69158,2339 @@
},
{
"default": true,
- "id": 23775,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23776,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23777,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23778,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23779,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23780,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23781,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23782,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23783,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23784,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23785,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23786,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23787,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23788,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23789,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23790,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23791,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23792,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23793,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23794,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23795,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23796,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23797,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23798,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23799,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23800,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23801,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23802,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23803,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23804,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23805,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23806,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23807,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23808,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23809,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23810,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23811,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23812,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23813,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23814,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23815,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23816,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23817,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23818,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23819,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23820,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23821,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23822,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23823,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23824,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23825,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23826,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23827,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23828,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23829,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23830,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23831,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23832,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23833,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23834,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23835,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23836,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23837,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23838,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23839,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23840,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23841,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23842,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23843,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23844,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23845,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23846,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23847,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23848,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23849,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23850,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23851,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23852,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23853,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23854,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23855,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23856,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23857,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23858,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23859,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23860,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23861,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23862,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23863,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23864,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23865,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23866,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23867,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23868,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23869,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23870,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23871,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23872,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23873,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23874,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23875,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23876,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23877,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23878,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23879,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23880,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23881,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23882,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23883,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23884,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23885,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23886,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23887,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23888,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23889,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23890,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23891,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23892,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23893,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23894,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23895,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23896,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23897,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23898,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23899,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23900,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23901,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23902,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23903,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23904,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23905,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23906,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23907,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23908,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23909,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23910,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23911,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23912,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23913,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23914,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23915,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 23916,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23917,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23918,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23919,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23920,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23921,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23922,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23923,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23924,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23925,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23926,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23927,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23928,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23929,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23930,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23931,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23932,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23933,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23934,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23935,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23936,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23937,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23938,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23939,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23940,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23941,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23942,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23943,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23944,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23945,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23946,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23947,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23948,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23949,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23950,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23951,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23952,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23953,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23954,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23955,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23956,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23957,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23958,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23959,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23960,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23961,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23962,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23963,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23964,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23965,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23966,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23967,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23968,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23969,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23970,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23971,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23972,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23973,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23974,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23975,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23976,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23977,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23978,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23979,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23980,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23981,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23982,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23983,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23984,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23985,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23986,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23987,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23988,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23989,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23990,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23991,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23992,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23993,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23994,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23995,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23996,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23997,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23998,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23999,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24000,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24001,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24002,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24003,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24004,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24005,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24006,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24007,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24008,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24009,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24010,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24011,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24012,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24013,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24014,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24015,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24016,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24017,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24018,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24019,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24020,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24021,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24022,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24023,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24024,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24025,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24026,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24027,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24028,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24029,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24030,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24031,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24032,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24033,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24034,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24035,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24036,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24037,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24038,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24039,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24040,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24041,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24042,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24043,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24044,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24045,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24046,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24047,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24048,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24049,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24050,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24051,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24052,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24053,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24054,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24055,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24056,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24057,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24058,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24059,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24060,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24061,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24062,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24063,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24064,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24065,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24066,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24067,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24068,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24069,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24070,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24071,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24072,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24073,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24074,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24075,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24076,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24077,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24078,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24079,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24080,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24081,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24082,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24083,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24084,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24085,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24086,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24087,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24088,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24089,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24090,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24091,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24092,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24093,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24094,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24095,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24096,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24097,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24098,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24099,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24100,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24101,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24102,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24103,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24104,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24105,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24106,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24107,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24108,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24109,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24110,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24111,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24112,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24113,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24114,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24115,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24116,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24117,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24118,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24119,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24120,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24121,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24122,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24123,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24124,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24125,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 24126,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 24127,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 24128,
"properties": {
"east": "low",
"north": "tall",
@@ -71318,7 +71501,7 @@
}
},
{
- "id": 23988,
+ "id": 24129,
"properties": {
"east": "tall",
"north": "none",
@@ -71329,7 +71512,7 @@
}
},
{
- "id": 23989,
+ "id": 24130,
"properties": {
"east": "tall",
"north": "none",
@@ -71340,7 +71523,7 @@
}
},
{
- "id": 23990,
+ "id": 24131,
"properties": {
"east": "tall",
"north": "none",
@@ -71351,7 +71534,7 @@
}
},
{
- "id": 23991,
+ "id": 24132,
"properties": {
"east": "tall",
"north": "none",
@@ -71362,7 +71545,7 @@
}
},
{
- "id": 23992,
+ "id": 24133,
"properties": {
"east": "tall",
"north": "none",
@@ -71373,7 +71556,7 @@
}
},
{
- "id": 23993,
+ "id": 24134,
"properties": {
"east": "tall",
"north": "none",
@@ -71384,7 +71567,7 @@
}
},
{
- "id": 23994,
+ "id": 24135,
"properties": {
"east": "tall",
"north": "none",
@@ -71395,7 +71578,7 @@
}
},
{
- "id": 23995,
+ "id": 24136,
"properties": {
"east": "tall",
"north": "none",
@@ -71406,7 +71589,7 @@
}
},
{
- "id": 23996,
+ "id": 24137,
"properties": {
"east": "tall",
"north": "none",
@@ -71417,7 +71600,7 @@
}
},
{
- "id": 23997,
+ "id": 24138,
"properties": {
"east": "tall",
"north": "none",
@@ -71428,7 +71611,7 @@
}
},
{
- "id": 23998,
+ "id": 24139,
"properties": {
"east": "tall",
"north": "none",
@@ -71439,7 +71622,7 @@
}
},
{
- "id": 23999,
+ "id": 24140,
"properties": {
"east": "tall",
"north": "none",
@@ -71450,7 +71633,7 @@
}
},
{
- "id": 24000,
+ "id": 24141,
"properties": {
"east": "tall",
"north": "none",
@@ -71461,7 +71644,7 @@
}
},
{
- "id": 24001,
+ "id": 24142,
"properties": {
"east": "tall",
"north": "none",
@@ -71472,7 +71655,7 @@
}
},
{
- "id": 24002,
+ "id": 24143,
"properties": {
"east": "tall",
"north": "none",
@@ -71483,7 +71666,7 @@
}
},
{
- "id": 24003,
+ "id": 24144,
"properties": {
"east": "tall",
"north": "none",
@@ -71494,7 +71677,7 @@
}
},
{
- "id": 24004,
+ "id": 24145,
"properties": {
"east": "tall",
"north": "none",
@@ -71505,7 +71688,7 @@
}
},
{
- "id": 24005,
+ "id": 24146,
"properties": {
"east": "tall",
"north": "none",
@@ -71516,7 +71699,7 @@
}
},
{
- "id": 24006,
+ "id": 24147,
"properties": {
"east": "tall",
"north": "none",
@@ -71527,7 +71710,7 @@
}
},
{
- "id": 24007,
+ "id": 24148,
"properties": {
"east": "tall",
"north": "none",
@@ -71538,7 +71721,7 @@
}
},
{
- "id": 24008,
+ "id": 24149,
"properties": {
"east": "tall",
"north": "none",
@@ -71549,7 +71732,7 @@
}
},
{
- "id": 24009,
+ "id": 24150,
"properties": {
"east": "tall",
"north": "none",
@@ -71560,7 +71743,7 @@
}
},
{
- "id": 24010,
+ "id": 24151,
"properties": {
"east": "tall",
"north": "none",
@@ -71571,7 +71754,7 @@
}
},
{
- "id": 24011,
+ "id": 24152,
"properties": {
"east": "tall",
"north": "none",
@@ -71582,7 +71765,7 @@
}
},
{
- "id": 24012,
+ "id": 24153,
"properties": {
"east": "tall",
"north": "none",
@@ -71593,7 +71776,7 @@
}
},
{
- "id": 24013,
+ "id": 24154,
"properties": {
"east": "tall",
"north": "none",
@@ -71604,7 +71787,7 @@
}
},
{
- "id": 24014,
+ "id": 24155,
"properties": {
"east": "tall",
"north": "none",
@@ -71615,7 +71798,7 @@
}
},
{
- "id": 24015,
+ "id": 24156,
"properties": {
"east": "tall",
"north": "none",
@@ -71626,7 +71809,7 @@
}
},
{
- "id": 24016,
+ "id": 24157,
"properties": {
"east": "tall",
"north": "none",
@@ -71637,7 +71820,7 @@
}
},
{
- "id": 24017,
+ "id": 24158,
"properties": {
"east": "tall",
"north": "none",
@@ -71648,7 +71831,7 @@
}
},
{
- "id": 24018,
+ "id": 24159,
"properties": {
"east": "tall",
"north": "none",
@@ -71659,7 +71842,7 @@
}
},
{
- "id": 24019,
+ "id": 24160,
"properties": {
"east": "tall",
"north": "none",
@@ -71670,7 +71853,7 @@
}
},
{
- "id": 24020,
+ "id": 24161,
"properties": {
"east": "tall",
"north": "none",
@@ -71681,7 +71864,7 @@
}
},
{
- "id": 24021,
+ "id": 24162,
"properties": {
"east": "tall",
"north": "none",
@@ -71692,7 +71875,7 @@
}
},
{
- "id": 24022,
+ "id": 24163,
"properties": {
"east": "tall",
"north": "none",
@@ -71703,7 +71886,7 @@
}
},
{
- "id": 24023,
+ "id": 24164,
"properties": {
"east": "tall",
"north": "none",
@@ -71714,7 +71897,7 @@
}
},
{
- "id": 24024,
+ "id": 24165,
"properties": {
"east": "tall",
"north": "low",
@@ -71725,7 +71908,7 @@
}
},
{
- "id": 24025,
+ "id": 24166,
"properties": {
"east": "tall",
"north": "low",
@@ -71736,7 +71919,7 @@
}
},
{
- "id": 24026,
+ "id": 24167,
"properties": {
"east": "tall",
"north": "low",
@@ -71747,7 +71930,7 @@
}
},
{
- "id": 24027,
+ "id": 24168,
"properties": {
"east": "tall",
"north": "low",
@@ -71758,7 +71941,7 @@
}
},
{
- "id": 24028,
+ "id": 24169,
"properties": {
"east": "tall",
"north": "low",
@@ -71769,7 +71952,7 @@
}
},
{
- "id": 24029,
+ "id": 24170,
"properties": {
"east": "tall",
"north": "low",
@@ -71780,7 +71963,7 @@
}
},
{
- "id": 24030,
+ "id": 24171,
"properties": {
"east": "tall",
"north": "low",
@@ -71791,7 +71974,7 @@
}
},
{
- "id": 24031,
+ "id": 24172,
"properties": {
"east": "tall",
"north": "low",
@@ -71802,7 +71985,7 @@
}
},
{
- "id": 24032,
+ "id": 24173,
"properties": {
"east": "tall",
"north": "low",
@@ -71813,7 +71996,7 @@
}
},
{
- "id": 24033,
+ "id": 24174,
"properties": {
"east": "tall",
"north": "low",
@@ -71824,7 +72007,7 @@
}
},
{
- "id": 24034,
+ "id": 24175,
"properties": {
"east": "tall",
"north": "low",
@@ -71835,7 +72018,7 @@
}
},
{
- "id": 24035,
+ "id": 24176,
"properties": {
"east": "tall",
"north": "low",
@@ -71846,7 +72029,7 @@
}
},
{
- "id": 24036,
+ "id": 24177,
"properties": {
"east": "tall",
"north": "low",
@@ -71857,7 +72040,7 @@
}
},
{
- "id": 24037,
+ "id": 24178,
"properties": {
"east": "tall",
"north": "low",
@@ -71868,7 +72051,7 @@
}
},
{
- "id": 24038,
+ "id": 24179,
"properties": {
"east": "tall",
"north": "low",
@@ -71879,7 +72062,7 @@
}
},
{
- "id": 24039,
+ "id": 24180,
"properties": {
"east": "tall",
"north": "low",
@@ -71890,7 +72073,7 @@
}
},
{
- "id": 24040,
+ "id": 24181,
"properties": {
"east": "tall",
"north": "low",
@@ -71901,7 +72084,7 @@
}
},
{
- "id": 24041,
+ "id": 24182,
"properties": {
"east": "tall",
"north": "low",
@@ -71912,7 +72095,7 @@
}
},
{
- "id": 24042,
+ "id": 24183,
"properties": {
"east": "tall",
"north": "low",
@@ -71923,7 +72106,7 @@
}
},
{
- "id": 24043,
+ "id": 24184,
"properties": {
"east": "tall",
"north": "low",
@@ -71934,7 +72117,7 @@
}
},
{
- "id": 24044,
+ "id": 24185,
"properties": {
"east": "tall",
"north": "low",
@@ -71945,7 +72128,7 @@
}
},
{
- "id": 24045,
+ "id": 24186,
"properties": {
"east": "tall",
"north": "low",
@@ -71956,7 +72139,7 @@
}
},
{
- "id": 24046,
+ "id": 24187,
"properties": {
"east": "tall",
"north": "low",
@@ -71967,7 +72150,7 @@
}
},
{
- "id": 24047,
+ "id": 24188,
"properties": {
"east": "tall",
"north": "low",
@@ -71978,7 +72161,7 @@
}
},
{
- "id": 24048,
+ "id": 24189,
"properties": {
"east": "tall",
"north": "low",
@@ -71989,7 +72172,7 @@
}
},
{
- "id": 24049,
+ "id": 24190,
"properties": {
"east": "tall",
"north": "low",
@@ -72000,7 +72183,7 @@
}
},
{
- "id": 24050,
+ "id": 24191,
"properties": {
"east": "tall",
"north": "low",
@@ -72011,7 +72194,7 @@
}
},
{
- "id": 24051,
+ "id": 24192,
"properties": {
"east": "tall",
"north": "low",
@@ -72022,7 +72205,7 @@
}
},
{
- "id": 24052,
+ "id": 24193,
"properties": {
"east": "tall",
"north": "low",
@@ -72033,7 +72216,7 @@
}
},
{
- "id": 24053,
+ "id": 24194,
"properties": {
"east": "tall",
"north": "low",
@@ -72044,7 +72227,7 @@
}
},
{
- "id": 24054,
+ "id": 24195,
"properties": {
"east": "tall",
"north": "low",
@@ -72055,7 +72238,7 @@
}
},
{
- "id": 24055,
+ "id": 24196,
"properties": {
"east": "tall",
"north": "low",
@@ -72066,7 +72249,7 @@
}
},
{
- "id": 24056,
+ "id": 24197,
"properties": {
"east": "tall",
"north": "low",
@@ -72077,7 +72260,7 @@
}
},
{
- "id": 24057,
+ "id": 24198,
"properties": {
"east": "tall",
"north": "low",
@@ -72088,7 +72271,7 @@
}
},
{
- "id": 24058,
+ "id": 24199,
"properties": {
"east": "tall",
"north": "low",
@@ -72099,7 +72282,7 @@
}
},
{
- "id": 24059,
+ "id": 24200,
"properties": {
"east": "tall",
"north": "low",
@@ -72110,7 +72293,7 @@
}
},
{
- "id": 24060,
+ "id": 24201,
"properties": {
"east": "tall",
"north": "tall",
@@ -72121,7 +72304,7 @@
}
},
{
- "id": 24061,
+ "id": 24202,
"properties": {
"east": "tall",
"north": "tall",
@@ -72132,7 +72315,7 @@
}
},
{
- "id": 24062,
+ "id": 24203,
"properties": {
"east": "tall",
"north": "tall",
@@ -72143,7 +72326,7 @@
}
},
{
- "id": 24063,
+ "id": 24204,
"properties": {
"east": "tall",
"north": "tall",
@@ -72154,7 +72337,7 @@
}
},
{
- "id": 24064,
+ "id": 24205,
"properties": {
"east": "tall",
"north": "tall",
@@ -72165,7 +72348,7 @@
}
},
{
- "id": 24065,
+ "id": 24206,
"properties": {
"east": "tall",
"north": "tall",
@@ -72176,7 +72359,7 @@
}
},
{
- "id": 24066,
+ "id": 24207,
"properties": {
"east": "tall",
"north": "tall",
@@ -72187,7 +72370,7 @@
}
},
{
- "id": 24067,
+ "id": 24208,
"properties": {
"east": "tall",
"north": "tall",
@@ -72198,7 +72381,7 @@
}
},
{
- "id": 24068,
+ "id": 24209,
"properties": {
"east": "tall",
"north": "tall",
@@ -72209,7 +72392,7 @@
}
},
{
- "id": 24069,
+ "id": 24210,
"properties": {
"east": "tall",
"north": "tall",
@@ -72220,7 +72403,7 @@
}
},
{
- "id": 24070,
+ "id": 24211,
"properties": {
"east": "tall",
"north": "tall",
@@ -72231,7 +72414,7 @@
}
},
{
- "id": 24071,
+ "id": 24212,
"properties": {
"east": "tall",
"north": "tall",
@@ -72242,7 +72425,7 @@
}
},
{
- "id": 24072,
+ "id": 24213,
"properties": {
"east": "tall",
"north": "tall",
@@ -72253,7 +72436,7 @@
}
},
{
- "id": 24073,
+ "id": 24214,
"properties": {
"east": "tall",
"north": "tall",
@@ -72264,7 +72447,7 @@
}
},
{
- "id": 24074,
+ "id": 24215,
"properties": {
"east": "tall",
"north": "tall",
@@ -72275,7 +72458,7 @@
}
},
{
- "id": 24075,
+ "id": 24216,
"properties": {
"east": "tall",
"north": "tall",
@@ -72286,7 +72469,7 @@
}
},
{
- "id": 24076,
+ "id": 24217,
"properties": {
"east": "tall",
"north": "tall",
@@ -72297,7 +72480,7 @@
}
},
{
- "id": 24077,
+ "id": 24218,
"properties": {
"east": "tall",
"north": "tall",
@@ -72308,7 +72491,7 @@
}
},
{
- "id": 24078,
+ "id": 24219,
"properties": {
"east": "tall",
"north": "tall",
@@ -72319,7 +72502,7 @@
}
},
{
- "id": 24079,
+ "id": 24220,
"properties": {
"east": "tall",
"north": "tall",
@@ -72330,7 +72513,7 @@
}
},
{
- "id": 24080,
+ "id": 24221,
"properties": {
"east": "tall",
"north": "tall",
@@ -72341,7 +72524,7 @@
}
},
{
- "id": 24081,
+ "id": 24222,
"properties": {
"east": "tall",
"north": "tall",
@@ -72352,7 +72535,7 @@
}
},
{
- "id": 24082,
+ "id": 24223,
"properties": {
"east": "tall",
"north": "tall",
@@ -72363,7 +72546,7 @@
}
},
{
- "id": 24083,
+ "id": 24224,
"properties": {
"east": "tall",
"north": "tall",
@@ -72374,7 +72557,7 @@
}
},
{
- "id": 24084,
+ "id": 24225,
"properties": {
"east": "tall",
"north": "tall",
@@ -72385,7 +72568,7 @@
}
},
{
- "id": 24085,
+ "id": 24226,
"properties": {
"east": "tall",
"north": "tall",
@@ -72396,7 +72579,7 @@
}
},
{
- "id": 24086,
+ "id": 24227,
"properties": {
"east": "tall",
"north": "tall",
@@ -72407,7 +72590,7 @@
}
},
{
- "id": 24087,
+ "id": 24228,
"properties": {
"east": "tall",
"north": "tall",
@@ -72418,7 +72601,7 @@
}
},
{
- "id": 24088,
+ "id": 24229,
"properties": {
"east": "tall",
"north": "tall",
@@ -72429,7 +72612,7 @@
}
},
{
- "id": 24089,
+ "id": 24230,
"properties": {
"east": "tall",
"north": "tall",
@@ -72440,7 +72623,7 @@
}
},
{
- "id": 24090,
+ "id": 24231,
"properties": {
"east": "tall",
"north": "tall",
@@ -72451,7 +72634,7 @@
}
},
{
- "id": 24091,
+ "id": 24232,
"properties": {
"east": "tall",
"north": "tall",
@@ -72462,7 +72645,7 @@
}
},
{
- "id": 24092,
+ "id": 24233,
"properties": {
"east": "tall",
"north": "tall",
@@ -72473,7 +72656,7 @@
}
},
{
- "id": 24093,
+ "id": 24234,
"properties": {
"east": "tall",
"north": "tall",
@@ -72484,7 +72667,7 @@
}
},
{
- "id": 24094,
+ "id": 24235,
"properties": {
"east": "tall",
"north": "tall",
@@ -72495,7 +72678,7 @@
}
},
{
- "id": 24095,
+ "id": 24236,
"properties": {
"east": "tall",
"north": "tall",
@@ -72511,7 +72694,7 @@
"states": [
{
"default": true,
- "id": 23685
+ "id": 23826
}
]
},
@@ -72527,7 +72710,7 @@
"states": [
{
"default": true,
- "id": 21568
+ "id": 21709
}
]
},
@@ -72608,21 +72791,21 @@
},
"states": [
{
- "id": 23355,
+ "id": 23496,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 23356,
+ "id": 23497,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 23357,
+ "id": 23498,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -72630,21 +72813,21 @@
},
{
"default": true,
- "id": 23358,
+ "id": 23499,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 23359,
+ "id": 23500,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 23360,
+ "id": 23501,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -72678,7 +72861,7 @@
},
"states": [
{
- "id": 23275,
+ "id": 23416,
"properties": {
"facing": "north",
"half": "top",
@@ -72687,7 +72870,7 @@
}
},
{
- "id": 23276,
+ "id": 23417,
"properties": {
"facing": "north",
"half": "top",
@@ -72696,7 +72879,7 @@
}
},
{
- "id": 23277,
+ "id": 23418,
"properties": {
"facing": "north",
"half": "top",
@@ -72705,7 +72888,7 @@
}
},
{
- "id": 23278,
+ "id": 23419,
"properties": {
"facing": "north",
"half": "top",
@@ -72714,7 +72897,7 @@
}
},
{
- "id": 23279,
+ "id": 23420,
"properties": {
"facing": "north",
"half": "top",
@@ -72723,7 +72906,7 @@
}
},
{
- "id": 23280,
+ "id": 23421,
"properties": {
"facing": "north",
"half": "top",
@@ -72732,7 +72915,7 @@
}
},
{
- "id": 23281,
+ "id": 23422,
"properties": {
"facing": "north",
"half": "top",
@@ -72741,7 +72924,7 @@
}
},
{
- "id": 23282,
+ "id": 23423,
"properties": {
"facing": "north",
"half": "top",
@@ -72750,7 +72933,7 @@
}
},
{
- "id": 23283,
+ "id": 23424,
"properties": {
"facing": "north",
"half": "top",
@@ -72759,7 +72942,7 @@
}
},
{
- "id": 23284,
+ "id": 23425,
"properties": {
"facing": "north",
"half": "top",
@@ -72768,7 +72951,7 @@
}
},
{
- "id": 23285,
+ "id": 23426,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72778,7 +72961,7 @@
},
{
"default": true,
- "id": 23286,
+ "id": 23427,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72787,7 +72970,7 @@
}
},
{
- "id": 23287,
+ "id": 23428,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72796,7 +72979,7 @@
}
},
{
- "id": 23288,
+ "id": 23429,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72805,7 +72988,7 @@
}
},
{
- "id": 23289,
+ "id": 23430,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72814,7 +72997,7 @@
}
},
{
- "id": 23290,
+ "id": 23431,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72823,7 +73006,7 @@
}
},
{
- "id": 23291,
+ "id": 23432,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72832,7 +73015,7 @@
}
},
{
- "id": 23292,
+ "id": 23433,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72841,7 +73024,7 @@
}
},
{
- "id": 23293,
+ "id": 23434,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72850,7 +73033,7 @@
}
},
{
- "id": 23294,
+ "id": 23435,
"properties": {
"facing": "north",
"half": "bottom",
@@ -72859,7 +73042,7 @@
}
},
{
- "id": 23295,
+ "id": 23436,
"properties": {
"facing": "south",
"half": "top",
@@ -72868,7 +73051,7 @@
}
},
{
- "id": 23296,
+ "id": 23437,
"properties": {
"facing": "south",
"half": "top",
@@ -72877,7 +73060,7 @@
}
},
{
- "id": 23297,
+ "id": 23438,
"properties": {
"facing": "south",
"half": "top",
@@ -72886,7 +73069,7 @@
}
},
{
- "id": 23298,
+ "id": 23439,
"properties": {
"facing": "south",
"half": "top",
@@ -72895,7 +73078,7 @@
}
},
{
- "id": 23299,
+ "id": 23440,
"properties": {
"facing": "south",
"half": "top",
@@ -72904,7 +73087,7 @@
}
},
{
- "id": 23300,
+ "id": 23441,
"properties": {
"facing": "south",
"half": "top",
@@ -72913,7 +73096,7 @@
}
},
{
- "id": 23301,
+ "id": 23442,
"properties": {
"facing": "south",
"half": "top",
@@ -72922,7 +73105,7 @@
}
},
{
- "id": 23302,
+ "id": 23443,
"properties": {
"facing": "south",
"half": "top",
@@ -72931,7 +73114,7 @@
}
},
{
- "id": 23303,
+ "id": 23444,
"properties": {
"facing": "south",
"half": "top",
@@ -72940,7 +73123,7 @@
}
},
{
- "id": 23304,
+ "id": 23445,
"properties": {
"facing": "south",
"half": "top",
@@ -72949,7 +73132,7 @@
}
},
{
- "id": 23305,
+ "id": 23446,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72958,7 +73141,7 @@
}
},
{
- "id": 23306,
+ "id": 23447,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72967,7 +73150,7 @@
}
},
{
- "id": 23307,
+ "id": 23448,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72976,7 +73159,7 @@
}
},
{
- "id": 23308,
+ "id": 23449,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72985,7 +73168,7 @@
}
},
{
- "id": 23309,
+ "id": 23450,
"properties": {
"facing": "south",
"half": "bottom",
@@ -72994,7 +73177,7 @@
}
},
{
- "id": 23310,
+ "id": 23451,
"properties": {
"facing": "south",
"half": "bottom",
@@ -73003,7 +73186,7 @@
}
},
{
- "id": 23311,
+ "id": 23452,
"properties": {
"facing": "south",
"half": "bottom",
@@ -73012,7 +73195,7 @@
}
},
{
- "id": 23312,
+ "id": 23453,
"properties": {
"facing": "south",
"half": "bottom",
@@ -73021,7 +73204,7 @@
}
},
{
- "id": 23313,
+ "id": 23454,
"properties": {
"facing": "south",
"half": "bottom",
@@ -73030,7 +73213,7 @@
}
},
{
- "id": 23314,
+ "id": 23455,
"properties": {
"facing": "south",
"half": "bottom",
@@ -73039,7 +73222,7 @@
}
},
{
- "id": 23315,
+ "id": 23456,
"properties": {
"facing": "west",
"half": "top",
@@ -73048,7 +73231,7 @@
}
},
{
- "id": 23316,
+ "id": 23457,
"properties": {
"facing": "west",
"half": "top",
@@ -73057,7 +73240,7 @@
}
},
{
- "id": 23317,
+ "id": 23458,
"properties": {
"facing": "west",
"half": "top",
@@ -73066,7 +73249,7 @@
}
},
{
- "id": 23318,
+ "id": 23459,
"properties": {
"facing": "west",
"half": "top",
@@ -73075,7 +73258,7 @@
}
},
{
- "id": 23319,
+ "id": 23460,
"properties": {
"facing": "west",
"half": "top",
@@ -73084,7 +73267,7 @@
}
},
{
- "id": 23320,
+ "id": 23461,
"properties": {
"facing": "west",
"half": "top",
@@ -73093,7 +73276,7 @@
}
},
{
- "id": 23321,
+ "id": 23462,
"properties": {
"facing": "west",
"half": "top",
@@ -73102,7 +73285,7 @@
}
},
{
- "id": 23322,
+ "id": 23463,
"properties": {
"facing": "west",
"half": "top",
@@ -73111,7 +73294,7 @@
}
},
{
- "id": 23323,
+ "id": 23464,
"properties": {
"facing": "west",
"half": "top",
@@ -73120,7 +73303,7 @@
}
},
{
- "id": 23324,
+ "id": 23465,
"properties": {
"facing": "west",
"half": "top",
@@ -73129,7 +73312,7 @@
}
},
{
- "id": 23325,
+ "id": 23466,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73138,7 +73321,7 @@
}
},
{
- "id": 23326,
+ "id": 23467,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73147,7 +73330,7 @@
}
},
{
- "id": 23327,
+ "id": 23468,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73156,7 +73339,7 @@
}
},
{
- "id": 23328,
+ "id": 23469,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73165,7 +73348,7 @@
}
},
{
- "id": 23329,
+ "id": 23470,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73174,7 +73357,7 @@
}
},
{
- "id": 23330,
+ "id": 23471,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73183,7 +73366,7 @@
}
},
{
- "id": 23331,
+ "id": 23472,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73192,7 +73375,7 @@
}
},
{
- "id": 23332,
+ "id": 23473,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73201,7 +73384,7 @@
}
},
{
- "id": 23333,
+ "id": 23474,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73210,7 +73393,7 @@
}
},
{
- "id": 23334,
+ "id": 23475,
"properties": {
"facing": "west",
"half": "bottom",
@@ -73219,7 +73402,7 @@
}
},
{
- "id": 23335,
+ "id": 23476,
"properties": {
"facing": "east",
"half": "top",
@@ -73228,7 +73411,7 @@
}
},
{
- "id": 23336,
+ "id": 23477,
"properties": {
"facing": "east",
"half": "top",
@@ -73237,7 +73420,7 @@
}
},
{
- "id": 23337,
+ "id": 23478,
"properties": {
"facing": "east",
"half": "top",
@@ -73246,7 +73429,7 @@
}
},
{
- "id": 23338,
+ "id": 23479,
"properties": {
"facing": "east",
"half": "top",
@@ -73255,7 +73438,7 @@
}
},
{
- "id": 23339,
+ "id": 23480,
"properties": {
"facing": "east",
"half": "top",
@@ -73264,7 +73447,7 @@
}
},
{
- "id": 23340,
+ "id": 23481,
"properties": {
"facing": "east",
"half": "top",
@@ -73273,7 +73456,7 @@
}
},
{
- "id": 23341,
+ "id": 23482,
"properties": {
"facing": "east",
"half": "top",
@@ -73282,7 +73465,7 @@
}
},
{
- "id": 23342,
+ "id": 23483,
"properties": {
"facing": "east",
"half": "top",
@@ -73291,7 +73474,7 @@
}
},
{
- "id": 23343,
+ "id": 23484,
"properties": {
"facing": "east",
"half": "top",
@@ -73300,7 +73483,7 @@
}
},
{
- "id": 23344,
+ "id": 23485,
"properties": {
"facing": "east",
"half": "top",
@@ -73309,7 +73492,7 @@
}
},
{
- "id": 23345,
+ "id": 23486,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73318,7 +73501,7 @@
}
},
{
- "id": 23346,
+ "id": 23487,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73327,7 +73510,7 @@
}
},
{
- "id": 23347,
+ "id": 23488,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73336,7 +73519,7 @@
}
},
{
- "id": 23348,
+ "id": 23489,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73345,7 +73528,7 @@
}
},
{
- "id": 23349,
+ "id": 23490,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73354,7 +73537,7 @@
}
},
{
- "id": 23350,
+ "id": 23491,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73363,7 +73546,7 @@
}
},
{
- "id": 23351,
+ "id": 23492,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73372,7 +73555,7 @@
}
},
{
- "id": 23352,
+ "id": 23493,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73381,7 +73564,7 @@
}
},
{
- "id": 23353,
+ "id": 23494,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73390,7 +73573,7 @@
}
},
{
- "id": 23354,
+ "id": 23495,
"properties": {
"facing": "east",
"half": "bottom",
@@ -73433,7 +73616,7 @@
},
"states": [
{
- "id": 23361,
+ "id": 23502,
"properties": {
"east": "none",
"north": "none",
@@ -73444,7 +73627,7 @@
}
},
{
- "id": 23362,
+ "id": 23503,
"properties": {
"east": "none",
"north": "none",
@@ -73455,7 +73638,7 @@
}
},
{
- "id": 23363,
+ "id": 23504,
"properties": {
"east": "none",
"north": "none",
@@ -73467,2339 +73650,2339 @@
},
{
"default": true,
- "id": 23364,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23365,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23366,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23367,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23368,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23369,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23370,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23371,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23372,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23373,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23374,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23375,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23376,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23377,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23378,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23379,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23380,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23381,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23382,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23383,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23384,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23385,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23386,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23387,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23388,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23389,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23390,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23391,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23392,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23393,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23394,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23395,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23396,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23397,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23398,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23399,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23400,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23401,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23402,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23403,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23404,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23405,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23406,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23407,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23408,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23409,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23410,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23411,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23412,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23413,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23414,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23415,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23416,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23417,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23418,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23419,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23420,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23421,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23422,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23423,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23424,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23425,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23426,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23427,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23428,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23429,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23430,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23431,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23432,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23433,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23434,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23435,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23436,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23437,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23438,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23439,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23440,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23441,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23442,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23443,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23444,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23445,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23446,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23447,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23448,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23449,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23450,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23451,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23452,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23453,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23454,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23455,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23456,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23457,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23458,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23459,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23460,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23461,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23462,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23463,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23464,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23465,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23466,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23467,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23468,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23469,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23470,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23471,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23472,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23473,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23474,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23475,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23476,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23477,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23478,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23479,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23480,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23481,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23482,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23483,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23484,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23485,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23486,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23487,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23488,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23489,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23490,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23491,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23492,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23493,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23494,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23495,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23496,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23497,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23498,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23499,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23500,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23501,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23502,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23503,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23504,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 23505,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23506,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23507,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23508,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23509,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23510,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23511,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23512,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23513,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23514,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23515,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23516,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23517,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23518,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23519,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23520,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23521,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23522,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23523,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23524,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23525,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23526,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23527,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23528,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23529,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23530,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23531,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23532,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23533,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23534,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23535,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23536,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23537,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23538,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23539,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23540,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23541,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23542,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23543,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23544,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23545,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23546,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23547,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23548,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23549,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23550,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23551,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23552,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23553,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23554,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23555,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23556,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23557,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23558,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23559,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23560,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23561,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23562,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23563,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23564,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23565,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23566,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23567,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23568,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23569,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23570,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23571,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23572,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23573,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23574,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23575,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23576,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23577,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23578,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23579,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23580,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23581,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23582,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23583,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23584,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23585,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23586,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23587,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23588,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23589,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23590,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23591,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23592,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23593,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23594,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23595,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23596,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23597,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23598,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23599,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23600,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23601,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23602,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23603,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23604,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23605,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23606,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23607,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23608,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23609,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23610,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23611,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23612,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23613,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23614,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23615,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23616,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23617,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23618,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23619,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23620,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23621,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23622,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23623,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23624,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23625,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23626,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23627,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23628,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23629,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23630,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23631,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23632,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23633,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23634,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23635,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23636,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23637,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23638,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23639,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23640,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23641,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23642,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23643,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23644,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23645,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23646,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23647,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23648,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23649,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23650,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23651,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23652,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23653,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23654,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23655,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23656,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23657,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23658,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23659,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23660,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23661,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23662,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23663,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23664,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23665,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23666,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23667,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23668,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23669,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23670,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23671,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23672,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23673,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23674,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23675,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23676,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23677,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23678,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23679,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23680,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23681,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23682,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23683,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23684,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23685,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23686,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23687,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23688,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23689,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23690,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23691,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23692,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23693,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23694,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23695,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23696,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23697,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23698,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23699,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23700,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23701,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23702,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23703,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23704,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23705,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23706,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23707,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23708,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23709,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23710,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23711,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23712,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23713,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23714,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23715,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23716,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23717,
"properties": {
"east": "low",
"north": "tall",
@@ -75810,7 +75993,7 @@
}
},
{
- "id": 23577,
+ "id": 23718,
"properties": {
"east": "tall",
"north": "none",
@@ -75821,7 +76004,7 @@
}
},
{
- "id": 23578,
+ "id": 23719,
"properties": {
"east": "tall",
"north": "none",
@@ -75832,7 +76015,7 @@
}
},
{
- "id": 23579,
+ "id": 23720,
"properties": {
"east": "tall",
"north": "none",
@@ -75843,7 +76026,7 @@
}
},
{
- "id": 23580,
+ "id": 23721,
"properties": {
"east": "tall",
"north": "none",
@@ -75854,7 +76037,7 @@
}
},
{
- "id": 23581,
+ "id": 23722,
"properties": {
"east": "tall",
"north": "none",
@@ -75865,7 +76048,7 @@
}
},
{
- "id": 23582,
+ "id": 23723,
"properties": {
"east": "tall",
"north": "none",
@@ -75876,7 +76059,7 @@
}
},
{
- "id": 23583,
+ "id": 23724,
"properties": {
"east": "tall",
"north": "none",
@@ -75887,7 +76070,7 @@
}
},
{
- "id": 23584,
+ "id": 23725,
"properties": {
"east": "tall",
"north": "none",
@@ -75898,7 +76081,7 @@
}
},
{
- "id": 23585,
+ "id": 23726,
"properties": {
"east": "tall",
"north": "none",
@@ -75909,7 +76092,7 @@
}
},
{
- "id": 23586,
+ "id": 23727,
"properties": {
"east": "tall",
"north": "none",
@@ -75920,7 +76103,7 @@
}
},
{
- "id": 23587,
+ "id": 23728,
"properties": {
"east": "tall",
"north": "none",
@@ -75931,7 +76114,7 @@
}
},
{
- "id": 23588,
+ "id": 23729,
"properties": {
"east": "tall",
"north": "none",
@@ -75942,7 +76125,7 @@
}
},
{
- "id": 23589,
+ "id": 23730,
"properties": {
"east": "tall",
"north": "none",
@@ -75953,7 +76136,7 @@
}
},
{
- "id": 23590,
+ "id": 23731,
"properties": {
"east": "tall",
"north": "none",
@@ -75964,7 +76147,7 @@
}
},
{
- "id": 23591,
+ "id": 23732,
"properties": {
"east": "tall",
"north": "none",
@@ -75975,7 +76158,7 @@
}
},
{
- "id": 23592,
+ "id": 23733,
"properties": {
"east": "tall",
"north": "none",
@@ -75986,7 +76169,7 @@
}
},
{
- "id": 23593,
+ "id": 23734,
"properties": {
"east": "tall",
"north": "none",
@@ -75997,7 +76180,7 @@
}
},
{
- "id": 23594,
+ "id": 23735,
"properties": {
"east": "tall",
"north": "none",
@@ -76008,7 +76191,7 @@
}
},
{
- "id": 23595,
+ "id": 23736,
"properties": {
"east": "tall",
"north": "none",
@@ -76019,7 +76202,7 @@
}
},
{
- "id": 23596,
+ "id": 23737,
"properties": {
"east": "tall",
"north": "none",
@@ -76030,7 +76213,7 @@
}
},
{
- "id": 23597,
+ "id": 23738,
"properties": {
"east": "tall",
"north": "none",
@@ -76041,7 +76224,7 @@
}
},
{
- "id": 23598,
+ "id": 23739,
"properties": {
"east": "tall",
"north": "none",
@@ -76052,7 +76235,7 @@
}
},
{
- "id": 23599,
+ "id": 23740,
"properties": {
"east": "tall",
"north": "none",
@@ -76063,7 +76246,7 @@
}
},
{
- "id": 23600,
+ "id": 23741,
"properties": {
"east": "tall",
"north": "none",
@@ -76074,7 +76257,7 @@
}
},
{
- "id": 23601,
+ "id": 23742,
"properties": {
"east": "tall",
"north": "none",
@@ -76085,7 +76268,7 @@
}
},
{
- "id": 23602,
+ "id": 23743,
"properties": {
"east": "tall",
"north": "none",
@@ -76096,7 +76279,7 @@
}
},
{
- "id": 23603,
+ "id": 23744,
"properties": {
"east": "tall",
"north": "none",
@@ -76107,7 +76290,7 @@
}
},
{
- "id": 23604,
+ "id": 23745,
"properties": {
"east": "tall",
"north": "none",
@@ -76118,7 +76301,7 @@
}
},
{
- "id": 23605,
+ "id": 23746,
"properties": {
"east": "tall",
"north": "none",
@@ -76129,7 +76312,7 @@
}
},
{
- "id": 23606,
+ "id": 23747,
"properties": {
"east": "tall",
"north": "none",
@@ -76140,7 +76323,7 @@
}
},
{
- "id": 23607,
+ "id": 23748,
"properties": {
"east": "tall",
"north": "none",
@@ -76151,7 +76334,7 @@
}
},
{
- "id": 23608,
+ "id": 23749,
"properties": {
"east": "tall",
"north": "none",
@@ -76162,7 +76345,7 @@
}
},
{
- "id": 23609,
+ "id": 23750,
"properties": {
"east": "tall",
"north": "none",
@@ -76173,7 +76356,7 @@
}
},
{
- "id": 23610,
+ "id": 23751,
"properties": {
"east": "tall",
"north": "none",
@@ -76184,7 +76367,7 @@
}
},
{
- "id": 23611,
+ "id": 23752,
"properties": {
"east": "tall",
"north": "none",
@@ -76195,7 +76378,7 @@
}
},
{
- "id": 23612,
+ "id": 23753,
"properties": {
"east": "tall",
"north": "none",
@@ -76206,7 +76389,7 @@
}
},
{
- "id": 23613,
+ "id": 23754,
"properties": {
"east": "tall",
"north": "low",
@@ -76217,7 +76400,7 @@
}
},
{
- "id": 23614,
+ "id": 23755,
"properties": {
"east": "tall",
"north": "low",
@@ -76228,7 +76411,7 @@
}
},
{
- "id": 23615,
+ "id": 23756,
"properties": {
"east": "tall",
"north": "low",
@@ -76239,7 +76422,7 @@
}
},
{
- "id": 23616,
+ "id": 23757,
"properties": {
"east": "tall",
"north": "low",
@@ -76250,7 +76433,7 @@
}
},
{
- "id": 23617,
+ "id": 23758,
"properties": {
"east": "tall",
"north": "low",
@@ -76261,7 +76444,7 @@
}
},
{
- "id": 23618,
+ "id": 23759,
"properties": {
"east": "tall",
"north": "low",
@@ -76272,7 +76455,7 @@
}
},
{
- "id": 23619,
+ "id": 23760,
"properties": {
"east": "tall",
"north": "low",
@@ -76283,7 +76466,7 @@
}
},
{
- "id": 23620,
+ "id": 23761,
"properties": {
"east": "tall",
"north": "low",
@@ -76294,7 +76477,7 @@
}
},
{
- "id": 23621,
+ "id": 23762,
"properties": {
"east": "tall",
"north": "low",
@@ -76305,7 +76488,7 @@
}
},
{
- "id": 23622,
+ "id": 23763,
"properties": {
"east": "tall",
"north": "low",
@@ -76316,7 +76499,7 @@
}
},
{
- "id": 23623,
+ "id": 23764,
"properties": {
"east": "tall",
"north": "low",
@@ -76327,7 +76510,7 @@
}
},
{
- "id": 23624,
+ "id": 23765,
"properties": {
"east": "tall",
"north": "low",
@@ -76338,7 +76521,7 @@
}
},
{
- "id": 23625,
+ "id": 23766,
"properties": {
"east": "tall",
"north": "low",
@@ -76349,7 +76532,7 @@
}
},
{
- "id": 23626,
+ "id": 23767,
"properties": {
"east": "tall",
"north": "low",
@@ -76360,7 +76543,7 @@
}
},
{
- "id": 23627,
+ "id": 23768,
"properties": {
"east": "tall",
"north": "low",
@@ -76371,7 +76554,7 @@
}
},
{
- "id": 23628,
+ "id": 23769,
"properties": {
"east": "tall",
"north": "low",
@@ -76382,7 +76565,7 @@
}
},
{
- "id": 23629,
+ "id": 23770,
"properties": {
"east": "tall",
"north": "low",
@@ -76393,7 +76576,7 @@
}
},
{
- "id": 23630,
+ "id": 23771,
"properties": {
"east": "tall",
"north": "low",
@@ -76404,7 +76587,7 @@
}
},
{
- "id": 23631,
+ "id": 23772,
"properties": {
"east": "tall",
"north": "low",
@@ -76415,7 +76598,7 @@
}
},
{
- "id": 23632,
+ "id": 23773,
"properties": {
"east": "tall",
"north": "low",
@@ -76426,7 +76609,7 @@
}
},
{
- "id": 23633,
+ "id": 23774,
"properties": {
"east": "tall",
"north": "low",
@@ -76437,7 +76620,7 @@
}
},
{
- "id": 23634,
+ "id": 23775,
"properties": {
"east": "tall",
"north": "low",
@@ -76448,7 +76631,7 @@
}
},
{
- "id": 23635,
+ "id": 23776,
"properties": {
"east": "tall",
"north": "low",
@@ -76459,7 +76642,7 @@
}
},
{
- "id": 23636,
+ "id": 23777,
"properties": {
"east": "tall",
"north": "low",
@@ -76470,7 +76653,7 @@
}
},
{
- "id": 23637,
+ "id": 23778,
"properties": {
"east": "tall",
"north": "low",
@@ -76481,7 +76664,7 @@
}
},
{
- "id": 23638,
+ "id": 23779,
"properties": {
"east": "tall",
"north": "low",
@@ -76492,7 +76675,7 @@
}
},
{
- "id": 23639,
+ "id": 23780,
"properties": {
"east": "tall",
"north": "low",
@@ -76503,7 +76686,7 @@
}
},
{
- "id": 23640,
+ "id": 23781,
"properties": {
"east": "tall",
"north": "low",
@@ -76514,7 +76697,7 @@
}
},
{
- "id": 23641,
+ "id": 23782,
"properties": {
"east": "tall",
"north": "low",
@@ -76525,7 +76708,7 @@
}
},
{
- "id": 23642,
+ "id": 23783,
"properties": {
"east": "tall",
"north": "low",
@@ -76536,7 +76719,7 @@
}
},
{
- "id": 23643,
+ "id": 23784,
"properties": {
"east": "tall",
"north": "low",
@@ -76547,7 +76730,7 @@
}
},
{
- "id": 23644,
+ "id": 23785,
"properties": {
"east": "tall",
"north": "low",
@@ -76558,7 +76741,7 @@
}
},
{
- "id": 23645,
+ "id": 23786,
"properties": {
"east": "tall",
"north": "low",
@@ -76569,7 +76752,7 @@
}
},
{
- "id": 23646,
+ "id": 23787,
"properties": {
"east": "tall",
"north": "low",
@@ -76580,7 +76763,7 @@
}
},
{
- "id": 23647,
+ "id": 23788,
"properties": {
"east": "tall",
"north": "low",
@@ -76591,7 +76774,7 @@
}
},
{
- "id": 23648,
+ "id": 23789,
"properties": {
"east": "tall",
"north": "low",
@@ -76602,7 +76785,7 @@
}
},
{
- "id": 23649,
+ "id": 23790,
"properties": {
"east": "tall",
"north": "tall",
@@ -76613,7 +76796,7 @@
}
},
{
- "id": 23650,
+ "id": 23791,
"properties": {
"east": "tall",
"north": "tall",
@@ -76624,7 +76807,7 @@
}
},
{
- "id": 23651,
+ "id": 23792,
"properties": {
"east": "tall",
"north": "tall",
@@ -76635,7 +76818,7 @@
}
},
{
- "id": 23652,
+ "id": 23793,
"properties": {
"east": "tall",
"north": "tall",
@@ -76646,7 +76829,7 @@
}
},
{
- "id": 23653,
+ "id": 23794,
"properties": {
"east": "tall",
"north": "tall",
@@ -76657,7 +76840,7 @@
}
},
{
- "id": 23654,
+ "id": 23795,
"properties": {
"east": "tall",
"north": "tall",
@@ -76668,7 +76851,7 @@
}
},
{
- "id": 23655,
+ "id": 23796,
"properties": {
"east": "tall",
"north": "tall",
@@ -76679,7 +76862,7 @@
}
},
{
- "id": 23656,
+ "id": 23797,
"properties": {
"east": "tall",
"north": "tall",
@@ -76690,7 +76873,7 @@
}
},
{
- "id": 23657,
+ "id": 23798,
"properties": {
"east": "tall",
"north": "tall",
@@ -76701,7 +76884,7 @@
}
},
{
- "id": 23658,
+ "id": 23799,
"properties": {
"east": "tall",
"north": "tall",
@@ -76712,7 +76895,7 @@
}
},
{
- "id": 23659,
+ "id": 23800,
"properties": {
"east": "tall",
"north": "tall",
@@ -76723,7 +76906,7 @@
}
},
{
- "id": 23660,
+ "id": 23801,
"properties": {
"east": "tall",
"north": "tall",
@@ -76734,7 +76917,7 @@
}
},
{
- "id": 23661,
+ "id": 23802,
"properties": {
"east": "tall",
"north": "tall",
@@ -76745,7 +76928,7 @@
}
},
{
- "id": 23662,
+ "id": 23803,
"properties": {
"east": "tall",
"north": "tall",
@@ -76756,7 +76939,7 @@
}
},
{
- "id": 23663,
+ "id": 23804,
"properties": {
"east": "tall",
"north": "tall",
@@ -76767,7 +76950,7 @@
}
},
{
- "id": 23664,
+ "id": 23805,
"properties": {
"east": "tall",
"north": "tall",
@@ -76778,7 +76961,7 @@
}
},
{
- "id": 23665,
+ "id": 23806,
"properties": {
"east": "tall",
"north": "tall",
@@ -76789,7 +76972,7 @@
}
},
{
- "id": 23666,
+ "id": 23807,
"properties": {
"east": "tall",
"north": "tall",
@@ -76800,7 +76983,7 @@
}
},
{
- "id": 23667,
+ "id": 23808,
"properties": {
"east": "tall",
"north": "tall",
@@ -76811,7 +76994,7 @@
}
},
{
- "id": 23668,
+ "id": 23809,
"properties": {
"east": "tall",
"north": "tall",
@@ -76822,7 +77005,7 @@
}
},
{
- "id": 23669,
+ "id": 23810,
"properties": {
"east": "tall",
"north": "tall",
@@ -76833,7 +77016,7 @@
}
},
{
- "id": 23670,
+ "id": 23811,
"properties": {
"east": "tall",
"north": "tall",
@@ -76844,7 +77027,7 @@
}
},
{
- "id": 23671,
+ "id": 23812,
"properties": {
"east": "tall",
"north": "tall",
@@ -76855,7 +77038,7 @@
}
},
{
- "id": 23672,
+ "id": 23813,
"properties": {
"east": "tall",
"north": "tall",
@@ -76866,7 +77049,7 @@
}
},
{
- "id": 23673,
+ "id": 23814,
"properties": {
"east": "tall",
"north": "tall",
@@ -76877,7 +77060,7 @@
}
},
{
- "id": 23674,
+ "id": 23815,
"properties": {
"east": "tall",
"north": "tall",
@@ -76888,7 +77071,7 @@
}
},
{
- "id": 23675,
+ "id": 23816,
"properties": {
"east": "tall",
"north": "tall",
@@ -76899,7 +77082,7 @@
}
},
{
- "id": 23676,
+ "id": 23817,
"properties": {
"east": "tall",
"north": "tall",
@@ -76910,7 +77093,7 @@
}
},
{
- "id": 23677,
+ "id": 23818,
"properties": {
"east": "tall",
"north": "tall",
@@ -76921,7 +77104,7 @@
}
},
{
- "id": 23678,
+ "id": 23819,
"properties": {
"east": "tall",
"north": "tall",
@@ -76932,7 +77115,7 @@
}
},
{
- "id": 23679,
+ "id": 23820,
"properties": {
"east": "tall",
"north": "tall",
@@ -76943,7 +77126,7 @@
}
},
{
- "id": 23680,
+ "id": 23821,
"properties": {
"east": "tall",
"north": "tall",
@@ -76954,7 +77137,7 @@
}
},
{
- "id": 23681,
+ "id": 23822,
"properties": {
"east": "tall",
"north": "tall",
@@ -76965,7 +77148,7 @@
}
},
{
- "id": 23682,
+ "id": 23823,
"properties": {
"east": "tall",
"north": "tall",
@@ -76976,7 +77159,7 @@
}
},
{
- "id": 23683,
+ "id": 23824,
"properties": {
"east": "tall",
"north": "tall",
@@ -76987,7 +77170,7 @@
}
},
{
- "id": 23684,
+ "id": 23825,
"properties": {
"east": "tall",
"north": "tall",
@@ -77003,7 +77186,7 @@
"states": [
{
"default": true,
- "id": 23274
+ "id": 23415
}
]
},
@@ -77260,21 +77443,21 @@
},
"states": [
{
- "id": 14013,
+ "id": 14154,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14014,
+ "id": 14155,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14015,
+ "id": 14156,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -77282,21 +77465,21 @@
},
{
"default": true,
- "id": 14016,
+ "id": 14157,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14017,
+ "id": 14158,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14018,
+ "id": 14159,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -77330,7 +77513,7 @@
},
"states": [
{
- "id": 13861,
+ "id": 14002,
"properties": {
"facing": "north",
"half": "top",
@@ -77339,7 +77522,7 @@
}
},
{
- "id": 13862,
+ "id": 14003,
"properties": {
"facing": "north",
"half": "top",
@@ -77348,7 +77531,7 @@
}
},
{
- "id": 13863,
+ "id": 14004,
"properties": {
"facing": "north",
"half": "top",
@@ -77357,7 +77540,7 @@
}
},
{
- "id": 13864,
+ "id": 14005,
"properties": {
"facing": "north",
"half": "top",
@@ -77366,7 +77549,7 @@
}
},
{
- "id": 13865,
+ "id": 14006,
"properties": {
"facing": "north",
"half": "top",
@@ -77375,7 +77558,7 @@
}
},
{
- "id": 13866,
+ "id": 14007,
"properties": {
"facing": "north",
"half": "top",
@@ -77384,7 +77567,7 @@
}
},
{
- "id": 13867,
+ "id": 14008,
"properties": {
"facing": "north",
"half": "top",
@@ -77393,7 +77576,7 @@
}
},
{
- "id": 13868,
+ "id": 14009,
"properties": {
"facing": "north",
"half": "top",
@@ -77402,7 +77585,7 @@
}
},
{
- "id": 13869,
+ "id": 14010,
"properties": {
"facing": "north",
"half": "top",
@@ -77411,7 +77594,7 @@
}
},
{
- "id": 13870,
+ "id": 14011,
"properties": {
"facing": "north",
"half": "top",
@@ -77420,7 +77603,7 @@
}
},
{
- "id": 13871,
+ "id": 14012,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77430,7 +77613,7 @@
},
{
"default": true,
- "id": 13872,
+ "id": 14013,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77439,7 +77622,7 @@
}
},
{
- "id": 13873,
+ "id": 14014,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77448,7 +77631,7 @@
}
},
{
- "id": 13874,
+ "id": 14015,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77457,7 +77640,7 @@
}
},
{
- "id": 13875,
+ "id": 14016,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77466,7 +77649,7 @@
}
},
{
- "id": 13876,
+ "id": 14017,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77475,7 +77658,7 @@
}
},
{
- "id": 13877,
+ "id": 14018,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77484,7 +77667,7 @@
}
},
{
- "id": 13878,
+ "id": 14019,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77493,7 +77676,7 @@
}
},
{
- "id": 13879,
+ "id": 14020,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77502,7 +77685,7 @@
}
},
{
- "id": 13880,
+ "id": 14021,
"properties": {
"facing": "north",
"half": "bottom",
@@ -77511,7 +77694,7 @@
}
},
{
- "id": 13881,
+ "id": 14022,
"properties": {
"facing": "south",
"half": "top",
@@ -77520,7 +77703,7 @@
}
},
{
- "id": 13882,
+ "id": 14023,
"properties": {
"facing": "south",
"half": "top",
@@ -77529,7 +77712,7 @@
}
},
{
- "id": 13883,
+ "id": 14024,
"properties": {
"facing": "south",
"half": "top",
@@ -77538,7 +77721,7 @@
}
},
{
- "id": 13884,
+ "id": 14025,
"properties": {
"facing": "south",
"half": "top",
@@ -77547,7 +77730,7 @@
}
},
{
- "id": 13885,
+ "id": 14026,
"properties": {
"facing": "south",
"half": "top",
@@ -77556,7 +77739,7 @@
}
},
{
- "id": 13886,
+ "id": 14027,
"properties": {
"facing": "south",
"half": "top",
@@ -77565,7 +77748,7 @@
}
},
{
- "id": 13887,
+ "id": 14028,
"properties": {
"facing": "south",
"half": "top",
@@ -77574,7 +77757,7 @@
}
},
{
- "id": 13888,
+ "id": 14029,
"properties": {
"facing": "south",
"half": "top",
@@ -77583,7 +77766,7 @@
}
},
{
- "id": 13889,
+ "id": 14030,
"properties": {
"facing": "south",
"half": "top",
@@ -77592,7 +77775,7 @@
}
},
{
- "id": 13890,
+ "id": 14031,
"properties": {
"facing": "south",
"half": "top",
@@ -77601,7 +77784,7 @@
}
},
{
- "id": 13891,
+ "id": 14032,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77610,7 +77793,7 @@
}
},
{
- "id": 13892,
+ "id": 14033,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77619,7 +77802,7 @@
}
},
{
- "id": 13893,
+ "id": 14034,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77628,7 +77811,7 @@
}
},
{
- "id": 13894,
+ "id": 14035,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77637,7 +77820,7 @@
}
},
{
- "id": 13895,
+ "id": 14036,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77646,7 +77829,7 @@
}
},
{
- "id": 13896,
+ "id": 14037,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77655,7 +77838,7 @@
}
},
{
- "id": 13897,
+ "id": 14038,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77664,7 +77847,7 @@
}
},
{
- "id": 13898,
+ "id": 14039,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77673,7 +77856,7 @@
}
},
{
- "id": 13899,
+ "id": 14040,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77682,7 +77865,7 @@
}
},
{
- "id": 13900,
+ "id": 14041,
"properties": {
"facing": "south",
"half": "bottom",
@@ -77691,7 +77874,7 @@
}
},
{
- "id": 13901,
+ "id": 14042,
"properties": {
"facing": "west",
"half": "top",
@@ -77700,7 +77883,7 @@
}
},
{
- "id": 13902,
+ "id": 14043,
"properties": {
"facing": "west",
"half": "top",
@@ -77709,7 +77892,7 @@
}
},
{
- "id": 13903,
+ "id": 14044,
"properties": {
"facing": "west",
"half": "top",
@@ -77718,7 +77901,7 @@
}
},
{
- "id": 13904,
+ "id": 14045,
"properties": {
"facing": "west",
"half": "top",
@@ -77727,7 +77910,7 @@
}
},
{
- "id": 13905,
+ "id": 14046,
"properties": {
"facing": "west",
"half": "top",
@@ -77736,7 +77919,7 @@
}
},
{
- "id": 13906,
+ "id": 14047,
"properties": {
"facing": "west",
"half": "top",
@@ -77745,7 +77928,7 @@
}
},
{
- "id": 13907,
+ "id": 14048,
"properties": {
"facing": "west",
"half": "top",
@@ -77754,7 +77937,7 @@
}
},
{
- "id": 13908,
+ "id": 14049,
"properties": {
"facing": "west",
"half": "top",
@@ -77763,7 +77946,7 @@
}
},
{
- "id": 13909,
+ "id": 14050,
"properties": {
"facing": "west",
"half": "top",
@@ -77772,7 +77955,7 @@
}
},
{
- "id": 13910,
+ "id": 14051,
"properties": {
"facing": "west",
"half": "top",
@@ -77781,7 +77964,7 @@
}
},
{
- "id": 13911,
+ "id": 14052,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77790,7 +77973,7 @@
}
},
{
- "id": 13912,
+ "id": 14053,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77799,7 +77982,7 @@
}
},
{
- "id": 13913,
+ "id": 14054,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77808,7 +77991,7 @@
}
},
{
- "id": 13914,
+ "id": 14055,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77817,7 +78000,7 @@
}
},
{
- "id": 13915,
+ "id": 14056,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77826,7 +78009,7 @@
}
},
{
- "id": 13916,
+ "id": 14057,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77835,7 +78018,7 @@
}
},
{
- "id": 13917,
+ "id": 14058,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77844,7 +78027,7 @@
}
},
{
- "id": 13918,
+ "id": 14059,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77853,7 +78036,7 @@
}
},
{
- "id": 13919,
+ "id": 14060,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77862,7 +78045,7 @@
}
},
{
- "id": 13920,
+ "id": 14061,
"properties": {
"facing": "west",
"half": "bottom",
@@ -77871,7 +78054,7 @@
}
},
{
- "id": 13921,
+ "id": 14062,
"properties": {
"facing": "east",
"half": "top",
@@ -77880,7 +78063,7 @@
}
},
{
- "id": 13922,
+ "id": 14063,
"properties": {
"facing": "east",
"half": "top",
@@ -77889,7 +78072,7 @@
}
},
{
- "id": 13923,
+ "id": 14064,
"properties": {
"facing": "east",
"half": "top",
@@ -77898,7 +78081,7 @@
}
},
{
- "id": 13924,
+ "id": 14065,
"properties": {
"facing": "east",
"half": "top",
@@ -77907,7 +78090,7 @@
}
},
{
- "id": 13925,
+ "id": 14066,
"properties": {
"facing": "east",
"half": "top",
@@ -77916,7 +78099,7 @@
}
},
{
- "id": 13926,
+ "id": 14067,
"properties": {
"facing": "east",
"half": "top",
@@ -77925,7 +78108,7 @@
}
},
{
- "id": 13927,
+ "id": 14068,
"properties": {
"facing": "east",
"half": "top",
@@ -77934,7 +78117,7 @@
}
},
{
- "id": 13928,
+ "id": 14069,
"properties": {
"facing": "east",
"half": "top",
@@ -77943,7 +78126,7 @@
}
},
{
- "id": 13929,
+ "id": 14070,
"properties": {
"facing": "east",
"half": "top",
@@ -77952,7 +78135,7 @@
}
},
{
- "id": 13930,
+ "id": 14071,
"properties": {
"facing": "east",
"half": "top",
@@ -77961,7 +78144,7 @@
}
},
{
- "id": 13931,
+ "id": 14072,
"properties": {
"facing": "east",
"half": "bottom",
@@ -77970,7 +78153,7 @@
}
},
{
- "id": 13932,
+ "id": 14073,
"properties": {
"facing": "east",
"half": "bottom",
@@ -77979,7 +78162,7 @@
}
},
{
- "id": 13933,
+ "id": 14074,
"properties": {
"facing": "east",
"half": "bottom",
@@ -77988,7 +78171,7 @@
}
},
{
- "id": 13934,
+ "id": 14075,
"properties": {
"facing": "east",
"half": "bottom",
@@ -77997,7 +78180,7 @@
}
},
{
- "id": 13935,
+ "id": 14076,
"properties": {
"facing": "east",
"half": "bottom",
@@ -78006,7 +78189,7 @@
}
},
{
- "id": 13936,
+ "id": 14077,
"properties": {
"facing": "east",
"half": "bottom",
@@ -78015,7 +78198,7 @@
}
},
{
- "id": 13937,
+ "id": 14078,
"properties": {
"facing": "east",
"half": "bottom",
@@ -78024,7 +78207,7 @@
}
},
{
- "id": 13938,
+ "id": 14079,
"properties": {
"facing": "east",
"half": "bottom",
@@ -78033,7 +78216,7 @@
}
},
{
- "id": 13939,
+ "id": 14080,
"properties": {
"facing": "east",
"half": "bottom",
@@ -78042,7 +78225,7 @@
}
},
{
- "id": 13940,
+ "id": 14081,
"properties": {
"facing": "east",
"half": "bottom",
@@ -78085,7 +78268,7 @@
},
"states": [
{
- "id": 17907,
+ "id": 18048,
"properties": {
"east": "none",
"north": "none",
@@ -78096,7 +78279,7 @@
}
},
{
- "id": 17908,
+ "id": 18049,
"properties": {
"east": "none",
"north": "none",
@@ -78107,7 +78290,7 @@
}
},
{
- "id": 17909,
+ "id": 18050,
"properties": {
"east": "none",
"north": "none",
@@ -78119,2339 +78302,2339 @@
},
{
"default": true,
- "id": 17910,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17911,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17912,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17913,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17914,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17915,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17916,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17917,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17918,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17919,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17920,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17921,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17922,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17923,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17924,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17925,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17926,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17927,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17928,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17929,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17930,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17931,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17932,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17933,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17934,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17935,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17936,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17937,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17938,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17939,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17940,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17941,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17942,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17943,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17944,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17945,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17946,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17947,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17948,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17949,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17950,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17951,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17952,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17953,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17954,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17955,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17956,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17957,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17958,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17959,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17960,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17961,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17962,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17963,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17964,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17965,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17966,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17967,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17968,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17969,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17970,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17971,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17972,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17973,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17974,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17975,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17976,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17977,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17978,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17979,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17980,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17981,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17982,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17983,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17984,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17985,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17986,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17987,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17988,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17989,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17990,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17991,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17992,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17993,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17994,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17995,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17996,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17997,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17998,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17999,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18000,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18001,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18002,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18003,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18004,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18005,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18006,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18007,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18008,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18009,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18010,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18011,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18012,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18013,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18014,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18015,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18016,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18017,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18018,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18019,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18020,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18021,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18022,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18023,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18024,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18025,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18026,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18027,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18028,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18029,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18030,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18031,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18032,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18033,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18034,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18035,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18036,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18037,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18038,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18039,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18040,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18041,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18042,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18043,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18044,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 18045,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 18046,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 18047,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 18048,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 18049,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 18050,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 18051,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18052,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18053,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18054,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18055,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18056,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18057,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18058,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18059,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18060,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18061,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18062,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18063,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18064,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18065,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18066,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18067,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18068,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18069,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18070,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18071,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18072,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18073,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18074,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18075,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18076,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18077,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18078,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18079,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18080,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18081,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18082,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18083,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18084,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18085,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18086,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18087,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18088,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18089,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18090,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18091,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18092,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18093,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18094,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18095,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18096,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18097,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18098,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18099,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18100,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18101,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18102,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18103,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18104,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18105,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18106,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18107,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18108,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18109,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18110,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18111,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18112,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18113,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18114,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18115,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18116,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 18117,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 18118,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 18119,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 18120,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 18121,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 18122,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18123,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18124,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18125,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18126,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18127,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18128,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18129,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18130,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18131,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18132,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18133,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18134,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18135,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18136,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18137,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18138,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18139,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18140,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18141,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18142,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18143,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18144,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18145,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18146,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18147,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18148,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18149,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18150,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18151,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18152,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18153,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18154,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18155,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18156,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18157,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18158,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18159,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18160,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18161,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18162,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18163,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18164,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18165,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18166,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18167,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18168,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18169,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18170,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18171,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18172,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18173,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18174,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18175,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18176,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18177,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18178,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18179,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18180,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18181,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18182,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18183,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18184,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18185,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18186,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18187,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18188,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18189,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18190,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18191,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18192,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18193,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18194,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18195,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18196,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18197,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18198,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18199,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18200,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18201,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18202,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18203,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18204,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18205,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18206,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18207,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18208,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18209,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18210,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18211,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18212,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18213,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18214,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18215,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18216,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18217,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18218,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18219,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18220,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18221,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18222,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18223,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18224,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18225,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18226,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18227,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18228,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18229,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18230,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18231,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18232,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18233,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18234,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18235,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18236,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18237,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18238,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18239,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18240,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18241,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18242,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18243,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18244,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18245,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18246,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18247,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18248,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18249,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18250,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18251,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18252,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18253,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18254,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18255,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18256,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18257,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18258,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18259,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18260,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 18261,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 18262,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 18263,
"properties": {
"east": "low",
"north": "tall",
@@ -80462,7 +80645,7 @@
}
},
{
- "id": 18123,
+ "id": 18264,
"properties": {
"east": "tall",
"north": "none",
@@ -80473,7 +80656,7 @@
}
},
{
- "id": 18124,
+ "id": 18265,
"properties": {
"east": "tall",
"north": "none",
@@ -80484,7 +80667,7 @@
}
},
{
- "id": 18125,
+ "id": 18266,
"properties": {
"east": "tall",
"north": "none",
@@ -80495,7 +80678,7 @@
}
},
{
- "id": 18126,
+ "id": 18267,
"properties": {
"east": "tall",
"north": "none",
@@ -80506,7 +80689,7 @@
}
},
{
- "id": 18127,
+ "id": 18268,
"properties": {
"east": "tall",
"north": "none",
@@ -80517,7 +80700,7 @@
}
},
{
- "id": 18128,
+ "id": 18269,
"properties": {
"east": "tall",
"north": "none",
@@ -80528,7 +80711,7 @@
}
},
{
- "id": 18129,
+ "id": 18270,
"properties": {
"east": "tall",
"north": "none",
@@ -80539,7 +80722,7 @@
}
},
{
- "id": 18130,
+ "id": 18271,
"properties": {
"east": "tall",
"north": "none",
@@ -80550,7 +80733,7 @@
}
},
{
- "id": 18131,
+ "id": 18272,
"properties": {
"east": "tall",
"north": "none",
@@ -80561,7 +80744,7 @@
}
},
{
- "id": 18132,
+ "id": 18273,
"properties": {
"east": "tall",
"north": "none",
@@ -80572,7 +80755,7 @@
}
},
{
- "id": 18133,
+ "id": 18274,
"properties": {
"east": "tall",
"north": "none",
@@ -80583,7 +80766,7 @@
}
},
{
- "id": 18134,
+ "id": 18275,
"properties": {
"east": "tall",
"north": "none",
@@ -80594,7 +80777,7 @@
}
},
{
- "id": 18135,
+ "id": 18276,
"properties": {
"east": "tall",
"north": "none",
@@ -80605,7 +80788,7 @@
}
},
{
- "id": 18136,
+ "id": 18277,
"properties": {
"east": "tall",
"north": "none",
@@ -80616,7 +80799,7 @@
}
},
{
- "id": 18137,
+ "id": 18278,
"properties": {
"east": "tall",
"north": "none",
@@ -80627,7 +80810,7 @@
}
},
{
- "id": 18138,
+ "id": 18279,
"properties": {
"east": "tall",
"north": "none",
@@ -80638,7 +80821,7 @@
}
},
{
- "id": 18139,
+ "id": 18280,
"properties": {
"east": "tall",
"north": "none",
@@ -80649,7 +80832,7 @@
}
},
{
- "id": 18140,
+ "id": 18281,
"properties": {
"east": "tall",
"north": "none",
@@ -80660,7 +80843,7 @@
}
},
{
- "id": 18141,
+ "id": 18282,
"properties": {
"east": "tall",
"north": "none",
@@ -80671,7 +80854,7 @@
}
},
{
- "id": 18142,
+ "id": 18283,
"properties": {
"east": "tall",
"north": "none",
@@ -80682,7 +80865,7 @@
}
},
{
- "id": 18143,
+ "id": 18284,
"properties": {
"east": "tall",
"north": "none",
@@ -80693,7 +80876,7 @@
}
},
{
- "id": 18144,
+ "id": 18285,
"properties": {
"east": "tall",
"north": "none",
@@ -80704,7 +80887,7 @@
}
},
{
- "id": 18145,
+ "id": 18286,
"properties": {
"east": "tall",
"north": "none",
@@ -80715,7 +80898,7 @@
}
},
{
- "id": 18146,
+ "id": 18287,
"properties": {
"east": "tall",
"north": "none",
@@ -80726,7 +80909,7 @@
}
},
{
- "id": 18147,
+ "id": 18288,
"properties": {
"east": "tall",
"north": "none",
@@ -80737,7 +80920,7 @@
}
},
{
- "id": 18148,
+ "id": 18289,
"properties": {
"east": "tall",
"north": "none",
@@ -80748,7 +80931,7 @@
}
},
{
- "id": 18149,
+ "id": 18290,
"properties": {
"east": "tall",
"north": "none",
@@ -80759,7 +80942,7 @@
}
},
{
- "id": 18150,
+ "id": 18291,
"properties": {
"east": "tall",
"north": "none",
@@ -80770,7 +80953,7 @@
}
},
{
- "id": 18151,
+ "id": 18292,
"properties": {
"east": "tall",
"north": "none",
@@ -80781,7 +80964,7 @@
}
},
{
- "id": 18152,
+ "id": 18293,
"properties": {
"east": "tall",
"north": "none",
@@ -80792,7 +80975,7 @@
}
},
{
- "id": 18153,
+ "id": 18294,
"properties": {
"east": "tall",
"north": "none",
@@ -80803,7 +80986,7 @@
}
},
{
- "id": 18154,
+ "id": 18295,
"properties": {
"east": "tall",
"north": "none",
@@ -80814,7 +80997,7 @@
}
},
{
- "id": 18155,
+ "id": 18296,
"properties": {
"east": "tall",
"north": "none",
@@ -80825,7 +81008,7 @@
}
},
{
- "id": 18156,
+ "id": 18297,
"properties": {
"east": "tall",
"north": "none",
@@ -80836,7 +81019,7 @@
}
},
{
- "id": 18157,
+ "id": 18298,
"properties": {
"east": "tall",
"north": "none",
@@ -80847,7 +81030,7 @@
}
},
{
- "id": 18158,
+ "id": 18299,
"properties": {
"east": "tall",
"north": "none",
@@ -80858,7 +81041,7 @@
}
},
{
- "id": 18159,
+ "id": 18300,
"properties": {
"east": "tall",
"north": "low",
@@ -80869,7 +81052,7 @@
}
},
{
- "id": 18160,
+ "id": 18301,
"properties": {
"east": "tall",
"north": "low",
@@ -80880,7 +81063,7 @@
}
},
{
- "id": 18161,
+ "id": 18302,
"properties": {
"east": "tall",
"north": "low",
@@ -80891,7 +81074,7 @@
}
},
{
- "id": 18162,
+ "id": 18303,
"properties": {
"east": "tall",
"north": "low",
@@ -80902,7 +81085,7 @@
}
},
{
- "id": 18163,
+ "id": 18304,
"properties": {
"east": "tall",
"north": "low",
@@ -80913,7 +81096,7 @@
}
},
{
- "id": 18164,
+ "id": 18305,
"properties": {
"east": "tall",
"north": "low",
@@ -80924,7 +81107,7 @@
}
},
{
- "id": 18165,
+ "id": 18306,
"properties": {
"east": "tall",
"north": "low",
@@ -80935,7 +81118,7 @@
}
},
{
- "id": 18166,
+ "id": 18307,
"properties": {
"east": "tall",
"north": "low",
@@ -80946,7 +81129,7 @@
}
},
{
- "id": 18167,
+ "id": 18308,
"properties": {
"east": "tall",
"north": "low",
@@ -80957,7 +81140,7 @@
}
},
{
- "id": 18168,
+ "id": 18309,
"properties": {
"east": "tall",
"north": "low",
@@ -80968,7 +81151,7 @@
}
},
{
- "id": 18169,
+ "id": 18310,
"properties": {
"east": "tall",
"north": "low",
@@ -80979,7 +81162,7 @@
}
},
{
- "id": 18170,
+ "id": 18311,
"properties": {
"east": "tall",
"north": "low",
@@ -80990,7 +81173,7 @@
}
},
{
- "id": 18171,
+ "id": 18312,
"properties": {
"east": "tall",
"north": "low",
@@ -81001,7 +81184,7 @@
}
},
{
- "id": 18172,
+ "id": 18313,
"properties": {
"east": "tall",
"north": "low",
@@ -81012,7 +81195,7 @@
}
},
{
- "id": 18173,
+ "id": 18314,
"properties": {
"east": "tall",
"north": "low",
@@ -81023,7 +81206,7 @@
}
},
{
- "id": 18174,
+ "id": 18315,
"properties": {
"east": "tall",
"north": "low",
@@ -81034,7 +81217,7 @@
}
},
{
- "id": 18175,
+ "id": 18316,
"properties": {
"east": "tall",
"north": "low",
@@ -81045,7 +81228,7 @@
}
},
{
- "id": 18176,
+ "id": 18317,
"properties": {
"east": "tall",
"north": "low",
@@ -81056,7 +81239,7 @@
}
},
{
- "id": 18177,
+ "id": 18318,
"properties": {
"east": "tall",
"north": "low",
@@ -81067,7 +81250,7 @@
}
},
{
- "id": 18178,
+ "id": 18319,
"properties": {
"east": "tall",
"north": "low",
@@ -81078,7 +81261,7 @@
}
},
{
- "id": 18179,
+ "id": 18320,
"properties": {
"east": "tall",
"north": "low",
@@ -81089,7 +81272,7 @@
}
},
{
- "id": 18180,
+ "id": 18321,
"properties": {
"east": "tall",
"north": "low",
@@ -81100,7 +81283,7 @@
}
},
{
- "id": 18181,
+ "id": 18322,
"properties": {
"east": "tall",
"north": "low",
@@ -81111,7 +81294,7 @@
}
},
{
- "id": 18182,
+ "id": 18323,
"properties": {
"east": "tall",
"north": "low",
@@ -81122,7 +81305,7 @@
}
},
{
- "id": 18183,
+ "id": 18324,
"properties": {
"east": "tall",
"north": "low",
@@ -81133,7 +81316,7 @@
}
},
{
- "id": 18184,
+ "id": 18325,
"properties": {
"east": "tall",
"north": "low",
@@ -81144,7 +81327,7 @@
}
},
{
- "id": 18185,
+ "id": 18326,
"properties": {
"east": "tall",
"north": "low",
@@ -81155,7 +81338,7 @@
}
},
{
- "id": 18186,
+ "id": 18327,
"properties": {
"east": "tall",
"north": "low",
@@ -81166,7 +81349,7 @@
}
},
{
- "id": 18187,
+ "id": 18328,
"properties": {
"east": "tall",
"north": "low",
@@ -81177,7 +81360,7 @@
}
},
{
- "id": 18188,
+ "id": 18329,
"properties": {
"east": "tall",
"north": "low",
@@ -81188,7 +81371,7 @@
}
},
{
- "id": 18189,
+ "id": 18330,
"properties": {
"east": "tall",
"north": "low",
@@ -81199,7 +81382,7 @@
}
},
{
- "id": 18190,
+ "id": 18331,
"properties": {
"east": "tall",
"north": "low",
@@ -81210,7 +81393,7 @@
}
},
{
- "id": 18191,
+ "id": 18332,
"properties": {
"east": "tall",
"north": "low",
@@ -81221,7 +81404,7 @@
}
},
{
- "id": 18192,
+ "id": 18333,
"properties": {
"east": "tall",
"north": "low",
@@ -81232,7 +81415,7 @@
}
},
{
- "id": 18193,
+ "id": 18334,
"properties": {
"east": "tall",
"north": "low",
@@ -81243,7 +81426,7 @@
}
},
{
- "id": 18194,
+ "id": 18335,
"properties": {
"east": "tall",
"north": "low",
@@ -81254,7 +81437,7 @@
}
},
{
- "id": 18195,
+ "id": 18336,
"properties": {
"east": "tall",
"north": "tall",
@@ -81265,7 +81448,7 @@
}
},
{
- "id": 18196,
+ "id": 18337,
"properties": {
"east": "tall",
"north": "tall",
@@ -81276,7 +81459,7 @@
}
},
{
- "id": 18197,
+ "id": 18338,
"properties": {
"east": "tall",
"north": "tall",
@@ -81287,7 +81470,7 @@
}
},
{
- "id": 18198,
+ "id": 18339,
"properties": {
"east": "tall",
"north": "tall",
@@ -81298,7 +81481,7 @@
}
},
{
- "id": 18199,
+ "id": 18340,
"properties": {
"east": "tall",
"north": "tall",
@@ -81309,7 +81492,7 @@
}
},
{
- "id": 18200,
+ "id": 18341,
"properties": {
"east": "tall",
"north": "tall",
@@ -81320,7 +81503,7 @@
}
},
{
- "id": 18201,
+ "id": 18342,
"properties": {
"east": "tall",
"north": "tall",
@@ -81331,7 +81514,7 @@
}
},
{
- "id": 18202,
+ "id": 18343,
"properties": {
"east": "tall",
"north": "tall",
@@ -81342,7 +81525,7 @@
}
},
{
- "id": 18203,
+ "id": 18344,
"properties": {
"east": "tall",
"north": "tall",
@@ -81353,7 +81536,7 @@
}
},
{
- "id": 18204,
+ "id": 18345,
"properties": {
"east": "tall",
"north": "tall",
@@ -81364,7 +81547,7 @@
}
},
{
- "id": 18205,
+ "id": 18346,
"properties": {
"east": "tall",
"north": "tall",
@@ -81375,7 +81558,7 @@
}
},
{
- "id": 18206,
+ "id": 18347,
"properties": {
"east": "tall",
"north": "tall",
@@ -81386,7 +81569,7 @@
}
},
{
- "id": 18207,
+ "id": 18348,
"properties": {
"east": "tall",
"north": "tall",
@@ -81397,7 +81580,7 @@
}
},
{
- "id": 18208,
+ "id": 18349,
"properties": {
"east": "tall",
"north": "tall",
@@ -81408,7 +81591,7 @@
}
},
{
- "id": 18209,
+ "id": 18350,
"properties": {
"east": "tall",
"north": "tall",
@@ -81419,7 +81602,7 @@
}
},
{
- "id": 18210,
+ "id": 18351,
"properties": {
"east": "tall",
"north": "tall",
@@ -81430,7 +81613,7 @@
}
},
{
- "id": 18211,
+ "id": 18352,
"properties": {
"east": "tall",
"north": "tall",
@@ -81441,7 +81624,7 @@
}
},
{
- "id": 18212,
+ "id": 18353,
"properties": {
"east": "tall",
"north": "tall",
@@ -81452,7 +81635,7 @@
}
},
{
- "id": 18213,
+ "id": 18354,
"properties": {
"east": "tall",
"north": "tall",
@@ -81463,7 +81646,7 @@
}
},
{
- "id": 18214,
+ "id": 18355,
"properties": {
"east": "tall",
"north": "tall",
@@ -81474,7 +81657,7 @@
}
},
{
- "id": 18215,
+ "id": 18356,
"properties": {
"east": "tall",
"north": "tall",
@@ -81485,7 +81668,7 @@
}
},
{
- "id": 18216,
+ "id": 18357,
"properties": {
"east": "tall",
"north": "tall",
@@ -81496,7 +81679,7 @@
}
},
{
- "id": 18217,
+ "id": 18358,
"properties": {
"east": "tall",
"north": "tall",
@@ -81507,7 +81690,7 @@
}
},
{
- "id": 18218,
+ "id": 18359,
"properties": {
"east": "tall",
"north": "tall",
@@ -81518,7 +81701,7 @@
}
},
{
- "id": 18219,
+ "id": 18360,
"properties": {
"east": "tall",
"north": "tall",
@@ -81529,7 +81712,7 @@
}
},
{
- "id": 18220,
+ "id": 18361,
"properties": {
"east": "tall",
"north": "tall",
@@ -81540,7 +81723,7 @@
}
},
{
- "id": 18221,
+ "id": 18362,
"properties": {
"east": "tall",
"north": "tall",
@@ -81551,7 +81734,7 @@
}
},
{
- "id": 18222,
+ "id": 18363,
"properties": {
"east": "tall",
"north": "tall",
@@ -81562,7 +81745,7 @@
}
},
{
- "id": 18223,
+ "id": 18364,
"properties": {
"east": "tall",
"north": "tall",
@@ -81573,7 +81756,7 @@
}
},
{
- "id": 18224,
+ "id": 18365,
"properties": {
"east": "tall",
"north": "tall",
@@ -81584,7 +81767,7 @@
}
},
{
- "id": 18225,
+ "id": 18366,
"properties": {
"east": "tall",
"north": "tall",
@@ -81595,7 +81778,7 @@
}
},
{
- "id": 18226,
+ "id": 18367,
"properties": {
"east": "tall",
"north": "tall",
@@ -81606,7 +81789,7 @@
}
},
{
- "id": 18227,
+ "id": 18368,
"properties": {
"east": "tall",
"north": "tall",
@@ -81617,7 +81800,7 @@
}
},
{
- "id": 18228,
+ "id": 18369,
"properties": {
"east": "tall",
"north": "tall",
@@ -81628,7 +81811,7 @@
}
},
{
- "id": 18229,
+ "id": 18370,
"properties": {
"east": "tall",
"north": "tall",
@@ -81639,7 +81822,7 @@
}
},
{
- "id": 18230,
+ "id": 18371,
"properties": {
"east": "tall",
"north": "tall",
@@ -81663,7 +81846,7 @@
"states": [
{
"default": true,
- "id": 12372
+ "id": 12513
}
]
},
@@ -81780,6 +81963,10 @@
},
"minecraft:dragon_head": {
"properties": {
+ "powered": [
+ "true",
+ "false"
+ ],
"rotation": [
"0",
"1",
@@ -81801,99 +81988,227 @@
},
"states": [
{
- "default": true,
- "id": 8927,
+ "id": 9027,
"properties": {
+ "powered": "true",
"rotation": "0"
}
},
{
- "id": 8928,
+ "id": 9028,
"properties": {
+ "powered": "true",
"rotation": "1"
}
},
{
- "id": 8929,
+ "id": 9029,
"properties": {
+ "powered": "true",
"rotation": "2"
}
},
{
- "id": 8930,
+ "id": 9030,
"properties": {
+ "powered": "true",
"rotation": "3"
}
},
{
- "id": 8931,
+ "id": 9031,
"properties": {
+ "powered": "true",
"rotation": "4"
}
},
{
- "id": 8932,
+ "id": 9032,
"properties": {
+ "powered": "true",
"rotation": "5"
}
},
{
- "id": 8933,
+ "id": 9033,
"properties": {
+ "powered": "true",
"rotation": "6"
}
},
{
- "id": 8934,
+ "id": 9034,
"properties": {
+ "powered": "true",
"rotation": "7"
}
},
{
- "id": 8935,
+ "id": 9035,
"properties": {
+ "powered": "true",
"rotation": "8"
}
},
{
- "id": 8936,
+ "id": 9036,
"properties": {
+ "powered": "true",
"rotation": "9"
}
},
{
- "id": 8937,
+ "id": 9037,
"properties": {
+ "powered": "true",
"rotation": "10"
}
},
{
- "id": 8938,
+ "id": 9038,
"properties": {
+ "powered": "true",
"rotation": "11"
}
},
{
- "id": 8939,
+ "id": 9039,
"properties": {
+ "powered": "true",
"rotation": "12"
}
},
{
- "id": 8940,
+ "id": 9040,
"properties": {
+ "powered": "true",
"rotation": "13"
}
},
{
- "id": 8941,
+ "id": 9041,
"properties": {
+ "powered": "true",
"rotation": "14"
}
},
{
- "id": 8942,
+ "id": 9042,
"properties": {
+ "powered": "true",
+ "rotation": "15"
+ }
+ },
+ {
+ "default": true,
+ "id": 9043,
+ "properties": {
+ "powered": "false",
+ "rotation": "0"
+ }
+ },
+ {
+ "id": 9044,
+ "properties": {
+ "powered": "false",
+ "rotation": "1"
+ }
+ },
+ {
+ "id": 9045,
+ "properties": {
+ "powered": "false",
+ "rotation": "2"
+ }
+ },
+ {
+ "id": 9046,
+ "properties": {
+ "powered": "false",
+ "rotation": "3"
+ }
+ },
+ {
+ "id": 9047,
+ "properties": {
+ "powered": "false",
+ "rotation": "4"
+ }
+ },
+ {
+ "id": 9048,
+ "properties": {
+ "powered": "false",
+ "rotation": "5"
+ }
+ },
+ {
+ "id": 9049,
+ "properties": {
+ "powered": "false",
+ "rotation": "6"
+ }
+ },
+ {
+ "id": 9050,
+ "properties": {
+ "powered": "false",
+ "rotation": "7"
+ }
+ },
+ {
+ "id": 9051,
+ "properties": {
+ "powered": "false",
+ "rotation": "8"
+ }
+ },
+ {
+ "id": 9052,
+ "properties": {
+ "powered": "false",
+ "rotation": "9"
+ }
+ },
+ {
+ "id": 9053,
+ "properties": {
+ "powered": "false",
+ "rotation": "10"
+ }
+ },
+ {
+ "id": 9054,
+ "properties": {
+ "powered": "false",
+ "rotation": "11"
+ }
+ },
+ {
+ "id": 9055,
+ "properties": {
+ "powered": "false",
+ "rotation": "12"
+ }
+ },
+ {
+ "id": 9056,
+ "properties": {
+ "powered": "false",
+ "rotation": "13"
+ }
+ },
+ {
+ "id": 9057,
+ "properties": {
+ "powered": "false",
+ "rotation": "14"
+ }
+ },
+ {
+ "id": 9058,
+ "properties": {
+ "powered": "false",
"rotation": "15"
}
}
@@ -81906,32 +82221,68 @@
"south",
"west",
"east"
+ ],
+ "powered": [
+ "true",
+ "false"
]
},
"states": [
+ {
+ "id": 9059,
+ "properties": {
+ "facing": "north",
+ "powered": "true"
+ }
+ },
{
"default": true,
- "id": 8943,
+ "id": 9060,
"properties": {
- "facing": "north"
+ "facing": "north",
+ "powered": "false"
}
},
{
- "id": 8944,
+ "id": 9061,
"properties": {
- "facing": "south"
+ "facing": "south",
+ "powered": "true"
}
},
{
- "id": 8945,
+ "id": 9062,
"properties": {
- "facing": "west"
+ "facing": "south",
+ "powered": "false"
}
},
{
- "id": 8946,
+ "id": 9063,
"properties": {
- "facing": "east"
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9064,
+ "properties": {
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9065,
+ "properties": {
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9066,
+ "properties": {
+ "facing": "east",
+ "powered": "false"
}
}
]
@@ -81940,7 +82291,7 @@
"states": [
{
"default": true,
- "id": 12646
+ "id": 12787
}
]
},
@@ -81948,7 +82299,7 @@
"states": [
{
"default": true,
- "id": 22313
+ "id": 22454
}
]
},
@@ -81969,7 +82320,7 @@
},
"states": [
{
- "id": 9204,
+ "id": 9344,
"properties": {
"facing": "north",
"triggered": "true"
@@ -81977,77 +82328,77 @@
},
{
"default": true,
- "id": 9205,
+ "id": 9345,
"properties": {
"facing": "north",
"triggered": "false"
}
},
{
- "id": 9206,
+ "id": 9346,
"properties": {
"facing": "east",
"triggered": "true"
}
},
{
- "id": 9207,
+ "id": 9347,
"properties": {
"facing": "east",
"triggered": "false"
}
},
{
- "id": 9208,
+ "id": 9348,
"properties": {
"facing": "south",
"triggered": "true"
}
},
{
- "id": 9209,
+ "id": 9349,
"properties": {
"facing": "south",
"triggered": "false"
}
},
{
- "id": 9210,
+ "id": 9350,
"properties": {
"facing": "west",
"triggered": "true"
}
},
{
- "id": 9211,
+ "id": 9351,
"properties": {
"facing": "west",
"triggered": "false"
}
},
{
- "id": 9212,
+ "id": 9352,
"properties": {
"facing": "up",
"triggered": "true"
}
},
{
- "id": 9213,
+ "id": 9353,
"properties": {
"facing": "up",
"triggered": "false"
}
},
{
- "id": 9214,
+ "id": 9354,
"properties": {
"facing": "down",
"triggered": "true"
}
},
{
- "id": 9215,
+ "id": 9355,
"properties": {
"facing": "down",
"triggered": "false"
@@ -82083,7 +82434,7 @@
"states": [
{
"default": true,
- "id": 12373
+ "id": 12514
}
]
},
@@ -82181,38 +82532,38 @@
},
"states": [
{
- "id": 12193,
+ "id": 12334,
"properties": {
"facing": "north"
}
},
{
- "id": 12194,
+ "id": 12335,
"properties": {
"facing": "east"
}
},
{
- "id": 12195,
+ "id": 12336,
"properties": {
"facing": "south"
}
},
{
- "id": 12196,
+ "id": 12337,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12197,
+ "id": 12338,
"properties": {
"facing": "up"
}
},
{
- "id": 12198,
+ "id": 12339,
"properties": {
"facing": "down"
}
@@ -82241,21 +82592,21 @@
},
"states": [
{
- "id": 13971,
+ "id": 14112,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13972,
+ "id": 14113,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13973,
+ "id": 14114,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -82263,21 +82614,21 @@
},
{
"default": true,
- "id": 13974,
+ "id": 14115,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13975,
+ "id": 14116,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13976,
+ "id": 14117,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -82311,7 +82662,7 @@
},
"states": [
{
- "id": 13221,
+ "id": 13362,
"properties": {
"facing": "north",
"half": "top",
@@ -82320,7 +82671,7 @@
}
},
{
- "id": 13222,
+ "id": 13363,
"properties": {
"facing": "north",
"half": "top",
@@ -82329,7 +82680,7 @@
}
},
{
- "id": 13223,
+ "id": 13364,
"properties": {
"facing": "north",
"half": "top",
@@ -82338,7 +82689,7 @@
}
},
{
- "id": 13224,
+ "id": 13365,
"properties": {
"facing": "north",
"half": "top",
@@ -82347,7 +82698,7 @@
}
},
{
- "id": 13225,
+ "id": 13366,
"properties": {
"facing": "north",
"half": "top",
@@ -82356,7 +82707,7 @@
}
},
{
- "id": 13226,
+ "id": 13367,
"properties": {
"facing": "north",
"half": "top",
@@ -82365,7 +82716,7 @@
}
},
{
- "id": 13227,
+ "id": 13368,
"properties": {
"facing": "north",
"half": "top",
@@ -82374,7 +82725,7 @@
}
},
{
- "id": 13228,
+ "id": 13369,
"properties": {
"facing": "north",
"half": "top",
@@ -82383,7 +82734,7 @@
}
},
{
- "id": 13229,
+ "id": 13370,
"properties": {
"facing": "north",
"half": "top",
@@ -82392,7 +82743,7 @@
}
},
{
- "id": 13230,
+ "id": 13371,
"properties": {
"facing": "north",
"half": "top",
@@ -82401,7 +82752,7 @@
}
},
{
- "id": 13231,
+ "id": 13372,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82411,7 +82762,7 @@
},
{
"default": true,
- "id": 13232,
+ "id": 13373,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82420,7 +82771,7 @@
}
},
{
- "id": 13233,
+ "id": 13374,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82429,7 +82780,7 @@
}
},
{
- "id": 13234,
+ "id": 13375,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82438,7 +82789,7 @@
}
},
{
- "id": 13235,
+ "id": 13376,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82447,7 +82798,7 @@
}
},
{
- "id": 13236,
+ "id": 13377,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82456,7 +82807,7 @@
}
},
{
- "id": 13237,
+ "id": 13378,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82465,7 +82816,7 @@
}
},
{
- "id": 13238,
+ "id": 13379,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82474,7 +82825,7 @@
}
},
{
- "id": 13239,
+ "id": 13380,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82483,7 +82834,7 @@
}
},
{
- "id": 13240,
+ "id": 13381,
"properties": {
"facing": "north",
"half": "bottom",
@@ -82492,7 +82843,7 @@
}
},
{
- "id": 13241,
+ "id": 13382,
"properties": {
"facing": "south",
"half": "top",
@@ -82501,7 +82852,7 @@
}
},
{
- "id": 13242,
+ "id": 13383,
"properties": {
"facing": "south",
"half": "top",
@@ -82510,7 +82861,7 @@
}
},
{
- "id": 13243,
+ "id": 13384,
"properties": {
"facing": "south",
"half": "top",
@@ -82519,7 +82870,7 @@
}
},
{
- "id": 13244,
+ "id": 13385,
"properties": {
"facing": "south",
"half": "top",
@@ -82528,7 +82879,7 @@
}
},
{
- "id": 13245,
+ "id": 13386,
"properties": {
"facing": "south",
"half": "top",
@@ -82537,7 +82888,7 @@
}
},
{
- "id": 13246,
+ "id": 13387,
"properties": {
"facing": "south",
"half": "top",
@@ -82546,7 +82897,7 @@
}
},
{
- "id": 13247,
+ "id": 13388,
"properties": {
"facing": "south",
"half": "top",
@@ -82555,7 +82906,7 @@
}
},
{
- "id": 13248,
+ "id": 13389,
"properties": {
"facing": "south",
"half": "top",
@@ -82564,7 +82915,7 @@
}
},
{
- "id": 13249,
+ "id": 13390,
"properties": {
"facing": "south",
"half": "top",
@@ -82573,7 +82924,7 @@
}
},
{
- "id": 13250,
+ "id": 13391,
"properties": {
"facing": "south",
"half": "top",
@@ -82582,7 +82933,7 @@
}
},
{
- "id": 13251,
+ "id": 13392,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82591,7 +82942,7 @@
}
},
{
- "id": 13252,
+ "id": 13393,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82600,7 +82951,7 @@
}
},
{
- "id": 13253,
+ "id": 13394,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82609,7 +82960,7 @@
}
},
{
- "id": 13254,
+ "id": 13395,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82618,7 +82969,7 @@
}
},
{
- "id": 13255,
+ "id": 13396,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82627,7 +82978,7 @@
}
},
{
- "id": 13256,
+ "id": 13397,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82636,7 +82987,7 @@
}
},
{
- "id": 13257,
+ "id": 13398,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82645,7 +82996,7 @@
}
},
{
- "id": 13258,
+ "id": 13399,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82654,7 +83005,7 @@
}
},
{
- "id": 13259,
+ "id": 13400,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82663,7 +83014,7 @@
}
},
{
- "id": 13260,
+ "id": 13401,
"properties": {
"facing": "south",
"half": "bottom",
@@ -82672,7 +83023,7 @@
}
},
{
- "id": 13261,
+ "id": 13402,
"properties": {
"facing": "west",
"half": "top",
@@ -82681,7 +83032,7 @@
}
},
{
- "id": 13262,
+ "id": 13403,
"properties": {
"facing": "west",
"half": "top",
@@ -82690,7 +83041,7 @@
}
},
{
- "id": 13263,
+ "id": 13404,
"properties": {
"facing": "west",
"half": "top",
@@ -82699,7 +83050,7 @@
}
},
{
- "id": 13264,
+ "id": 13405,
"properties": {
"facing": "west",
"half": "top",
@@ -82708,7 +83059,7 @@
}
},
{
- "id": 13265,
+ "id": 13406,
"properties": {
"facing": "west",
"half": "top",
@@ -82717,7 +83068,7 @@
}
},
{
- "id": 13266,
+ "id": 13407,
"properties": {
"facing": "west",
"half": "top",
@@ -82726,7 +83077,7 @@
}
},
{
- "id": 13267,
+ "id": 13408,
"properties": {
"facing": "west",
"half": "top",
@@ -82735,7 +83086,7 @@
}
},
{
- "id": 13268,
+ "id": 13409,
"properties": {
"facing": "west",
"half": "top",
@@ -82744,7 +83095,7 @@
}
},
{
- "id": 13269,
+ "id": 13410,
"properties": {
"facing": "west",
"half": "top",
@@ -82753,7 +83104,7 @@
}
},
{
- "id": 13270,
+ "id": 13411,
"properties": {
"facing": "west",
"half": "top",
@@ -82762,7 +83113,7 @@
}
},
{
- "id": 13271,
+ "id": 13412,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82771,7 +83122,7 @@
}
},
{
- "id": 13272,
+ "id": 13413,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82780,7 +83131,7 @@
}
},
{
- "id": 13273,
+ "id": 13414,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82789,7 +83140,7 @@
}
},
{
- "id": 13274,
+ "id": 13415,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82798,7 +83149,7 @@
}
},
{
- "id": 13275,
+ "id": 13416,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82807,7 +83158,7 @@
}
},
{
- "id": 13276,
+ "id": 13417,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82816,7 +83167,7 @@
}
},
{
- "id": 13277,
+ "id": 13418,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82825,7 +83176,7 @@
}
},
{
- "id": 13278,
+ "id": 13419,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82834,7 +83185,7 @@
}
},
{
- "id": 13279,
+ "id": 13420,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82843,7 +83194,7 @@
}
},
{
- "id": 13280,
+ "id": 13421,
"properties": {
"facing": "west",
"half": "bottom",
@@ -82852,7 +83203,7 @@
}
},
{
- "id": 13281,
+ "id": 13422,
"properties": {
"facing": "east",
"half": "top",
@@ -82861,7 +83212,7 @@
}
},
{
- "id": 13282,
+ "id": 13423,
"properties": {
"facing": "east",
"half": "top",
@@ -82870,7 +83221,7 @@
}
},
{
- "id": 13283,
+ "id": 13424,
"properties": {
"facing": "east",
"half": "top",
@@ -82879,7 +83230,7 @@
}
},
{
- "id": 13284,
+ "id": 13425,
"properties": {
"facing": "east",
"half": "top",
@@ -82888,7 +83239,7 @@
}
},
{
- "id": 13285,
+ "id": 13426,
"properties": {
"facing": "east",
"half": "top",
@@ -82897,7 +83248,7 @@
}
},
{
- "id": 13286,
+ "id": 13427,
"properties": {
"facing": "east",
"half": "top",
@@ -82906,7 +83257,7 @@
}
},
{
- "id": 13287,
+ "id": 13428,
"properties": {
"facing": "east",
"half": "top",
@@ -82915,7 +83266,7 @@
}
},
{
- "id": 13288,
+ "id": 13429,
"properties": {
"facing": "east",
"half": "top",
@@ -82924,7 +83275,7 @@
}
},
{
- "id": 13289,
+ "id": 13430,
"properties": {
"facing": "east",
"half": "top",
@@ -82933,7 +83284,7 @@
}
},
{
- "id": 13290,
+ "id": 13431,
"properties": {
"facing": "east",
"half": "top",
@@ -82942,7 +83293,7 @@
}
},
{
- "id": 13291,
+ "id": 13432,
"properties": {
"facing": "east",
"half": "bottom",
@@ -82951,7 +83302,7 @@
}
},
{
- "id": 13292,
+ "id": 13433,
"properties": {
"facing": "east",
"half": "bottom",
@@ -82960,7 +83311,7 @@
}
},
{
- "id": 13293,
+ "id": 13434,
"properties": {
"facing": "east",
"half": "bottom",
@@ -82969,7 +83320,7 @@
}
},
{
- "id": 13294,
+ "id": 13435,
"properties": {
"facing": "east",
"half": "bottom",
@@ -82978,7 +83329,7 @@
}
},
{
- "id": 13295,
+ "id": 13436,
"properties": {
"facing": "east",
"half": "bottom",
@@ -82987,7 +83338,7 @@
}
},
{
- "id": 13296,
+ "id": 13437,
"properties": {
"facing": "east",
"half": "bottom",
@@ -82996,7 +83347,7 @@
}
},
{
- "id": 13297,
+ "id": 13438,
"properties": {
"facing": "east",
"half": "bottom",
@@ -83005,7 +83356,7 @@
}
},
{
- "id": 13298,
+ "id": 13439,
"properties": {
"facing": "east",
"half": "bottom",
@@ -83014,7 +83365,7 @@
}
},
{
- "id": 13299,
+ "id": 13440,
"properties": {
"facing": "east",
"half": "bottom",
@@ -83023,7 +83374,7 @@
}
},
{
- "id": 13300,
+ "id": 13441,
"properties": {
"facing": "east",
"half": "bottom",
@@ -83066,7 +83417,7 @@
},
"states": [
{
- "id": 17583,
+ "id": 17724,
"properties": {
"east": "none",
"north": "none",
@@ -83077,7 +83428,7 @@
}
},
{
- "id": 17584,
+ "id": 17725,
"properties": {
"east": "none",
"north": "none",
@@ -83088,7 +83439,7 @@
}
},
{
- "id": 17585,
+ "id": 17726,
"properties": {
"east": "none",
"north": "none",
@@ -83100,2339 +83451,2339 @@
},
{
"default": true,
- "id": 17586,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17587,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17588,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17589,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17590,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17591,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17592,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17593,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17594,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17595,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17596,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17597,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17598,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17599,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17600,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17601,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17602,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17603,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17604,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17605,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17606,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17607,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17608,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17609,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17610,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17611,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17612,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17613,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17614,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17615,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17616,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17617,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17618,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17619,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17620,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17621,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17622,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17623,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17624,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17625,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17626,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17627,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17628,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17629,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17630,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17631,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17632,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17633,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17634,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17635,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17636,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17637,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17638,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17639,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17640,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17641,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17642,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17643,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17644,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17645,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17646,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17647,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17648,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17649,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17650,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17651,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17652,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17653,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17654,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17655,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17656,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17657,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17658,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17659,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17660,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17661,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17662,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17663,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17664,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17665,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17666,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17667,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17668,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17669,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17670,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17671,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17672,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17673,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17674,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17675,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17676,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17677,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17678,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17679,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17680,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17681,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17682,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17683,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17684,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17685,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17686,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17687,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17688,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17689,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17690,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17691,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17692,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17693,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17694,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17695,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17696,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17697,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17698,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17699,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17700,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17701,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17702,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17703,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17704,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17705,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17706,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17707,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17708,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17709,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17710,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17711,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17712,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17713,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17714,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17715,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17716,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17717,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17718,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17719,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17720,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17721,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17722,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17723,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17724,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17725,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17726,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 17727,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17728,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17729,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17730,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17731,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17732,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17733,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17734,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17735,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17736,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17737,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17738,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17739,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17740,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17741,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17742,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17743,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17744,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17745,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17746,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17747,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17748,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17749,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17750,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17751,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17752,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17753,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17754,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17755,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17756,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17757,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17758,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17759,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17760,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17761,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17762,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17763,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17764,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17765,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17766,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17767,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17768,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17769,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17770,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17771,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17772,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17773,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17774,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17775,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17776,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17777,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17778,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17779,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17780,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17781,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17782,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17783,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17784,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17785,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17786,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17787,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17788,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17789,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17790,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17791,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17792,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17793,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17794,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17795,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17796,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17797,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17798,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17799,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17800,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17801,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17802,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17803,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17804,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17805,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17806,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17807,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17808,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17809,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17810,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17811,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17812,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17813,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17814,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17815,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17816,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17817,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17818,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17819,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17820,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17821,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17822,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17823,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17824,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17825,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17826,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17827,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17828,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17829,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17830,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17831,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17832,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17833,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17834,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17835,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17836,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17837,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17838,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17839,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17840,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17841,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17842,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17843,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17844,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17845,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17846,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17847,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17848,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17849,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17850,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17851,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17852,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17853,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17854,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17855,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17856,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17857,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17858,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17859,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17860,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17861,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17862,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17863,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17864,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17865,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17866,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17867,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17868,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17869,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17870,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17871,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17872,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17873,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17874,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17875,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17876,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17877,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17878,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17879,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17880,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17881,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17882,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17883,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17884,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17885,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17886,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17887,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17888,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17889,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17890,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17891,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17892,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17893,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17894,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17895,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17896,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17897,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17898,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17899,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17900,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17901,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17902,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17903,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17904,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17905,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17906,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17907,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17908,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17909,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17910,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17911,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17912,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17913,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17914,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17915,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17916,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17917,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17918,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17919,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17920,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17921,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17922,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17923,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17924,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17925,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17926,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17927,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17928,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17929,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17930,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17931,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17932,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17933,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17934,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17935,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17936,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17937,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17938,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17939,
"properties": {
"east": "low",
"north": "tall",
@@ -85443,7 +85794,7 @@
}
},
{
- "id": 17799,
+ "id": 17940,
"properties": {
"east": "tall",
"north": "none",
@@ -85454,7 +85805,7 @@
}
},
{
- "id": 17800,
+ "id": 17941,
"properties": {
"east": "tall",
"north": "none",
@@ -85465,7 +85816,7 @@
}
},
{
- "id": 17801,
+ "id": 17942,
"properties": {
"east": "tall",
"north": "none",
@@ -85476,7 +85827,7 @@
}
},
{
- "id": 17802,
+ "id": 17943,
"properties": {
"east": "tall",
"north": "none",
@@ -85487,7 +85838,7 @@
}
},
{
- "id": 17803,
+ "id": 17944,
"properties": {
"east": "tall",
"north": "none",
@@ -85498,7 +85849,7 @@
}
},
{
- "id": 17804,
+ "id": 17945,
"properties": {
"east": "tall",
"north": "none",
@@ -85509,7 +85860,7 @@
}
},
{
- "id": 17805,
+ "id": 17946,
"properties": {
"east": "tall",
"north": "none",
@@ -85520,7 +85871,7 @@
}
},
{
- "id": 17806,
+ "id": 17947,
"properties": {
"east": "tall",
"north": "none",
@@ -85531,7 +85882,7 @@
}
},
{
- "id": 17807,
+ "id": 17948,
"properties": {
"east": "tall",
"north": "none",
@@ -85542,7 +85893,7 @@
}
},
{
- "id": 17808,
+ "id": 17949,
"properties": {
"east": "tall",
"north": "none",
@@ -85553,7 +85904,7 @@
}
},
{
- "id": 17809,
+ "id": 17950,
"properties": {
"east": "tall",
"north": "none",
@@ -85564,7 +85915,7 @@
}
},
{
- "id": 17810,
+ "id": 17951,
"properties": {
"east": "tall",
"north": "none",
@@ -85575,7 +85926,7 @@
}
},
{
- "id": 17811,
+ "id": 17952,
"properties": {
"east": "tall",
"north": "none",
@@ -85586,7 +85937,7 @@
}
},
{
- "id": 17812,
+ "id": 17953,
"properties": {
"east": "tall",
"north": "none",
@@ -85597,7 +85948,7 @@
}
},
{
- "id": 17813,
+ "id": 17954,
"properties": {
"east": "tall",
"north": "none",
@@ -85608,7 +85959,7 @@
}
},
{
- "id": 17814,
+ "id": 17955,
"properties": {
"east": "tall",
"north": "none",
@@ -85619,7 +85970,7 @@
}
},
{
- "id": 17815,
+ "id": 17956,
"properties": {
"east": "tall",
"north": "none",
@@ -85630,7 +85981,7 @@
}
},
{
- "id": 17816,
+ "id": 17957,
"properties": {
"east": "tall",
"north": "none",
@@ -85641,7 +85992,7 @@
}
},
{
- "id": 17817,
+ "id": 17958,
"properties": {
"east": "tall",
"north": "none",
@@ -85652,7 +86003,7 @@
}
},
{
- "id": 17818,
+ "id": 17959,
"properties": {
"east": "tall",
"north": "none",
@@ -85663,7 +86014,7 @@
}
},
{
- "id": 17819,
+ "id": 17960,
"properties": {
"east": "tall",
"north": "none",
@@ -85674,7 +86025,7 @@
}
},
{
- "id": 17820,
+ "id": 17961,
"properties": {
"east": "tall",
"north": "none",
@@ -85685,7 +86036,7 @@
}
},
{
- "id": 17821,
+ "id": 17962,
"properties": {
"east": "tall",
"north": "none",
@@ -85696,7 +86047,7 @@
}
},
{
- "id": 17822,
+ "id": 17963,
"properties": {
"east": "tall",
"north": "none",
@@ -85707,7 +86058,7 @@
}
},
{
- "id": 17823,
+ "id": 17964,
"properties": {
"east": "tall",
"north": "none",
@@ -85718,7 +86069,7 @@
}
},
{
- "id": 17824,
+ "id": 17965,
"properties": {
"east": "tall",
"north": "none",
@@ -85729,7 +86080,7 @@
}
},
{
- "id": 17825,
+ "id": 17966,
"properties": {
"east": "tall",
"north": "none",
@@ -85740,7 +86091,7 @@
}
},
{
- "id": 17826,
+ "id": 17967,
"properties": {
"east": "tall",
"north": "none",
@@ -85751,7 +86102,7 @@
}
},
{
- "id": 17827,
+ "id": 17968,
"properties": {
"east": "tall",
"north": "none",
@@ -85762,7 +86113,7 @@
}
},
{
- "id": 17828,
+ "id": 17969,
"properties": {
"east": "tall",
"north": "none",
@@ -85773,7 +86124,7 @@
}
},
{
- "id": 17829,
+ "id": 17970,
"properties": {
"east": "tall",
"north": "none",
@@ -85784,7 +86135,7 @@
}
},
{
- "id": 17830,
+ "id": 17971,
"properties": {
"east": "tall",
"north": "none",
@@ -85795,7 +86146,7 @@
}
},
{
- "id": 17831,
+ "id": 17972,
"properties": {
"east": "tall",
"north": "none",
@@ -85806,7 +86157,7 @@
}
},
{
- "id": 17832,
+ "id": 17973,
"properties": {
"east": "tall",
"north": "none",
@@ -85817,7 +86168,7 @@
}
},
{
- "id": 17833,
+ "id": 17974,
"properties": {
"east": "tall",
"north": "none",
@@ -85828,7 +86179,7 @@
}
},
{
- "id": 17834,
+ "id": 17975,
"properties": {
"east": "tall",
"north": "none",
@@ -85839,7 +86190,7 @@
}
},
{
- "id": 17835,
+ "id": 17976,
"properties": {
"east": "tall",
"north": "low",
@@ -85850,7 +86201,7 @@
}
},
{
- "id": 17836,
+ "id": 17977,
"properties": {
"east": "tall",
"north": "low",
@@ -85861,7 +86212,7 @@
}
},
{
- "id": 17837,
+ "id": 17978,
"properties": {
"east": "tall",
"north": "low",
@@ -85872,7 +86223,7 @@
}
},
{
- "id": 17838,
+ "id": 17979,
"properties": {
"east": "tall",
"north": "low",
@@ -85883,7 +86234,7 @@
}
},
{
- "id": 17839,
+ "id": 17980,
"properties": {
"east": "tall",
"north": "low",
@@ -85894,7 +86245,7 @@
}
},
{
- "id": 17840,
+ "id": 17981,
"properties": {
"east": "tall",
"north": "low",
@@ -85905,7 +86256,7 @@
}
},
{
- "id": 17841,
+ "id": 17982,
"properties": {
"east": "tall",
"north": "low",
@@ -85916,7 +86267,7 @@
}
},
{
- "id": 17842,
+ "id": 17983,
"properties": {
"east": "tall",
"north": "low",
@@ -85927,7 +86278,7 @@
}
},
{
- "id": 17843,
+ "id": 17984,
"properties": {
"east": "tall",
"north": "low",
@@ -85938,7 +86289,7 @@
}
},
{
- "id": 17844,
+ "id": 17985,
"properties": {
"east": "tall",
"north": "low",
@@ -85949,7 +86300,7 @@
}
},
{
- "id": 17845,
+ "id": 17986,
"properties": {
"east": "tall",
"north": "low",
@@ -85960,7 +86311,7 @@
}
},
{
- "id": 17846,
+ "id": 17987,
"properties": {
"east": "tall",
"north": "low",
@@ -85971,7 +86322,7 @@
}
},
{
- "id": 17847,
+ "id": 17988,
"properties": {
"east": "tall",
"north": "low",
@@ -85982,7 +86333,7 @@
}
},
{
- "id": 17848,
+ "id": 17989,
"properties": {
"east": "tall",
"north": "low",
@@ -85993,7 +86344,7 @@
}
},
{
- "id": 17849,
+ "id": 17990,
"properties": {
"east": "tall",
"north": "low",
@@ -86004,7 +86355,7 @@
}
},
{
- "id": 17850,
+ "id": 17991,
"properties": {
"east": "tall",
"north": "low",
@@ -86015,7 +86366,7 @@
}
},
{
- "id": 17851,
+ "id": 17992,
"properties": {
"east": "tall",
"north": "low",
@@ -86026,7 +86377,7 @@
}
},
{
- "id": 17852,
+ "id": 17993,
"properties": {
"east": "tall",
"north": "low",
@@ -86037,7 +86388,7 @@
}
},
{
- "id": 17853,
+ "id": 17994,
"properties": {
"east": "tall",
"north": "low",
@@ -86048,7 +86399,7 @@
}
},
{
- "id": 17854,
+ "id": 17995,
"properties": {
"east": "tall",
"north": "low",
@@ -86059,7 +86410,7 @@
}
},
{
- "id": 17855,
+ "id": 17996,
"properties": {
"east": "tall",
"north": "low",
@@ -86070,7 +86421,7 @@
}
},
{
- "id": 17856,
+ "id": 17997,
"properties": {
"east": "tall",
"north": "low",
@@ -86081,7 +86432,7 @@
}
},
{
- "id": 17857,
+ "id": 17998,
"properties": {
"east": "tall",
"north": "low",
@@ -86092,7 +86443,7 @@
}
},
{
- "id": 17858,
+ "id": 17999,
"properties": {
"east": "tall",
"north": "low",
@@ -86103,7 +86454,7 @@
}
},
{
- "id": 17859,
+ "id": 18000,
"properties": {
"east": "tall",
"north": "low",
@@ -86114,7 +86465,7 @@
}
},
{
- "id": 17860,
+ "id": 18001,
"properties": {
"east": "tall",
"north": "low",
@@ -86125,7 +86476,7 @@
}
},
{
- "id": 17861,
+ "id": 18002,
"properties": {
"east": "tall",
"north": "low",
@@ -86136,7 +86487,7 @@
}
},
{
- "id": 17862,
+ "id": 18003,
"properties": {
"east": "tall",
"north": "low",
@@ -86147,7 +86498,7 @@
}
},
{
- "id": 17863,
+ "id": 18004,
"properties": {
"east": "tall",
"north": "low",
@@ -86158,7 +86509,7 @@
}
},
{
- "id": 17864,
+ "id": 18005,
"properties": {
"east": "tall",
"north": "low",
@@ -86169,7 +86520,7 @@
}
},
{
- "id": 17865,
+ "id": 18006,
"properties": {
"east": "tall",
"north": "low",
@@ -86180,7 +86531,7 @@
}
},
{
- "id": 17866,
+ "id": 18007,
"properties": {
"east": "tall",
"north": "low",
@@ -86191,7 +86542,7 @@
}
},
{
- "id": 17867,
+ "id": 18008,
"properties": {
"east": "tall",
"north": "low",
@@ -86202,7 +86553,7 @@
}
},
{
- "id": 17868,
+ "id": 18009,
"properties": {
"east": "tall",
"north": "low",
@@ -86213,7 +86564,7 @@
}
},
{
- "id": 17869,
+ "id": 18010,
"properties": {
"east": "tall",
"north": "low",
@@ -86224,7 +86575,7 @@
}
},
{
- "id": 17870,
+ "id": 18011,
"properties": {
"east": "tall",
"north": "low",
@@ -86235,7 +86586,7 @@
}
},
{
- "id": 17871,
+ "id": 18012,
"properties": {
"east": "tall",
"north": "tall",
@@ -86246,7 +86597,7 @@
}
},
{
- "id": 17872,
+ "id": 18013,
"properties": {
"east": "tall",
"north": "tall",
@@ -86257,7 +86608,7 @@
}
},
{
- "id": 17873,
+ "id": 18014,
"properties": {
"east": "tall",
"north": "tall",
@@ -86268,7 +86619,7 @@
}
},
{
- "id": 17874,
+ "id": 18015,
"properties": {
"east": "tall",
"north": "tall",
@@ -86279,7 +86630,7 @@
}
},
{
- "id": 17875,
+ "id": 18016,
"properties": {
"east": "tall",
"north": "tall",
@@ -86290,7 +86641,7 @@
}
},
{
- "id": 17876,
+ "id": 18017,
"properties": {
"east": "tall",
"north": "tall",
@@ -86301,7 +86652,7 @@
}
},
{
- "id": 17877,
+ "id": 18018,
"properties": {
"east": "tall",
"north": "tall",
@@ -86312,7 +86663,7 @@
}
},
{
- "id": 17878,
+ "id": 18019,
"properties": {
"east": "tall",
"north": "tall",
@@ -86323,7 +86674,7 @@
}
},
{
- "id": 17879,
+ "id": 18020,
"properties": {
"east": "tall",
"north": "tall",
@@ -86334,7 +86685,7 @@
}
},
{
- "id": 17880,
+ "id": 18021,
"properties": {
"east": "tall",
"north": "tall",
@@ -86345,7 +86696,7 @@
}
},
{
- "id": 17881,
+ "id": 18022,
"properties": {
"east": "tall",
"north": "tall",
@@ -86356,7 +86707,7 @@
}
},
{
- "id": 17882,
+ "id": 18023,
"properties": {
"east": "tall",
"north": "tall",
@@ -86367,7 +86718,7 @@
}
},
{
- "id": 17883,
+ "id": 18024,
"properties": {
"east": "tall",
"north": "tall",
@@ -86378,7 +86729,7 @@
}
},
{
- "id": 17884,
+ "id": 18025,
"properties": {
"east": "tall",
"north": "tall",
@@ -86389,7 +86740,7 @@
}
},
{
- "id": 17885,
+ "id": 18026,
"properties": {
"east": "tall",
"north": "tall",
@@ -86400,7 +86751,7 @@
}
},
{
- "id": 17886,
+ "id": 18027,
"properties": {
"east": "tall",
"north": "tall",
@@ -86411,7 +86762,7 @@
}
},
{
- "id": 17887,
+ "id": 18028,
"properties": {
"east": "tall",
"north": "tall",
@@ -86422,7 +86773,7 @@
}
},
{
- "id": 17888,
+ "id": 18029,
"properties": {
"east": "tall",
"north": "tall",
@@ -86433,7 +86784,7 @@
}
},
{
- "id": 17889,
+ "id": 18030,
"properties": {
"east": "tall",
"north": "tall",
@@ -86444,7 +86795,7 @@
}
},
{
- "id": 17890,
+ "id": 18031,
"properties": {
"east": "tall",
"north": "tall",
@@ -86455,7 +86806,7 @@
}
},
{
- "id": 17891,
+ "id": 18032,
"properties": {
"east": "tall",
"north": "tall",
@@ -86466,7 +86817,7 @@
}
},
{
- "id": 17892,
+ "id": 18033,
"properties": {
"east": "tall",
"north": "tall",
@@ -86477,7 +86828,7 @@
}
},
{
- "id": 17893,
+ "id": 18034,
"properties": {
"east": "tall",
"north": "tall",
@@ -86488,7 +86839,7 @@
}
},
{
- "id": 17894,
+ "id": 18035,
"properties": {
"east": "tall",
"north": "tall",
@@ -86499,7 +86850,7 @@
}
},
{
- "id": 17895,
+ "id": 18036,
"properties": {
"east": "tall",
"north": "tall",
@@ -86510,7 +86861,7 @@
}
},
{
- "id": 17896,
+ "id": 18037,
"properties": {
"east": "tall",
"north": "tall",
@@ -86521,7 +86872,7 @@
}
},
{
- "id": 17897,
+ "id": 18038,
"properties": {
"east": "tall",
"north": "tall",
@@ -86532,7 +86883,7 @@
}
},
{
- "id": 17898,
+ "id": 18039,
"properties": {
"east": "tall",
"north": "tall",
@@ -86543,7 +86894,7 @@
}
},
{
- "id": 17899,
+ "id": 18040,
"properties": {
"east": "tall",
"north": "tall",
@@ -86554,7 +86905,7 @@
}
},
{
- "id": 17900,
+ "id": 18041,
"properties": {
"east": "tall",
"north": "tall",
@@ -86565,7 +86916,7 @@
}
},
{
- "id": 17901,
+ "id": 18042,
"properties": {
"east": "tall",
"north": "tall",
@@ -86576,7 +86927,7 @@
}
},
{
- "id": 17902,
+ "id": 18043,
"properties": {
"east": "tall",
"north": "tall",
@@ -86587,7 +86938,7 @@
}
},
{
- "id": 17903,
+ "id": 18044,
"properties": {
"east": "tall",
"north": "tall",
@@ -86598,7 +86949,7 @@
}
},
{
- "id": 17904,
+ "id": 18045,
"properties": {
"east": "tall",
"north": "tall",
@@ -86609,7 +86960,7 @@
}
},
{
- "id": 17905,
+ "id": 18046,
"properties": {
"east": "tall",
"north": "tall",
@@ -86620,7 +86971,7 @@
}
},
{
- "id": 17906,
+ "id": 18047,
"properties": {
"east": "tall",
"north": "tall",
@@ -86636,7 +86987,7 @@
"states": [
{
"default": true,
- "id": 12353
+ "id": 12494
}
]
},
@@ -86717,7 +87068,7 @@
"states": [
{
"default": true,
- "id": 21565
+ "id": 21706
}
]
},
@@ -86725,7 +87076,7 @@
"states": [
{
"default": true,
- "id": 21571
+ "id": 21712
}
]
},
@@ -86743,21 +87094,21 @@
},
"states": [
{
- "id": 21905,
+ "id": 22046,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21906,
+ "id": 22047,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21907,
+ "id": 22048,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -86765,21 +87116,21 @@
},
{
"default": true,
- "id": 21908,
+ "id": 22049,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21909,
+ "id": 22050,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21910,
+ "id": 22051,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -86813,7 +87164,7 @@
},
"states": [
{
- "id": 21733,
+ "id": 21874,
"properties": {
"facing": "north",
"half": "top",
@@ -86822,7 +87173,7 @@
}
},
{
- "id": 21734,
+ "id": 21875,
"properties": {
"facing": "north",
"half": "top",
@@ -86831,7 +87182,7 @@
}
},
{
- "id": 21735,
+ "id": 21876,
"properties": {
"facing": "north",
"half": "top",
@@ -86840,7 +87191,7 @@
}
},
{
- "id": 21736,
+ "id": 21877,
"properties": {
"facing": "north",
"half": "top",
@@ -86849,7 +87200,7 @@
}
},
{
- "id": 21737,
+ "id": 21878,
"properties": {
"facing": "north",
"half": "top",
@@ -86858,7 +87209,7 @@
}
},
{
- "id": 21738,
+ "id": 21879,
"properties": {
"facing": "north",
"half": "top",
@@ -86867,7 +87218,7 @@
}
},
{
- "id": 21739,
+ "id": 21880,
"properties": {
"facing": "north",
"half": "top",
@@ -86876,7 +87227,7 @@
}
},
{
- "id": 21740,
+ "id": 21881,
"properties": {
"facing": "north",
"half": "top",
@@ -86885,7 +87236,7 @@
}
},
{
- "id": 21741,
+ "id": 21882,
"properties": {
"facing": "north",
"half": "top",
@@ -86894,7 +87245,7 @@
}
},
{
- "id": 21742,
+ "id": 21883,
"properties": {
"facing": "north",
"half": "top",
@@ -86903,7 +87254,7 @@
}
},
{
- "id": 21743,
+ "id": 21884,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86913,7 +87264,7 @@
},
{
"default": true,
- "id": 21744,
+ "id": 21885,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86922,7 +87273,7 @@
}
},
{
- "id": 21745,
+ "id": 21886,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86931,7 +87282,7 @@
}
},
{
- "id": 21746,
+ "id": 21887,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86940,7 +87291,7 @@
}
},
{
- "id": 21747,
+ "id": 21888,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86949,7 +87300,7 @@
}
},
{
- "id": 21748,
+ "id": 21889,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86958,7 +87309,7 @@
}
},
{
- "id": 21749,
+ "id": 21890,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86967,7 +87318,7 @@
}
},
{
- "id": 21750,
+ "id": 21891,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86976,7 +87327,7 @@
}
},
{
- "id": 21751,
+ "id": 21892,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86985,7 +87336,7 @@
}
},
{
- "id": 21752,
+ "id": 21893,
"properties": {
"facing": "north",
"half": "bottom",
@@ -86994,7 +87345,7 @@
}
},
{
- "id": 21753,
+ "id": 21894,
"properties": {
"facing": "south",
"half": "top",
@@ -87003,7 +87354,7 @@
}
},
{
- "id": 21754,
+ "id": 21895,
"properties": {
"facing": "south",
"half": "top",
@@ -87012,7 +87363,7 @@
}
},
{
- "id": 21755,
+ "id": 21896,
"properties": {
"facing": "south",
"half": "top",
@@ -87021,7 +87372,7 @@
}
},
{
- "id": 21756,
+ "id": 21897,
"properties": {
"facing": "south",
"half": "top",
@@ -87030,7 +87381,7 @@
}
},
{
- "id": 21757,
+ "id": 21898,
"properties": {
"facing": "south",
"half": "top",
@@ -87039,7 +87390,7 @@
}
},
{
- "id": 21758,
+ "id": 21899,
"properties": {
"facing": "south",
"half": "top",
@@ -87048,7 +87399,7 @@
}
},
{
- "id": 21759,
+ "id": 21900,
"properties": {
"facing": "south",
"half": "top",
@@ -87057,7 +87408,7 @@
}
},
{
- "id": 21760,
+ "id": 21901,
"properties": {
"facing": "south",
"half": "top",
@@ -87066,7 +87417,7 @@
}
},
{
- "id": 21761,
+ "id": 21902,
"properties": {
"facing": "south",
"half": "top",
@@ -87075,7 +87426,7 @@
}
},
{
- "id": 21762,
+ "id": 21903,
"properties": {
"facing": "south",
"half": "top",
@@ -87084,7 +87435,7 @@
}
},
{
- "id": 21763,
+ "id": 21904,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87093,7 +87444,7 @@
}
},
{
- "id": 21764,
+ "id": 21905,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87102,7 +87453,7 @@
}
},
{
- "id": 21765,
+ "id": 21906,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87111,7 +87462,7 @@
}
},
{
- "id": 21766,
+ "id": 21907,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87120,7 +87471,7 @@
}
},
{
- "id": 21767,
+ "id": 21908,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87129,7 +87480,7 @@
}
},
{
- "id": 21768,
+ "id": 21909,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87138,7 +87489,7 @@
}
},
{
- "id": 21769,
+ "id": 21910,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87147,7 +87498,7 @@
}
},
{
- "id": 21770,
+ "id": 21911,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87156,7 +87507,7 @@
}
},
{
- "id": 21771,
+ "id": 21912,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87165,7 +87516,7 @@
}
},
{
- "id": 21772,
+ "id": 21913,
"properties": {
"facing": "south",
"half": "bottom",
@@ -87174,7 +87525,7 @@
}
},
{
- "id": 21773,
+ "id": 21914,
"properties": {
"facing": "west",
"half": "top",
@@ -87183,7 +87534,7 @@
}
},
{
- "id": 21774,
+ "id": 21915,
"properties": {
"facing": "west",
"half": "top",
@@ -87192,7 +87543,7 @@
}
},
{
- "id": 21775,
+ "id": 21916,
"properties": {
"facing": "west",
"half": "top",
@@ -87201,7 +87552,7 @@
}
},
{
- "id": 21776,
+ "id": 21917,
"properties": {
"facing": "west",
"half": "top",
@@ -87210,7 +87561,7 @@
}
},
{
- "id": 21777,
+ "id": 21918,
"properties": {
"facing": "west",
"half": "top",
@@ -87219,7 +87570,7 @@
}
},
{
- "id": 21778,
+ "id": 21919,
"properties": {
"facing": "west",
"half": "top",
@@ -87228,7 +87579,7 @@
}
},
{
- "id": 21779,
+ "id": 21920,
"properties": {
"facing": "west",
"half": "top",
@@ -87237,7 +87588,7 @@
}
},
{
- "id": 21780,
+ "id": 21921,
"properties": {
"facing": "west",
"half": "top",
@@ -87246,7 +87597,7 @@
}
},
{
- "id": 21781,
+ "id": 21922,
"properties": {
"facing": "west",
"half": "top",
@@ -87255,7 +87606,7 @@
}
},
{
- "id": 21782,
+ "id": 21923,
"properties": {
"facing": "west",
"half": "top",
@@ -87264,7 +87615,7 @@
}
},
{
- "id": 21783,
+ "id": 21924,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87273,7 +87624,7 @@
}
},
{
- "id": 21784,
+ "id": 21925,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87282,7 +87633,7 @@
}
},
{
- "id": 21785,
+ "id": 21926,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87291,7 +87642,7 @@
}
},
{
- "id": 21786,
+ "id": 21927,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87300,7 +87651,7 @@
}
},
{
- "id": 21787,
+ "id": 21928,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87309,7 +87660,7 @@
}
},
{
- "id": 21788,
+ "id": 21929,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87318,7 +87669,7 @@
}
},
{
- "id": 21789,
+ "id": 21930,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87327,7 +87678,7 @@
}
},
{
- "id": 21790,
+ "id": 21931,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87336,7 +87687,7 @@
}
},
{
- "id": 21791,
+ "id": 21932,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87345,7 +87696,7 @@
}
},
{
- "id": 21792,
+ "id": 21933,
"properties": {
"facing": "west",
"half": "bottom",
@@ -87354,7 +87705,7 @@
}
},
{
- "id": 21793,
+ "id": 21934,
"properties": {
"facing": "east",
"half": "top",
@@ -87363,7 +87714,7 @@
}
},
{
- "id": 21794,
+ "id": 21935,
"properties": {
"facing": "east",
"half": "top",
@@ -87372,7 +87723,7 @@
}
},
{
- "id": 21795,
+ "id": 21936,
"properties": {
"facing": "east",
"half": "top",
@@ -87381,7 +87732,7 @@
}
},
{
- "id": 21796,
+ "id": 21937,
"properties": {
"facing": "east",
"half": "top",
@@ -87390,7 +87741,7 @@
}
},
{
- "id": 21797,
+ "id": 21938,
"properties": {
"facing": "east",
"half": "top",
@@ -87399,7 +87750,7 @@
}
},
{
- "id": 21798,
+ "id": 21939,
"properties": {
"facing": "east",
"half": "top",
@@ -87408,7 +87759,7 @@
}
},
{
- "id": 21799,
+ "id": 21940,
"properties": {
"facing": "east",
"half": "top",
@@ -87417,7 +87768,7 @@
}
},
{
- "id": 21800,
+ "id": 21941,
"properties": {
"facing": "east",
"half": "top",
@@ -87426,7 +87777,7 @@
}
},
{
- "id": 21801,
+ "id": 21942,
"properties": {
"facing": "east",
"half": "top",
@@ -87435,7 +87786,7 @@
}
},
{
- "id": 21802,
+ "id": 21943,
"properties": {
"facing": "east",
"half": "top",
@@ -87444,7 +87795,7 @@
}
},
{
- "id": 21803,
+ "id": 21944,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87453,7 +87804,7 @@
}
},
{
- "id": 21804,
+ "id": 21945,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87462,7 +87813,7 @@
}
},
{
- "id": 21805,
+ "id": 21946,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87471,7 +87822,7 @@
}
},
{
- "id": 21806,
+ "id": 21947,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87480,7 +87831,7 @@
}
},
{
- "id": 21807,
+ "id": 21948,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87489,7 +87840,7 @@
}
},
{
- "id": 21808,
+ "id": 21949,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87498,7 +87849,7 @@
}
},
{
- "id": 21809,
+ "id": 21950,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87507,7 +87858,7 @@
}
},
{
- "id": 21810,
+ "id": 21951,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87516,7 +87867,7 @@
}
},
{
- "id": 21811,
+ "id": 21952,
"properties": {
"facing": "east",
"half": "bottom",
@@ -87525,7 +87876,7 @@
}
},
{
- "id": 21812,
+ "id": 21953,
"properties": {
"facing": "east",
"half": "bottom",
@@ -93295,13 +93646,13 @@
"states": [
{
"default": true,
- "id": 12688,
+ "id": 12829,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12689,
+ "id": 12830,
"properties": {
"waterlogged": "false"
}
@@ -93312,7 +93663,7 @@
"states": [
{
"default": true,
- "id": 12670
+ "id": 12811
}
]
},
@@ -93326,13 +93677,13 @@
"states": [
{
"default": true,
- "id": 12708,
+ "id": 12849,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12709,
+ "id": 12850,
"properties": {
"waterlogged": "false"
}
@@ -93355,56 +93706,56 @@
"states": [
{
"default": true,
- "id": 12776,
+ "id": 12917,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12777,
+ "id": 12918,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12778,
+ "id": 12919,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12779,
+ "id": 12920,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12780,
+ "id": 12921,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12781,
+ "id": 12922,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12782,
+ "id": 12923,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12783,
+ "id": 12924,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -93416,7 +93767,7 @@
"states": [
{
"default": true,
- "id": 18296
+ "id": 18437
}
]
},
@@ -93432,7 +93783,7 @@
"states": [
{
"default": true,
- "id": 22370
+ "id": 22511
}
]
},
@@ -93688,7 +94039,7 @@
"states": [
{
"default": true,
- "id": 24117
+ "id": 24258
}
]
},
@@ -93704,25 +94055,25 @@
"states": [
{
"default": true,
- "id": 12398,
+ "id": 12539,
"properties": {
"age": "0"
}
},
{
- "id": 12399,
+ "id": 12540,
"properties": {
"age": "1"
}
},
{
- "id": 12400,
+ "id": 12541,
"properties": {
"age": "2"
}
},
{
- "id": 12401,
+ "id": 12542,
"properties": {
"age": "3"
}
@@ -93806,7 +94157,7 @@
"states": [
{
"default": true,
- "id": 20144
+ "id": 20285
}
]
},
@@ -95782,21 +96133,21 @@
},
"states": [
{
- "id": 13989,
+ "id": 14130,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13990,
+ "id": 14131,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13991,
+ "id": 14132,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -95804,21 +96155,21 @@
},
{
"default": true,
- "id": 13992,
+ "id": 14133,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13993,
+ "id": 14134,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13994,
+ "id": 14135,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -95852,7 +96203,7 @@
},
"states": [
{
- "id": 13541,
+ "id": 13682,
"properties": {
"facing": "north",
"half": "top",
@@ -95861,7 +96212,7 @@
}
},
{
- "id": 13542,
+ "id": 13683,
"properties": {
"facing": "north",
"half": "top",
@@ -95870,7 +96221,7 @@
}
},
{
- "id": 13543,
+ "id": 13684,
"properties": {
"facing": "north",
"half": "top",
@@ -95879,7 +96230,7 @@
}
},
{
- "id": 13544,
+ "id": 13685,
"properties": {
"facing": "north",
"half": "top",
@@ -95888,7 +96239,7 @@
}
},
{
- "id": 13545,
+ "id": 13686,
"properties": {
"facing": "north",
"half": "top",
@@ -95897,7 +96248,7 @@
}
},
{
- "id": 13546,
+ "id": 13687,
"properties": {
"facing": "north",
"half": "top",
@@ -95906,7 +96257,7 @@
}
},
{
- "id": 13547,
+ "id": 13688,
"properties": {
"facing": "north",
"half": "top",
@@ -95915,7 +96266,7 @@
}
},
{
- "id": 13548,
+ "id": 13689,
"properties": {
"facing": "north",
"half": "top",
@@ -95924,7 +96275,7 @@
}
},
{
- "id": 13549,
+ "id": 13690,
"properties": {
"facing": "north",
"half": "top",
@@ -95933,7 +96284,7 @@
}
},
{
- "id": 13550,
+ "id": 13691,
"properties": {
"facing": "north",
"half": "top",
@@ -95942,7 +96293,7 @@
}
},
{
- "id": 13551,
+ "id": 13692,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95952,7 +96303,7 @@
},
{
"default": true,
- "id": 13552,
+ "id": 13693,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95961,7 +96312,7 @@
}
},
{
- "id": 13553,
+ "id": 13694,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95970,7 +96321,7 @@
}
},
{
- "id": 13554,
+ "id": 13695,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95979,7 +96330,7 @@
}
},
{
- "id": 13555,
+ "id": 13696,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95988,7 +96339,7 @@
}
},
{
- "id": 13556,
+ "id": 13697,
"properties": {
"facing": "north",
"half": "bottom",
@@ -95997,7 +96348,7 @@
}
},
{
- "id": 13557,
+ "id": 13698,
"properties": {
"facing": "north",
"half": "bottom",
@@ -96006,7 +96357,7 @@
}
},
{
- "id": 13558,
+ "id": 13699,
"properties": {
"facing": "north",
"half": "bottom",
@@ -96015,7 +96366,7 @@
}
},
{
- "id": 13559,
+ "id": 13700,
"properties": {
"facing": "north",
"half": "bottom",
@@ -96024,7 +96375,7 @@
}
},
{
- "id": 13560,
+ "id": 13701,
"properties": {
"facing": "north",
"half": "bottom",
@@ -96033,7 +96384,7 @@
}
},
{
- "id": 13561,
+ "id": 13702,
"properties": {
"facing": "south",
"half": "top",
@@ -96042,7 +96393,7 @@
}
},
{
- "id": 13562,
+ "id": 13703,
"properties": {
"facing": "south",
"half": "top",
@@ -96051,7 +96402,7 @@
}
},
{
- "id": 13563,
+ "id": 13704,
"properties": {
"facing": "south",
"half": "top",
@@ -96060,7 +96411,7 @@
}
},
{
- "id": 13564,
+ "id": 13705,
"properties": {
"facing": "south",
"half": "top",
@@ -96069,7 +96420,7 @@
}
},
{
- "id": 13565,
+ "id": 13706,
"properties": {
"facing": "south",
"half": "top",
@@ -96078,7 +96429,7 @@
}
},
{
- "id": 13566,
+ "id": 13707,
"properties": {
"facing": "south",
"half": "top",
@@ -96087,7 +96438,7 @@
}
},
{
- "id": 13567,
+ "id": 13708,
"properties": {
"facing": "south",
"half": "top",
@@ -96096,7 +96447,7 @@
}
},
{
- "id": 13568,
+ "id": 13709,
"properties": {
"facing": "south",
"half": "top",
@@ -96105,7 +96456,7 @@
}
},
{
- "id": 13569,
+ "id": 13710,
"properties": {
"facing": "south",
"half": "top",
@@ -96114,7 +96465,7 @@
}
},
{
- "id": 13570,
+ "id": 13711,
"properties": {
"facing": "south",
"half": "top",
@@ -96123,7 +96474,7 @@
}
},
{
- "id": 13571,
+ "id": 13712,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96132,7 +96483,7 @@
}
},
{
- "id": 13572,
+ "id": 13713,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96141,7 +96492,7 @@
}
},
{
- "id": 13573,
+ "id": 13714,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96150,7 +96501,7 @@
}
},
{
- "id": 13574,
+ "id": 13715,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96159,7 +96510,7 @@
}
},
{
- "id": 13575,
+ "id": 13716,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96168,7 +96519,7 @@
}
},
{
- "id": 13576,
+ "id": 13717,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96177,7 +96528,7 @@
}
},
{
- "id": 13577,
+ "id": 13718,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96186,7 +96537,7 @@
}
},
{
- "id": 13578,
+ "id": 13719,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96195,7 +96546,7 @@
}
},
{
- "id": 13579,
+ "id": 13720,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96204,7 +96555,7 @@
}
},
{
- "id": 13580,
+ "id": 13721,
"properties": {
"facing": "south",
"half": "bottom",
@@ -96213,7 +96564,7 @@
}
},
{
- "id": 13581,
+ "id": 13722,
"properties": {
"facing": "west",
"half": "top",
@@ -96222,7 +96573,7 @@
}
},
{
- "id": 13582,
+ "id": 13723,
"properties": {
"facing": "west",
"half": "top",
@@ -96231,7 +96582,7 @@
}
},
{
- "id": 13583,
+ "id": 13724,
"properties": {
"facing": "west",
"half": "top",
@@ -96240,7 +96591,7 @@
}
},
{
- "id": 13584,
+ "id": 13725,
"properties": {
"facing": "west",
"half": "top",
@@ -96249,7 +96600,7 @@
}
},
{
- "id": 13585,
+ "id": 13726,
"properties": {
"facing": "west",
"half": "top",
@@ -96258,7 +96609,7 @@
}
},
{
- "id": 13586,
+ "id": 13727,
"properties": {
"facing": "west",
"half": "top",
@@ -96267,7 +96618,7 @@
}
},
{
- "id": 13587,
+ "id": 13728,
"properties": {
"facing": "west",
"half": "top",
@@ -96276,7 +96627,7 @@
}
},
{
- "id": 13588,
+ "id": 13729,
"properties": {
"facing": "west",
"half": "top",
@@ -96285,7 +96636,7 @@
}
},
{
- "id": 13589,
+ "id": 13730,
"properties": {
"facing": "west",
"half": "top",
@@ -96294,7 +96645,7 @@
}
},
{
- "id": 13590,
+ "id": 13731,
"properties": {
"facing": "west",
"half": "top",
@@ -96303,7 +96654,7 @@
}
},
{
- "id": 13591,
+ "id": 13732,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96312,7 +96663,7 @@
}
},
{
- "id": 13592,
+ "id": 13733,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96321,7 +96672,7 @@
}
},
{
- "id": 13593,
+ "id": 13734,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96330,7 +96681,7 @@
}
},
{
- "id": 13594,
+ "id": 13735,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96339,7 +96690,7 @@
}
},
{
- "id": 13595,
+ "id": 13736,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96348,7 +96699,7 @@
}
},
{
- "id": 13596,
+ "id": 13737,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96357,7 +96708,7 @@
}
},
{
- "id": 13597,
+ "id": 13738,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96366,7 +96717,7 @@
}
},
{
- "id": 13598,
+ "id": 13739,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96375,7 +96726,7 @@
}
},
{
- "id": 13599,
+ "id": 13740,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96384,7 +96735,7 @@
}
},
{
- "id": 13600,
+ "id": 13741,
"properties": {
"facing": "west",
"half": "bottom",
@@ -96393,7 +96744,7 @@
}
},
{
- "id": 13601,
+ "id": 13742,
"properties": {
"facing": "east",
"half": "top",
@@ -96402,7 +96753,7 @@
}
},
{
- "id": 13602,
+ "id": 13743,
"properties": {
"facing": "east",
"half": "top",
@@ -96411,7 +96762,7 @@
}
},
{
- "id": 13603,
+ "id": 13744,
"properties": {
"facing": "east",
"half": "top",
@@ -96420,7 +96771,7 @@
}
},
{
- "id": 13604,
+ "id": 13745,
"properties": {
"facing": "east",
"half": "top",
@@ -96429,7 +96780,7 @@
}
},
{
- "id": 13605,
+ "id": 13746,
"properties": {
"facing": "east",
"half": "top",
@@ -96438,7 +96789,7 @@
}
},
{
- "id": 13606,
+ "id": 13747,
"properties": {
"facing": "east",
"half": "top",
@@ -96447,7 +96798,7 @@
}
},
{
- "id": 13607,
+ "id": 13748,
"properties": {
"facing": "east",
"half": "top",
@@ -96456,7 +96807,7 @@
}
},
{
- "id": 13608,
+ "id": 13749,
"properties": {
"facing": "east",
"half": "top",
@@ -96465,7 +96816,7 @@
}
},
{
- "id": 13609,
+ "id": 13750,
"properties": {
"facing": "east",
"half": "top",
@@ -96474,7 +96825,7 @@
}
},
{
- "id": 13610,
+ "id": 13751,
"properties": {
"facing": "east",
"half": "top",
@@ -96483,7 +96834,7 @@
}
},
{
- "id": 13611,
+ "id": 13752,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96492,7 +96843,7 @@
}
},
{
- "id": 13612,
+ "id": 13753,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96501,7 +96852,7 @@
}
},
{
- "id": 13613,
+ "id": 13754,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96510,7 +96861,7 @@
}
},
{
- "id": 13614,
+ "id": 13755,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96519,7 +96870,7 @@
}
},
{
- "id": 13615,
+ "id": 13756,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96528,7 +96879,7 @@
}
},
{
- "id": 13616,
+ "id": 13757,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96537,7 +96888,7 @@
}
},
{
- "id": 13617,
+ "id": 13758,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96546,7 +96897,7 @@
}
},
{
- "id": 13618,
+ "id": 13759,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96555,7 +96906,7 @@
}
},
{
- "id": 13619,
+ "id": 13760,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96564,7 +96915,7 @@
}
},
{
- "id": 13620,
+ "id": 13761,
"properties": {
"facing": "east",
"half": "bottom",
@@ -96607,7 +96958,7 @@
},
"states": [
{
- "id": 15315,
+ "id": 15456,
"properties": {
"east": "none",
"north": "none",
@@ -96618,7 +96969,7 @@
}
},
{
- "id": 15316,
+ "id": 15457,
"properties": {
"east": "none",
"north": "none",
@@ -96629,7 +96980,7 @@
}
},
{
- "id": 15317,
+ "id": 15458,
"properties": {
"east": "none",
"north": "none",
@@ -96641,2339 +96992,2339 @@
},
{
"default": true,
- "id": 15318,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15319,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15320,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15321,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15322,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15323,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15324,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15325,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15326,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15327,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15328,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15329,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15330,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15331,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15332,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15333,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15334,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15335,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15336,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15337,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15338,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15339,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15340,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15341,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15342,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15343,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15344,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15345,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15346,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15347,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15348,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15349,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15350,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15351,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15352,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15353,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15354,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15355,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15356,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15357,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15358,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15359,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15360,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15361,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15362,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15363,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15364,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15365,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15366,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15367,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15368,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15369,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15370,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15371,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15372,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15373,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15374,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15375,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15376,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15377,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15378,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15379,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15380,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15381,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15382,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15383,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15384,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15385,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15386,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15387,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15388,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15389,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15390,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15391,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15392,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15393,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15394,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15395,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15396,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15397,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15398,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15399,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15400,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15401,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15402,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15403,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15404,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15405,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15406,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15407,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15408,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15409,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15410,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15411,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15412,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15413,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15414,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15415,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15416,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15417,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15418,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15419,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15420,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15421,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15422,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15423,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15424,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15425,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15426,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15427,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15428,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15429,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15430,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15431,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15432,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15433,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15434,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15435,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15436,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15437,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15438,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15439,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15440,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15441,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15442,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15443,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15444,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15445,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15446,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15447,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15448,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15449,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15450,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15451,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15452,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15453,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15454,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15455,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15456,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15457,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15458,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 15459,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15460,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15461,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15462,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15463,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15464,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15465,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15466,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15467,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15468,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15469,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15470,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15471,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15472,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15473,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15474,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15475,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15476,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15477,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15478,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15479,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15480,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15481,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15482,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15483,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15484,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15485,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15486,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15487,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15488,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15489,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15490,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15491,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15492,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15493,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15494,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15495,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15496,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15497,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15498,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15499,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15500,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15501,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15502,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15503,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15504,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15505,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15506,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15507,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15508,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15509,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15510,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15511,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15512,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15513,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15514,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15515,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15516,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15517,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15518,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15519,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15520,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15521,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15522,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15523,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15524,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15525,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15526,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15527,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15528,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15529,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15530,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15531,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15532,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15533,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15534,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15535,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15536,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15537,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15538,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15539,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15540,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15541,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15542,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15543,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15544,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15545,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15546,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15547,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15548,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15549,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15550,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15551,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15552,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15553,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15554,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15555,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15556,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15557,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15558,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15559,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15560,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15561,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15562,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15563,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15564,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15565,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15566,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15567,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15568,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15569,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15570,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15571,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15572,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15573,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15574,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15575,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15576,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15577,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15578,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15579,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15580,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15581,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15582,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15583,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15584,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15585,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15586,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15587,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15588,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15589,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15590,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15591,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15592,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15593,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15594,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15595,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15596,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15597,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15598,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15599,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15600,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15601,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15602,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15603,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15604,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15605,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15606,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15607,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15608,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15609,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15610,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15611,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15612,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15613,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15614,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15615,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15616,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15617,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15618,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15619,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15620,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15621,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15622,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15623,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15624,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15625,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15626,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15627,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15628,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15629,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15630,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15631,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15632,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15633,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15634,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15635,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15636,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15637,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15638,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15639,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15640,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15641,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15642,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15643,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15644,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15645,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15646,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15647,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15648,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15649,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15650,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15651,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15652,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15653,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15654,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15655,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15656,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15657,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15658,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15659,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15660,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15661,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15662,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15663,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15664,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15665,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15666,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15667,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15668,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15669,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15670,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15671,
"properties": {
"east": "low",
"north": "tall",
@@ -98984,7 +99335,7 @@
}
},
{
- "id": 15531,
+ "id": 15672,
"properties": {
"east": "tall",
"north": "none",
@@ -98995,7 +99346,7 @@
}
},
{
- "id": 15532,
+ "id": 15673,
"properties": {
"east": "tall",
"north": "none",
@@ -99006,7 +99357,7 @@
}
},
{
- "id": 15533,
+ "id": 15674,
"properties": {
"east": "tall",
"north": "none",
@@ -99017,7 +99368,7 @@
}
},
{
- "id": 15534,
+ "id": 15675,
"properties": {
"east": "tall",
"north": "none",
@@ -99028,7 +99379,7 @@
}
},
{
- "id": 15535,
+ "id": 15676,
"properties": {
"east": "tall",
"north": "none",
@@ -99039,7 +99390,7 @@
}
},
{
- "id": 15536,
+ "id": 15677,
"properties": {
"east": "tall",
"north": "none",
@@ -99050,7 +99401,7 @@
}
},
{
- "id": 15537,
+ "id": 15678,
"properties": {
"east": "tall",
"north": "none",
@@ -99061,7 +99412,7 @@
}
},
{
- "id": 15538,
+ "id": 15679,
"properties": {
"east": "tall",
"north": "none",
@@ -99072,7 +99423,7 @@
}
},
{
- "id": 15539,
+ "id": 15680,
"properties": {
"east": "tall",
"north": "none",
@@ -99083,7 +99434,7 @@
}
},
{
- "id": 15540,
+ "id": 15681,
"properties": {
"east": "tall",
"north": "none",
@@ -99094,7 +99445,7 @@
}
},
{
- "id": 15541,
+ "id": 15682,
"properties": {
"east": "tall",
"north": "none",
@@ -99105,7 +99456,7 @@
}
},
{
- "id": 15542,
+ "id": 15683,
"properties": {
"east": "tall",
"north": "none",
@@ -99116,7 +99467,7 @@
}
},
{
- "id": 15543,
+ "id": 15684,
"properties": {
"east": "tall",
"north": "none",
@@ -99127,7 +99478,7 @@
}
},
{
- "id": 15544,
+ "id": 15685,
"properties": {
"east": "tall",
"north": "none",
@@ -99138,7 +99489,7 @@
}
},
{
- "id": 15545,
+ "id": 15686,
"properties": {
"east": "tall",
"north": "none",
@@ -99149,7 +99500,7 @@
}
},
{
- "id": 15546,
+ "id": 15687,
"properties": {
"east": "tall",
"north": "none",
@@ -99160,7 +99511,7 @@
}
},
{
- "id": 15547,
+ "id": 15688,
"properties": {
"east": "tall",
"north": "none",
@@ -99171,7 +99522,7 @@
}
},
{
- "id": 15548,
+ "id": 15689,
"properties": {
"east": "tall",
"north": "none",
@@ -99182,7 +99533,7 @@
}
},
{
- "id": 15549,
+ "id": 15690,
"properties": {
"east": "tall",
"north": "none",
@@ -99193,7 +99544,7 @@
}
},
{
- "id": 15550,
+ "id": 15691,
"properties": {
"east": "tall",
"north": "none",
@@ -99204,7 +99555,7 @@
}
},
{
- "id": 15551,
+ "id": 15692,
"properties": {
"east": "tall",
"north": "none",
@@ -99215,7 +99566,7 @@
}
},
{
- "id": 15552,
+ "id": 15693,
"properties": {
"east": "tall",
"north": "none",
@@ -99226,7 +99577,7 @@
}
},
{
- "id": 15553,
+ "id": 15694,
"properties": {
"east": "tall",
"north": "none",
@@ -99237,7 +99588,7 @@
}
},
{
- "id": 15554,
+ "id": 15695,
"properties": {
"east": "tall",
"north": "none",
@@ -99248,7 +99599,7 @@
}
},
{
- "id": 15555,
+ "id": 15696,
"properties": {
"east": "tall",
"north": "none",
@@ -99259,7 +99610,7 @@
}
},
{
- "id": 15556,
+ "id": 15697,
"properties": {
"east": "tall",
"north": "none",
@@ -99270,7 +99621,7 @@
}
},
{
- "id": 15557,
+ "id": 15698,
"properties": {
"east": "tall",
"north": "none",
@@ -99281,7 +99632,7 @@
}
},
{
- "id": 15558,
+ "id": 15699,
"properties": {
"east": "tall",
"north": "none",
@@ -99292,7 +99643,7 @@
}
},
{
- "id": 15559,
+ "id": 15700,
"properties": {
"east": "tall",
"north": "none",
@@ -99303,7 +99654,7 @@
}
},
{
- "id": 15560,
+ "id": 15701,
"properties": {
"east": "tall",
"north": "none",
@@ -99314,7 +99665,7 @@
}
},
{
- "id": 15561,
+ "id": 15702,
"properties": {
"east": "tall",
"north": "none",
@@ -99325,7 +99676,7 @@
}
},
{
- "id": 15562,
+ "id": 15703,
"properties": {
"east": "tall",
"north": "none",
@@ -99336,7 +99687,7 @@
}
},
{
- "id": 15563,
+ "id": 15704,
"properties": {
"east": "tall",
"north": "none",
@@ -99347,7 +99698,7 @@
}
},
{
- "id": 15564,
+ "id": 15705,
"properties": {
"east": "tall",
"north": "none",
@@ -99358,7 +99709,7 @@
}
},
{
- "id": 15565,
+ "id": 15706,
"properties": {
"east": "tall",
"north": "none",
@@ -99369,7 +99720,7 @@
}
},
{
- "id": 15566,
+ "id": 15707,
"properties": {
"east": "tall",
"north": "none",
@@ -99380,7 +99731,7 @@
}
},
{
- "id": 15567,
+ "id": 15708,
"properties": {
"east": "tall",
"north": "low",
@@ -99391,7 +99742,7 @@
}
},
{
- "id": 15568,
+ "id": 15709,
"properties": {
"east": "tall",
"north": "low",
@@ -99402,7 +99753,7 @@
}
},
{
- "id": 15569,
+ "id": 15710,
"properties": {
"east": "tall",
"north": "low",
@@ -99413,7 +99764,7 @@
}
},
{
- "id": 15570,
+ "id": 15711,
"properties": {
"east": "tall",
"north": "low",
@@ -99424,7 +99775,7 @@
}
},
{
- "id": 15571,
+ "id": 15712,
"properties": {
"east": "tall",
"north": "low",
@@ -99435,7 +99786,7 @@
}
},
{
- "id": 15572,
+ "id": 15713,
"properties": {
"east": "tall",
"north": "low",
@@ -99446,7 +99797,7 @@
}
},
{
- "id": 15573,
+ "id": 15714,
"properties": {
"east": "tall",
"north": "low",
@@ -99457,7 +99808,7 @@
}
},
{
- "id": 15574,
+ "id": 15715,
"properties": {
"east": "tall",
"north": "low",
@@ -99468,7 +99819,7 @@
}
},
{
- "id": 15575,
+ "id": 15716,
"properties": {
"east": "tall",
"north": "low",
@@ -99479,7 +99830,7 @@
}
},
{
- "id": 15576,
+ "id": 15717,
"properties": {
"east": "tall",
"north": "low",
@@ -99490,7 +99841,7 @@
}
},
{
- "id": 15577,
+ "id": 15718,
"properties": {
"east": "tall",
"north": "low",
@@ -99501,7 +99852,7 @@
}
},
{
- "id": 15578,
+ "id": 15719,
"properties": {
"east": "tall",
"north": "low",
@@ -99512,7 +99863,7 @@
}
},
{
- "id": 15579,
+ "id": 15720,
"properties": {
"east": "tall",
"north": "low",
@@ -99523,7 +99874,7 @@
}
},
{
- "id": 15580,
+ "id": 15721,
"properties": {
"east": "tall",
"north": "low",
@@ -99534,7 +99885,7 @@
}
},
{
- "id": 15581,
+ "id": 15722,
"properties": {
"east": "tall",
"north": "low",
@@ -99545,7 +99896,7 @@
}
},
{
- "id": 15582,
+ "id": 15723,
"properties": {
"east": "tall",
"north": "low",
@@ -99556,7 +99907,7 @@
}
},
{
- "id": 15583,
+ "id": 15724,
"properties": {
"east": "tall",
"north": "low",
@@ -99567,7 +99918,7 @@
}
},
{
- "id": 15584,
+ "id": 15725,
"properties": {
"east": "tall",
"north": "low",
@@ -99578,7 +99929,7 @@
}
},
{
- "id": 15585,
+ "id": 15726,
"properties": {
"east": "tall",
"north": "low",
@@ -99589,7 +99940,7 @@
}
},
{
- "id": 15586,
+ "id": 15727,
"properties": {
"east": "tall",
"north": "low",
@@ -99600,7 +99951,7 @@
}
},
{
- "id": 15587,
+ "id": 15728,
"properties": {
"east": "tall",
"north": "low",
@@ -99611,7 +99962,7 @@
}
},
{
- "id": 15588,
+ "id": 15729,
"properties": {
"east": "tall",
"north": "low",
@@ -99622,7 +99973,7 @@
}
},
{
- "id": 15589,
+ "id": 15730,
"properties": {
"east": "tall",
"north": "low",
@@ -99633,7 +99984,7 @@
}
},
{
- "id": 15590,
+ "id": 15731,
"properties": {
"east": "tall",
"north": "low",
@@ -99644,7 +99995,7 @@
}
},
{
- "id": 15591,
+ "id": 15732,
"properties": {
"east": "tall",
"north": "low",
@@ -99655,7 +100006,7 @@
}
},
{
- "id": 15592,
+ "id": 15733,
"properties": {
"east": "tall",
"north": "low",
@@ -99666,7 +100017,7 @@
}
},
{
- "id": 15593,
+ "id": 15734,
"properties": {
"east": "tall",
"north": "low",
@@ -99677,7 +100028,7 @@
}
},
{
- "id": 15594,
+ "id": 15735,
"properties": {
"east": "tall",
"north": "low",
@@ -99688,7 +100039,7 @@
}
},
{
- "id": 15595,
+ "id": 15736,
"properties": {
"east": "tall",
"north": "low",
@@ -99699,7 +100050,7 @@
}
},
{
- "id": 15596,
+ "id": 15737,
"properties": {
"east": "tall",
"north": "low",
@@ -99710,7 +100061,7 @@
}
},
{
- "id": 15597,
+ "id": 15738,
"properties": {
"east": "tall",
"north": "low",
@@ -99721,7 +100072,7 @@
}
},
{
- "id": 15598,
+ "id": 15739,
"properties": {
"east": "tall",
"north": "low",
@@ -99732,7 +100083,7 @@
}
},
{
- "id": 15599,
+ "id": 15740,
"properties": {
"east": "tall",
"north": "low",
@@ -99743,7 +100094,7 @@
}
},
{
- "id": 15600,
+ "id": 15741,
"properties": {
"east": "tall",
"north": "low",
@@ -99754,7 +100105,7 @@
}
},
{
- "id": 15601,
+ "id": 15742,
"properties": {
"east": "tall",
"north": "low",
@@ -99765,7 +100116,7 @@
}
},
{
- "id": 15602,
+ "id": 15743,
"properties": {
"east": "tall",
"north": "low",
@@ -99776,7 +100127,7 @@
}
},
{
- "id": 15603,
+ "id": 15744,
"properties": {
"east": "tall",
"north": "tall",
@@ -99787,7 +100138,7 @@
}
},
{
- "id": 15604,
+ "id": 15745,
"properties": {
"east": "tall",
"north": "tall",
@@ -99798,7 +100149,7 @@
}
},
{
- "id": 15605,
+ "id": 15746,
"properties": {
"east": "tall",
"north": "tall",
@@ -99809,7 +100160,7 @@
}
},
{
- "id": 15606,
+ "id": 15747,
"properties": {
"east": "tall",
"north": "tall",
@@ -99820,7 +100171,7 @@
}
},
{
- "id": 15607,
+ "id": 15748,
"properties": {
"east": "tall",
"north": "tall",
@@ -99831,7 +100182,7 @@
}
},
{
- "id": 15608,
+ "id": 15749,
"properties": {
"east": "tall",
"north": "tall",
@@ -99842,7 +100193,7 @@
}
},
{
- "id": 15609,
+ "id": 15750,
"properties": {
"east": "tall",
"north": "tall",
@@ -99853,7 +100204,7 @@
}
},
{
- "id": 15610,
+ "id": 15751,
"properties": {
"east": "tall",
"north": "tall",
@@ -99864,7 +100215,7 @@
}
},
{
- "id": 15611,
+ "id": 15752,
"properties": {
"east": "tall",
"north": "tall",
@@ -99875,7 +100226,7 @@
}
},
{
- "id": 15612,
+ "id": 15753,
"properties": {
"east": "tall",
"north": "tall",
@@ -99886,7 +100237,7 @@
}
},
{
- "id": 15613,
+ "id": 15754,
"properties": {
"east": "tall",
"north": "tall",
@@ -99897,7 +100248,7 @@
}
},
{
- "id": 15614,
+ "id": 15755,
"properties": {
"east": "tall",
"north": "tall",
@@ -99908,7 +100259,7 @@
}
},
{
- "id": 15615,
+ "id": 15756,
"properties": {
"east": "tall",
"north": "tall",
@@ -99919,7 +100270,7 @@
}
},
{
- "id": 15616,
+ "id": 15757,
"properties": {
"east": "tall",
"north": "tall",
@@ -99930,7 +100281,7 @@
}
},
{
- "id": 15617,
+ "id": 15758,
"properties": {
"east": "tall",
"north": "tall",
@@ -99941,7 +100292,7 @@
}
},
{
- "id": 15618,
+ "id": 15759,
"properties": {
"east": "tall",
"north": "tall",
@@ -99952,7 +100303,7 @@
}
},
{
- "id": 15619,
+ "id": 15760,
"properties": {
"east": "tall",
"north": "tall",
@@ -99963,7 +100314,7 @@
}
},
{
- "id": 15620,
+ "id": 15761,
"properties": {
"east": "tall",
"north": "tall",
@@ -99974,7 +100325,7 @@
}
},
{
- "id": 15621,
+ "id": 15762,
"properties": {
"east": "tall",
"north": "tall",
@@ -99985,7 +100336,7 @@
}
},
{
- "id": 15622,
+ "id": 15763,
"properties": {
"east": "tall",
"north": "tall",
@@ -99996,7 +100347,7 @@
}
},
{
- "id": 15623,
+ "id": 15764,
"properties": {
"east": "tall",
"north": "tall",
@@ -100007,7 +100358,7 @@
}
},
{
- "id": 15624,
+ "id": 15765,
"properties": {
"east": "tall",
"north": "tall",
@@ -100018,7 +100369,7 @@
}
},
{
- "id": 15625,
+ "id": 15766,
"properties": {
"east": "tall",
"north": "tall",
@@ -100029,7 +100380,7 @@
}
},
{
- "id": 15626,
+ "id": 15767,
"properties": {
"east": "tall",
"north": "tall",
@@ -100040,7 +100391,7 @@
}
},
{
- "id": 15627,
+ "id": 15768,
"properties": {
"east": "tall",
"north": "tall",
@@ -100051,7 +100402,7 @@
}
},
{
- "id": 15628,
+ "id": 15769,
"properties": {
"east": "tall",
"north": "tall",
@@ -100062,7 +100413,7 @@
}
},
{
- "id": 15629,
+ "id": 15770,
"properties": {
"east": "tall",
"north": "tall",
@@ -100073,7 +100424,7 @@
}
},
{
- "id": 15630,
+ "id": 15771,
"properties": {
"east": "tall",
"north": "tall",
@@ -100084,7 +100435,7 @@
}
},
{
- "id": 15631,
+ "id": 15772,
"properties": {
"east": "tall",
"north": "tall",
@@ -100095,7 +100446,7 @@
}
},
{
- "id": 15632,
+ "id": 15773,
"properties": {
"east": "tall",
"north": "tall",
@@ -100106,7 +100457,7 @@
}
},
{
- "id": 15633,
+ "id": 15774,
"properties": {
"east": "tall",
"north": "tall",
@@ -100117,7 +100468,7 @@
}
},
{
- "id": 15634,
+ "id": 15775,
"properties": {
"east": "tall",
"north": "tall",
@@ -100128,7 +100479,7 @@
}
},
{
- "id": 15635,
+ "id": 15776,
"properties": {
"east": "tall",
"north": "tall",
@@ -100139,7 +100490,7 @@
}
},
{
- "id": 15636,
+ "id": 15777,
"properties": {
"east": "tall",
"north": "tall",
@@ -100150,7 +100501,7 @@
}
},
{
- "id": 15637,
+ "id": 15778,
"properties": {
"east": "tall",
"north": "tall",
@@ -100161,7 +100512,7 @@
}
},
{
- "id": 15638,
+ "id": 15779,
"properties": {
"east": "tall",
"north": "tall",
@@ -100236,97 +100587,97 @@
"states": [
{
"default": true,
- "id": 10730,
+ "id": 10871,
"properties": {
"rotation": "0"
}
},
{
- "id": 10731,
+ "id": 10872,
"properties": {
"rotation": "1"
}
},
{
- "id": 10732,
+ "id": 10873,
"properties": {
"rotation": "2"
}
},
{
- "id": 10733,
+ "id": 10874,
"properties": {
"rotation": "3"
}
},
{
- "id": 10734,
+ "id": 10875,
"properties": {
"rotation": "4"
}
},
{
- "id": 10735,
+ "id": 10876,
"properties": {
"rotation": "5"
}
},
{
- "id": 10736,
+ "id": 10877,
"properties": {
"rotation": "6"
}
},
{
- "id": 10737,
+ "id": 10878,
"properties": {
"rotation": "7"
}
},
{
- "id": 10738,
+ "id": 10879,
"properties": {
"rotation": "8"
}
},
{
- "id": 10739,
+ "id": 10880,
"properties": {
"rotation": "9"
}
},
{
- "id": 10740,
+ "id": 10881,
"properties": {
"rotation": "10"
}
},
{
- "id": 10741,
+ "id": 10882,
"properties": {
"rotation": "11"
}
},
{
- "id": 10742,
+ "id": 10883,
"properties": {
"rotation": "12"
}
},
{
- "id": 10743,
+ "id": 10884,
"properties": {
"rotation": "13"
}
},
{
- "id": 10744,
+ "id": 10885,
"properties": {
"rotation": "14"
}
},
{
- "id": 10745,
+ "id": 10886,
"properties": {
"rotation": "15"
}
@@ -100501,7 +100852,7 @@
},
"states": [
{
- "id": 20712,
+ "id": 20853,
"properties": {
"candles": "1",
"lit": "true",
@@ -100509,7 +100860,7 @@
}
},
{
- "id": 20713,
+ "id": 20854,
"properties": {
"candles": "1",
"lit": "true",
@@ -100517,7 +100868,7 @@
}
},
{
- "id": 20714,
+ "id": 20855,
"properties": {
"candles": "1",
"lit": "false",
@@ -100526,7 +100877,7 @@
},
{
"default": true,
- "id": 20715,
+ "id": 20856,
"properties": {
"candles": "1",
"lit": "false",
@@ -100534,7 +100885,7 @@
}
},
{
- "id": 20716,
+ "id": 20857,
"properties": {
"candles": "2",
"lit": "true",
@@ -100542,7 +100893,7 @@
}
},
{
- "id": 20717,
+ "id": 20858,
"properties": {
"candles": "2",
"lit": "true",
@@ -100550,7 +100901,7 @@
}
},
{
- "id": 20718,
+ "id": 20859,
"properties": {
"candles": "2",
"lit": "false",
@@ -100558,7 +100909,7 @@
}
},
{
- "id": 20719,
+ "id": 20860,
"properties": {
"candles": "2",
"lit": "false",
@@ -100566,7 +100917,7 @@
}
},
{
- "id": 20720,
+ "id": 20861,
"properties": {
"candles": "3",
"lit": "true",
@@ -100574,7 +100925,7 @@
}
},
{
- "id": 20721,
+ "id": 20862,
"properties": {
"candles": "3",
"lit": "true",
@@ -100582,7 +100933,7 @@
}
},
{
- "id": 20722,
+ "id": 20863,
"properties": {
"candles": "3",
"lit": "false",
@@ -100590,7 +100941,7 @@
}
},
{
- "id": 20723,
+ "id": 20864,
"properties": {
"candles": "3",
"lit": "false",
@@ -100598,7 +100949,7 @@
}
},
{
- "id": 20724,
+ "id": 20865,
"properties": {
"candles": "4",
"lit": "true",
@@ -100606,7 +100957,7 @@
}
},
{
- "id": 20725,
+ "id": 20866,
"properties": {
"candles": "4",
"lit": "true",
@@ -100614,7 +100965,7 @@
}
},
{
- "id": 20726,
+ "id": 20867,
"properties": {
"candles": "4",
"lit": "false",
@@ -100622,7 +100973,7 @@
}
},
{
- "id": 20727,
+ "id": 20868,
"properties": {
"candles": "4",
"lit": "false",
@@ -100640,14 +100991,14 @@
},
"states": [
{
- "id": 20872,
+ "id": 21013,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20873,
+ "id": 21014,
"properties": {
"lit": "false"
}
@@ -100658,7 +101009,7 @@
"states": [
{
"default": true,
- "id": 10594
+ "id": 10735
}
]
},
@@ -100666,7 +101017,7 @@
"states": [
{
"default": true,
- "id": 12594
+ "id": 12735
}
]
},
@@ -100674,7 +101025,7 @@
"states": [
{
"default": true,
- "id": 12610
+ "id": 12751
}
]
},
@@ -100690,25 +101041,25 @@
"states": [
{
"default": true,
- "id": 12551,
+ "id": 12692,
"properties": {
"facing": "north"
}
},
{
- "id": 12552,
+ "id": 12693,
"properties": {
"facing": "south"
}
},
{
- "id": 12553,
+ "id": 12694,
"properties": {
"facing": "west"
}
},
{
- "id": 12554,
+ "id": 12695,
"properties": {
"facing": "east"
}
@@ -100728,38 +101079,38 @@
},
"states": [
{
- "id": 12469,
+ "id": 12610,
"properties": {
"facing": "north"
}
},
{
- "id": 12470,
+ "id": 12611,
"properties": {
"facing": "east"
}
},
{
- "id": 12471,
+ "id": 12612,
"properties": {
"facing": "south"
}
},
{
- "id": 12472,
+ "id": 12613,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12473,
+ "id": 12614,
"properties": {
"facing": "up"
}
},
{
- "id": 12474,
+ "id": 12615,
"properties": {
"facing": "down"
}
@@ -100799,7 +101150,7 @@
},
"states": [
{
- "id": 9456,
+ "id": 9596,
"properties": {
"east": "true",
"north": "true",
@@ -100809,7 +101160,7 @@
}
},
{
- "id": 9457,
+ "id": 9597,
"properties": {
"east": "true",
"north": "true",
@@ -100819,7 +101170,7 @@
}
},
{
- "id": 9458,
+ "id": 9598,
"properties": {
"east": "true",
"north": "true",
@@ -100829,7 +101180,7 @@
}
},
{
- "id": 9459,
+ "id": 9599,
"properties": {
"east": "true",
"north": "true",
@@ -100839,7 +101190,7 @@
}
},
{
- "id": 9460,
+ "id": 9600,
"properties": {
"east": "true",
"north": "true",
@@ -100849,7 +101200,7 @@
}
},
{
- "id": 9461,
+ "id": 9601,
"properties": {
"east": "true",
"north": "true",
@@ -100859,7 +101210,7 @@
}
},
{
- "id": 9462,
+ "id": 9602,
"properties": {
"east": "true",
"north": "true",
@@ -100869,7 +101220,7 @@
}
},
{
- "id": 9463,
+ "id": 9603,
"properties": {
"east": "true",
"north": "true",
@@ -100879,7 +101230,7 @@
}
},
{
- "id": 9464,
+ "id": 9604,
"properties": {
"east": "true",
"north": "false",
@@ -100889,7 +101240,7 @@
}
},
{
- "id": 9465,
+ "id": 9605,
"properties": {
"east": "true",
"north": "false",
@@ -100899,7 +101250,7 @@
}
},
{
- "id": 9466,
+ "id": 9606,
"properties": {
"east": "true",
"north": "false",
@@ -100909,7 +101260,7 @@
}
},
{
- "id": 9467,
+ "id": 9607,
"properties": {
"east": "true",
"north": "false",
@@ -100919,7 +101270,7 @@
}
},
{
- "id": 9468,
+ "id": 9608,
"properties": {
"east": "true",
"north": "false",
@@ -100929,7 +101280,7 @@
}
},
{
- "id": 9469,
+ "id": 9609,
"properties": {
"east": "true",
"north": "false",
@@ -100939,7 +101290,7 @@
}
},
{
- "id": 9470,
+ "id": 9610,
"properties": {
"east": "true",
"north": "false",
@@ -100949,7 +101300,7 @@
}
},
{
- "id": 9471,
+ "id": 9611,
"properties": {
"east": "true",
"north": "false",
@@ -100959,7 +101310,7 @@
}
},
{
- "id": 9472,
+ "id": 9612,
"properties": {
"east": "false",
"north": "true",
@@ -100969,7 +101320,7 @@
}
},
{
- "id": 9473,
+ "id": 9613,
"properties": {
"east": "false",
"north": "true",
@@ -100979,7 +101330,7 @@
}
},
{
- "id": 9474,
+ "id": 9614,
"properties": {
"east": "false",
"north": "true",
@@ -100989,7 +101340,7 @@
}
},
{
- "id": 9475,
+ "id": 9615,
"properties": {
"east": "false",
"north": "true",
@@ -100999,7 +101350,7 @@
}
},
{
- "id": 9476,
+ "id": 9616,
"properties": {
"east": "false",
"north": "true",
@@ -101009,7 +101360,7 @@
}
},
{
- "id": 9477,
+ "id": 9617,
"properties": {
"east": "false",
"north": "true",
@@ -101019,7 +101370,7 @@
}
},
{
- "id": 9478,
+ "id": 9618,
"properties": {
"east": "false",
"north": "true",
@@ -101029,7 +101380,7 @@
}
},
{
- "id": 9479,
+ "id": 9619,
"properties": {
"east": "false",
"north": "true",
@@ -101039,7 +101390,7 @@
}
},
{
- "id": 9480,
+ "id": 9620,
"properties": {
"east": "false",
"north": "false",
@@ -101049,7 +101400,7 @@
}
},
{
- "id": 9481,
+ "id": 9621,
"properties": {
"east": "false",
"north": "false",
@@ -101059,7 +101410,7 @@
}
},
{
- "id": 9482,
+ "id": 9622,
"properties": {
"east": "false",
"north": "false",
@@ -101069,7 +101420,7 @@
}
},
{
- "id": 9483,
+ "id": 9623,
"properties": {
"east": "false",
"north": "false",
@@ -101079,7 +101430,7 @@
}
},
{
- "id": 9484,
+ "id": 9624,
"properties": {
"east": "false",
"north": "false",
@@ -101089,7 +101440,7 @@
}
},
{
- "id": 9485,
+ "id": 9625,
"properties": {
"east": "false",
"north": "false",
@@ -101099,7 +101450,7 @@
}
},
{
- "id": 9486,
+ "id": 9626,
"properties": {
"east": "false",
"north": "false",
@@ -101110,7 +101461,7 @@
},
{
"default": true,
- "id": 9487,
+ "id": 9627,
"properties": {
"east": "false",
"north": "false",
@@ -101125,7 +101476,7 @@
"states": [
{
"default": true,
- "id": 9223
+ "id": 9363
}
]
},
@@ -101141,25 +101492,25 @@
"states": [
{
"default": true,
- "id": 10902,
+ "id": 11043,
"properties": {
"facing": "north"
}
},
{
- "id": 10903,
+ "id": 11044,
"properties": {
"facing": "south"
}
},
{
- "id": 10904,
+ "id": 11045,
"properties": {
"facing": "west"
}
},
{
- "id": 10905,
+ "id": 11046,
"properties": {
"facing": "east"
}
@@ -101198,97 +101549,97 @@
"states": [
{
"default": true,
- "id": 10826,
+ "id": 10967,
"properties": {
"rotation": "0"
}
},
{
- "id": 10827,
+ "id": 10968,
"properties": {
"rotation": "1"
}
},
{
- "id": 10828,
+ "id": 10969,
"properties": {
"rotation": "2"
}
},
{
- "id": 10829,
+ "id": 10970,
"properties": {
"rotation": "3"
}
},
{
- "id": 10830,
+ "id": 10971,
"properties": {
"rotation": "4"
}
},
{
- "id": 10831,
+ "id": 10972,
"properties": {
"rotation": "5"
}
},
{
- "id": 10832,
+ "id": 10973,
"properties": {
"rotation": "6"
}
},
{
- "id": 10833,
+ "id": 10974,
"properties": {
"rotation": "7"
}
},
{
- "id": 10834,
+ "id": 10975,
"properties": {
"rotation": "8"
}
},
{
- "id": 10835,
+ "id": 10976,
"properties": {
"rotation": "9"
}
},
{
- "id": 10836,
+ "id": 10977,
"properties": {
"rotation": "10"
}
},
{
- "id": 10837,
+ "id": 10978,
"properties": {
"rotation": "11"
}
},
{
- "id": 10838,
+ "id": 10979,
"properties": {
"rotation": "12"
}
},
{
- "id": 10839,
+ "id": 10980,
"properties": {
"rotation": "13"
}
},
{
- "id": 10840,
+ "id": 10981,
"properties": {
"rotation": "14"
}
},
{
- "id": 10841,
+ "id": 10982,
"properties": {
"rotation": "15"
}
@@ -101463,7 +101814,7 @@
},
"states": [
{
- "id": 20808,
+ "id": 20949,
"properties": {
"candles": "1",
"lit": "true",
@@ -101471,7 +101822,7 @@
}
},
{
- "id": 20809,
+ "id": 20950,
"properties": {
"candles": "1",
"lit": "true",
@@ -101479,7 +101830,7 @@
}
},
{
- "id": 20810,
+ "id": 20951,
"properties": {
"candles": "1",
"lit": "false",
@@ -101488,7 +101839,7 @@
},
{
"default": true,
- "id": 20811,
+ "id": 20952,
"properties": {
"candles": "1",
"lit": "false",
@@ -101496,7 +101847,7 @@
}
},
{
- "id": 20812,
+ "id": 20953,
"properties": {
"candles": "2",
"lit": "true",
@@ -101504,7 +101855,7 @@
}
},
{
- "id": 20813,
+ "id": 20954,
"properties": {
"candles": "2",
"lit": "true",
@@ -101512,7 +101863,7 @@
}
},
{
- "id": 20814,
+ "id": 20955,
"properties": {
"candles": "2",
"lit": "false",
@@ -101520,7 +101871,7 @@
}
},
{
- "id": 20815,
+ "id": 20956,
"properties": {
"candles": "2",
"lit": "false",
@@ -101528,7 +101879,7 @@
}
},
{
- "id": 20816,
+ "id": 20957,
"properties": {
"candles": "3",
"lit": "true",
@@ -101536,7 +101887,7 @@
}
},
{
- "id": 20817,
+ "id": 20958,
"properties": {
"candles": "3",
"lit": "true",
@@ -101544,7 +101895,7 @@
}
},
{
- "id": 20818,
+ "id": 20959,
"properties": {
"candles": "3",
"lit": "false",
@@ -101552,7 +101903,7 @@
}
},
{
- "id": 20819,
+ "id": 20960,
"properties": {
"candles": "3",
"lit": "false",
@@ -101560,7 +101911,7 @@
}
},
{
- "id": 20820,
+ "id": 20961,
"properties": {
"candles": "4",
"lit": "true",
@@ -101568,7 +101919,7 @@
}
},
{
- "id": 20821,
+ "id": 20962,
"properties": {
"candles": "4",
"lit": "true",
@@ -101576,7 +101927,7 @@
}
},
{
- "id": 20822,
+ "id": 20963,
"properties": {
"candles": "4",
"lit": "false",
@@ -101584,7 +101935,7 @@
}
},
{
- "id": 20823,
+ "id": 20964,
"properties": {
"candles": "4",
"lit": "false",
@@ -101602,14 +101953,14 @@
},
"states": [
{
- "id": 20884,
+ "id": 21025,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20885,
+ "id": 21026,
"properties": {
"lit": "false"
}
@@ -101620,7 +101971,7 @@
"states": [
{
"default": true,
- "id": 10600
+ "id": 10741
}
]
},
@@ -101628,7 +101979,7 @@
"states": [
{
"default": true,
- "id": 12600
+ "id": 12741
}
]
},
@@ -101636,7 +101987,7 @@
"states": [
{
"default": true,
- "id": 12616
+ "id": 12757
}
]
},
@@ -101652,25 +102003,25 @@
"states": [
{
"default": true,
- "id": 12575,
+ "id": 12716,
"properties": {
"facing": "north"
}
},
{
- "id": 12576,
+ "id": 12717,
"properties": {
"facing": "south"
}
},
{
- "id": 12577,
+ "id": 12718,
"properties": {
"facing": "west"
}
},
{
- "id": 12578,
+ "id": 12719,
"properties": {
"facing": "east"
}
@@ -101690,38 +102041,38 @@
},
"states": [
{
- "id": 12505,
+ "id": 12646,
"properties": {
"facing": "north"
}
},
{
- "id": 12506,
+ "id": 12647,
"properties": {
"facing": "east"
}
},
{
- "id": 12507,
+ "id": 12648,
"properties": {
"facing": "south"
}
},
{
- "id": 12508,
+ "id": 12649,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12509,
+ "id": 12650,
"properties": {
"facing": "up"
}
},
{
- "id": 12510,
+ "id": 12651,
"properties": {
"facing": "down"
}
@@ -101761,7 +102112,7 @@
},
"states": [
{
- "id": 9648,
+ "id": 9788,
"properties": {
"east": "true",
"north": "true",
@@ -101771,7 +102122,7 @@
}
},
{
- "id": 9649,
+ "id": 9789,
"properties": {
"east": "true",
"north": "true",
@@ -101781,7 +102132,7 @@
}
},
{
- "id": 9650,
+ "id": 9790,
"properties": {
"east": "true",
"north": "true",
@@ -101791,7 +102142,7 @@
}
},
{
- "id": 9651,
+ "id": 9791,
"properties": {
"east": "true",
"north": "true",
@@ -101801,7 +102152,7 @@
}
},
{
- "id": 9652,
+ "id": 9792,
"properties": {
"east": "true",
"north": "true",
@@ -101811,7 +102162,7 @@
}
},
{
- "id": 9653,
+ "id": 9793,
"properties": {
"east": "true",
"north": "true",
@@ -101821,7 +102172,7 @@
}
},
{
- "id": 9654,
+ "id": 9794,
"properties": {
"east": "true",
"north": "true",
@@ -101831,7 +102182,7 @@
}
},
{
- "id": 9655,
+ "id": 9795,
"properties": {
"east": "true",
"north": "true",
@@ -101841,7 +102192,7 @@
}
},
{
- "id": 9656,
+ "id": 9796,
"properties": {
"east": "true",
"north": "false",
@@ -101851,7 +102202,7 @@
}
},
{
- "id": 9657,
+ "id": 9797,
"properties": {
"east": "true",
"north": "false",
@@ -101861,7 +102212,7 @@
}
},
{
- "id": 9658,
+ "id": 9798,
"properties": {
"east": "true",
"north": "false",
@@ -101871,7 +102222,7 @@
}
},
{
- "id": 9659,
+ "id": 9799,
"properties": {
"east": "true",
"north": "false",
@@ -101881,7 +102232,7 @@
}
},
{
- "id": 9660,
+ "id": 9800,
"properties": {
"east": "true",
"north": "false",
@@ -101891,7 +102242,7 @@
}
},
{
- "id": 9661,
+ "id": 9801,
"properties": {
"east": "true",
"north": "false",
@@ -101901,7 +102252,7 @@
}
},
{
- "id": 9662,
+ "id": 9802,
"properties": {
"east": "true",
"north": "false",
@@ -101911,7 +102262,7 @@
}
},
{
- "id": 9663,
+ "id": 9803,
"properties": {
"east": "true",
"north": "false",
@@ -101921,7 +102272,7 @@
}
},
{
- "id": 9664,
+ "id": 9804,
"properties": {
"east": "false",
"north": "true",
@@ -101931,7 +102282,7 @@
}
},
{
- "id": 9665,
+ "id": 9805,
"properties": {
"east": "false",
"north": "true",
@@ -101941,7 +102292,7 @@
}
},
{
- "id": 9666,
+ "id": 9806,
"properties": {
"east": "false",
"north": "true",
@@ -101951,7 +102302,7 @@
}
},
{
- "id": 9667,
+ "id": 9807,
"properties": {
"east": "false",
"north": "true",
@@ -101961,7 +102312,7 @@
}
},
{
- "id": 9668,
+ "id": 9808,
"properties": {
"east": "false",
"north": "true",
@@ -101971,7 +102322,7 @@
}
},
{
- "id": 9669,
+ "id": 9809,
"properties": {
"east": "false",
"north": "true",
@@ -101981,7 +102332,7 @@
}
},
{
- "id": 9670,
+ "id": 9810,
"properties": {
"east": "false",
"north": "true",
@@ -101991,7 +102342,7 @@
}
},
{
- "id": 9671,
+ "id": 9811,
"properties": {
"east": "false",
"north": "true",
@@ -102001,7 +102352,7 @@
}
},
{
- "id": 9672,
+ "id": 9812,
"properties": {
"east": "false",
"north": "false",
@@ -102011,7 +102362,7 @@
}
},
{
- "id": 9673,
+ "id": 9813,
"properties": {
"east": "false",
"north": "false",
@@ -102021,7 +102372,7 @@
}
},
{
- "id": 9674,
+ "id": 9814,
"properties": {
"east": "false",
"north": "false",
@@ -102031,7 +102382,7 @@
}
},
{
- "id": 9675,
+ "id": 9815,
"properties": {
"east": "false",
"north": "false",
@@ -102041,7 +102392,7 @@
}
},
{
- "id": 9676,
+ "id": 9816,
"properties": {
"east": "false",
"north": "false",
@@ -102051,7 +102402,7 @@
}
},
{
- "id": 9677,
+ "id": 9817,
"properties": {
"east": "false",
"north": "false",
@@ -102061,7 +102412,7 @@
}
},
{
- "id": 9678,
+ "id": 9818,
"properties": {
"east": "false",
"north": "false",
@@ -102072,7 +102423,7 @@
},
{
"default": true,
- "id": 9679,
+ "id": 9819,
"properties": {
"east": "false",
"north": "false",
@@ -102087,7 +102438,7 @@
"states": [
{
"default": true,
- "id": 9229
+ "id": 9369
}
]
},
@@ -102103,25 +102454,25 @@
"states": [
{
"default": true,
- "id": 10926,
+ "id": 11067,
"properties": {
"facing": "north"
}
},
{
- "id": 10927,
+ "id": 11068,
"properties": {
"facing": "south"
}
},
{
- "id": 10928,
+ "id": 11069,
"properties": {
"facing": "west"
}
},
{
- "id": 10929,
+ "id": 11070,
"properties": {
"facing": "east"
}
@@ -102152,28 +102503,28 @@
},
"states": [
{
- "id": 18297,
+ "id": 18438,
"properties": {
"face": "floor",
"facing": "north"
}
},
{
- "id": 18298,
+ "id": 18439,
"properties": {
"face": "floor",
"facing": "south"
}
},
{
- "id": 18299,
+ "id": 18440,
"properties": {
"face": "floor",
"facing": "west"
}
},
{
- "id": 18300,
+ "id": 18441,
"properties": {
"face": "floor",
"facing": "east"
@@ -102181,56 +102532,56 @@
},
{
"default": true,
- "id": 18301,
+ "id": 18442,
"properties": {
"face": "wall",
"facing": "north"
}
},
{
- "id": 18302,
+ "id": 18443,
"properties": {
"face": "wall",
"facing": "south"
}
},
{
- "id": 18303,
+ "id": 18444,
"properties": {
"face": "wall",
"facing": "west"
}
},
{
- "id": 18304,
+ "id": 18445,
"properties": {
"face": "wall",
"facing": "east"
}
},
{
- "id": 18305,
+ "id": 18446,
"properties": {
"face": "ceiling",
"facing": "north"
}
},
{
- "id": 18306,
+ "id": 18447,
"properties": {
"face": "ceiling",
"facing": "south"
}
},
{
- "id": 18307,
+ "id": 18448,
"properties": {
"face": "ceiling",
"facing": "west"
}
},
{
- "id": 18308,
+ "id": 18449,
"properties": {
"face": "ceiling",
"facing": "east"
@@ -102247,14 +102598,14 @@
},
"states": [
{
- "id": 22445,
+ "id": 22586,
"properties": {
"waterlogged": "true"
}
},
{
"default": true,
- "id": 22446,
+ "id": 22587,
"properties": {
"waterlogged": "false"
}
@@ -102271,20 +102622,20 @@
},
"states": [
{
- "id": 10584,
+ "id": 10725,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 10585,
+ "id": 10726,
"properties": {
"axis": "y"
}
},
{
- "id": 10586,
+ "id": 10727,
"properties": {
"axis": "z"
}
@@ -102315,97 +102666,97 @@
"states": [
{
"default": true,
- "id": 9019,
+ "id": 9159,
"properties": {
"power": "0"
}
},
{
- "id": 9020,
+ "id": 9160,
"properties": {
"power": "1"
}
},
{
- "id": 9021,
+ "id": 9161,
"properties": {
"power": "2"
}
},
{
- "id": 9022,
+ "id": 9162,
"properties": {
"power": "3"
}
},
{
- "id": 9023,
+ "id": 9163,
"properties": {
"power": "4"
}
},
{
- "id": 9024,
+ "id": 9164,
"properties": {
"power": "5"
}
},
{
- "id": 9025,
+ "id": 9165,
"properties": {
"power": "6"
}
},
{
- "id": 9026,
+ "id": 9166,
"properties": {
"power": "7"
}
},
{
- "id": 9027,
+ "id": 9167,
"properties": {
"power": "8"
}
},
{
- "id": 9028,
+ "id": 9168,
"properties": {
"power": "9"
}
},
{
- "id": 9029,
+ "id": 9169,
"properties": {
"power": "10"
}
},
{
- "id": 9030,
+ "id": 9170,
"properties": {
"power": "11"
}
},
{
- "id": 9031,
+ "id": 9171,
"properties": {
"power": "12"
}
},
{
- "id": 9032,
+ "id": 9172,
"properties": {
"power": "13"
}
},
{
- "id": 9033,
+ "id": 9173,
"properties": {
"power": "14"
}
},
{
- "id": 9034,
+ "id": 9174,
"properties": {
"power": "15"
}
@@ -102416,7 +102767,7 @@
"states": [
{
"default": true,
- "id": 19304
+ "id": 19445
}
]
},
@@ -102424,7 +102775,7 @@
"states": [
{
"default": true,
- "id": 19305
+ "id": 19446
}
]
},
@@ -102445,70 +102796,70 @@
"states": [
{
"default": true,
- "id": 9085,
+ "id": 9225,
"properties": {
"enabled": "true",
"facing": "down"
}
},
{
- "id": 9086,
+ "id": 9226,
"properties": {
"enabled": "true",
"facing": "north"
}
},
{
- "id": 9087,
+ "id": 9227,
"properties": {
"enabled": "true",
"facing": "south"
}
},
{
- "id": 9088,
+ "id": 9228,
"properties": {
"enabled": "true",
"facing": "west"
}
},
{
- "id": 9089,
+ "id": 9229,
"properties": {
"enabled": "true",
"facing": "east"
}
},
{
- "id": 9090,
+ "id": 9230,
"properties": {
"enabled": "false",
"facing": "down"
}
},
{
- "id": 9091,
+ "id": 9231,
"properties": {
"enabled": "false",
"facing": "north"
}
},
{
- "id": 9092,
+ "id": 9232,
"properties": {
"enabled": "false",
"facing": "south"
}
},
{
- "id": 9093,
+ "id": 9233,
"properties": {
"enabled": "false",
"facing": "west"
}
},
{
- "id": 9094,
+ "id": 9234,
"properties": {
"enabled": "false",
"facing": "east"
@@ -102526,13 +102877,13 @@
"states": [
{
"default": true,
- "id": 12690,
+ "id": 12831,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12691,
+ "id": 12832,
"properties": {
"waterlogged": "false"
}
@@ -102543,7 +102894,7 @@
"states": [
{
"default": true,
- "id": 12671
+ "id": 12812
}
]
},
@@ -102557,13 +102908,13 @@
"states": [
{
"default": true,
- "id": 12710,
+ "id": 12851,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12711,
+ "id": 12852,
"properties": {
"waterlogged": "false"
}
@@ -102586,56 +102937,56 @@
"states": [
{
"default": true,
- "id": 12784,
+ "id": 12925,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12785,
+ "id": 12926,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12786,
+ "id": 12927,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12787,
+ "id": 12928,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12788,
+ "id": 12929,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12789,
+ "id": 12930,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12790,
+ "id": 12931,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12791,
+ "id": 12932,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -102685,20 +103036,20 @@
},
"states": [
{
- "id": 24099,
+ "id": 24240,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 24100,
+ "id": 24241,
"properties": {
"axis": "y"
}
},
{
- "id": 24101,
+ "id": 24242,
"properties": {
"axis": "z"
}
@@ -103788,7 +104139,7 @@
},
"states": [
{
- "id": 10258,
+ "id": 10399,
"properties": {
"facing": "north",
"half": "top",
@@ -103798,7 +104149,7 @@
}
},
{
- "id": 10259,
+ "id": 10400,
"properties": {
"facing": "north",
"half": "top",
@@ -103808,7 +104159,7 @@
}
},
{
- "id": 10260,
+ "id": 10401,
"properties": {
"facing": "north",
"half": "top",
@@ -103818,7 +104169,7 @@
}
},
{
- "id": 10261,
+ "id": 10402,
"properties": {
"facing": "north",
"half": "top",
@@ -103828,7 +104179,7 @@
}
},
{
- "id": 10262,
+ "id": 10403,
"properties": {
"facing": "north",
"half": "top",
@@ -103838,7 +104189,7 @@
}
},
{
- "id": 10263,
+ "id": 10404,
"properties": {
"facing": "north",
"half": "top",
@@ -103848,7 +104199,7 @@
}
},
{
- "id": 10264,
+ "id": 10405,
"properties": {
"facing": "north",
"half": "top",
@@ -103858,7 +104209,7 @@
}
},
{
- "id": 10265,
+ "id": 10406,
"properties": {
"facing": "north",
"half": "top",
@@ -103868,7 +104219,7 @@
}
},
{
- "id": 10266,
+ "id": 10407,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103878,7 +104229,7 @@
}
},
{
- "id": 10267,
+ "id": 10408,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103888,7 +104239,7 @@
}
},
{
- "id": 10268,
+ "id": 10409,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103898,7 +104249,7 @@
}
},
{
- "id": 10269,
+ "id": 10410,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103908,7 +104259,7 @@
}
},
{
- "id": 10270,
+ "id": 10411,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103918,7 +104269,7 @@
}
},
{
- "id": 10271,
+ "id": 10412,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103928,7 +104279,7 @@
}
},
{
- "id": 10272,
+ "id": 10413,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103939,7 +104290,7 @@
},
{
"default": true,
- "id": 10273,
+ "id": 10414,
"properties": {
"facing": "north",
"half": "bottom",
@@ -103949,7 +104300,7 @@
}
},
{
- "id": 10274,
+ "id": 10415,
"properties": {
"facing": "south",
"half": "top",
@@ -103959,7 +104310,7 @@
}
},
{
- "id": 10275,
+ "id": 10416,
"properties": {
"facing": "south",
"half": "top",
@@ -103969,7 +104320,7 @@
}
},
{
- "id": 10276,
+ "id": 10417,
"properties": {
"facing": "south",
"half": "top",
@@ -103979,7 +104330,7 @@
}
},
{
- "id": 10277,
+ "id": 10418,
"properties": {
"facing": "south",
"half": "top",
@@ -103989,7 +104340,7 @@
}
},
{
- "id": 10278,
+ "id": 10419,
"properties": {
"facing": "south",
"half": "top",
@@ -103999,7 +104350,7 @@
}
},
{
- "id": 10279,
+ "id": 10420,
"properties": {
"facing": "south",
"half": "top",
@@ -104009,7 +104360,7 @@
}
},
{
- "id": 10280,
+ "id": 10421,
"properties": {
"facing": "south",
"half": "top",
@@ -104019,7 +104370,7 @@
}
},
{
- "id": 10281,
+ "id": 10422,
"properties": {
"facing": "south",
"half": "top",
@@ -104029,7 +104380,7 @@
}
},
{
- "id": 10282,
+ "id": 10423,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104039,7 +104390,7 @@
}
},
{
- "id": 10283,
+ "id": 10424,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104049,7 +104400,7 @@
}
},
{
- "id": 10284,
+ "id": 10425,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104059,7 +104410,7 @@
}
},
{
- "id": 10285,
+ "id": 10426,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104069,7 +104420,7 @@
}
},
{
- "id": 10286,
+ "id": 10427,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104079,7 +104430,7 @@
}
},
{
- "id": 10287,
+ "id": 10428,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104089,7 +104440,7 @@
}
},
{
- "id": 10288,
+ "id": 10429,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104099,7 +104450,7 @@
}
},
{
- "id": 10289,
+ "id": 10430,
"properties": {
"facing": "south",
"half": "bottom",
@@ -104109,7 +104460,7 @@
}
},
{
- "id": 10290,
+ "id": 10431,
"properties": {
"facing": "west",
"half": "top",
@@ -104119,7 +104470,7 @@
}
},
{
- "id": 10291,
+ "id": 10432,
"properties": {
"facing": "west",
"half": "top",
@@ -104129,7 +104480,7 @@
}
},
{
- "id": 10292,
+ "id": 10433,
"properties": {
"facing": "west",
"half": "top",
@@ -104139,7 +104490,7 @@
}
},
{
- "id": 10293,
+ "id": 10434,
"properties": {
"facing": "west",
"half": "top",
@@ -104149,7 +104500,7 @@
}
},
{
- "id": 10294,
+ "id": 10435,
"properties": {
"facing": "west",
"half": "top",
@@ -104159,7 +104510,7 @@
}
},
{
- "id": 10295,
+ "id": 10436,
"properties": {
"facing": "west",
"half": "top",
@@ -104169,7 +104520,7 @@
}
},
{
- "id": 10296,
+ "id": 10437,
"properties": {
"facing": "west",
"half": "top",
@@ -104179,7 +104530,7 @@
}
},
{
- "id": 10297,
+ "id": 10438,
"properties": {
"facing": "west",
"half": "top",
@@ -104189,7 +104540,7 @@
}
},
{
- "id": 10298,
+ "id": 10439,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104199,7 +104550,7 @@
}
},
{
- "id": 10299,
+ "id": 10440,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104209,7 +104560,7 @@
}
},
{
- "id": 10300,
+ "id": 10441,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104219,7 +104570,7 @@
}
},
{
- "id": 10301,
+ "id": 10442,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104229,7 +104580,7 @@
}
},
{
- "id": 10302,
+ "id": 10443,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104239,7 +104590,7 @@
}
},
{
- "id": 10303,
+ "id": 10444,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104249,7 +104600,7 @@
}
},
{
- "id": 10304,
+ "id": 10445,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104259,7 +104610,7 @@
}
},
{
- "id": 10305,
+ "id": 10446,
"properties": {
"facing": "west",
"half": "bottom",
@@ -104269,7 +104620,7 @@
}
},
{
- "id": 10306,
+ "id": 10447,
"properties": {
"facing": "east",
"half": "top",
@@ -104279,7 +104630,7 @@
}
},
{
- "id": 10307,
+ "id": 10448,
"properties": {
"facing": "east",
"half": "top",
@@ -104289,7 +104640,7 @@
}
},
{
- "id": 10308,
+ "id": 10449,
"properties": {
"facing": "east",
"half": "top",
@@ -104299,7 +104650,7 @@
}
},
{
- "id": 10309,
+ "id": 10450,
"properties": {
"facing": "east",
"half": "top",
@@ -104309,7 +104660,7 @@
}
},
{
- "id": 10310,
+ "id": 10451,
"properties": {
"facing": "east",
"half": "top",
@@ -104319,7 +104670,7 @@
}
},
{
- "id": 10311,
+ "id": 10452,
"properties": {
"facing": "east",
"half": "top",
@@ -104329,7 +104680,7 @@
}
},
{
- "id": 10312,
+ "id": 10453,
"properties": {
"facing": "east",
"half": "top",
@@ -104339,7 +104690,7 @@
}
},
{
- "id": 10313,
+ "id": 10454,
"properties": {
"facing": "east",
"half": "top",
@@ -104349,7 +104700,7 @@
}
},
{
- "id": 10314,
+ "id": 10455,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104359,7 +104710,7 @@
}
},
{
- "id": 10315,
+ "id": 10456,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104369,7 +104720,7 @@
}
},
{
- "id": 10316,
+ "id": 10457,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104379,7 +104730,7 @@
}
},
{
- "id": 10317,
+ "id": 10458,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104389,7 +104740,7 @@
}
},
{
- "id": 10318,
+ "id": 10459,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104399,7 +104750,7 @@
}
},
{
- "id": 10319,
+ "id": 10460,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104409,7 +104760,7 @@
}
},
{
- "id": 10320,
+ "id": 10461,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104419,7 +104770,7 @@
}
},
{
- "id": 10321,
+ "id": 10462,
"properties": {
"facing": "east",
"half": "bottom",
@@ -104486,74 +104837,74 @@
},
"states": [
{
- "id": 19219,
+ "id": 19360,
"properties": {
"orientation": "down_east"
}
},
{
- "id": 19220,
+ "id": 19361,
"properties": {
"orientation": "down_north"
}
},
{
- "id": 19221,
+ "id": 19362,
"properties": {
"orientation": "down_south"
}
},
{
- "id": 19222,
+ "id": 19363,
"properties": {
"orientation": "down_west"
}
},
{
- "id": 19223,
+ "id": 19364,
"properties": {
"orientation": "up_east"
}
},
{
- "id": 19224,
+ "id": 19365,
"properties": {
"orientation": "up_north"
}
},
{
- "id": 19225,
+ "id": 19366,
"properties": {
"orientation": "up_south"
}
},
{
- "id": 19226,
+ "id": 19367,
"properties": {
"orientation": "up_west"
}
},
{
- "id": 19227,
+ "id": 19368,
"properties": {
"orientation": "west_up"
}
},
{
- "id": 19228,
+ "id": 19369,
"properties": {
"orientation": "east_up"
}
},
{
"default": true,
- "id": 19229,
+ "id": 19370,
"properties": {
"orientation": "north_up"
}
},
{
- "id": 19230,
+ "id": 19371,
"properties": {
"orientation": "south_up"
}
@@ -104824,7 +105175,7 @@
},
"states": [
{
- "id": 11809,
+ "id": 11950,
"properties": {
"facing": "north",
"half": "upper",
@@ -104834,7 +105185,7 @@
}
},
{
- "id": 11810,
+ "id": 11951,
"properties": {
"facing": "north",
"half": "upper",
@@ -104844,7 +105195,7 @@
}
},
{
- "id": 11811,
+ "id": 11952,
"properties": {
"facing": "north",
"half": "upper",
@@ -104854,7 +105205,7 @@
}
},
{
- "id": 11812,
+ "id": 11953,
"properties": {
"facing": "north",
"half": "upper",
@@ -104864,7 +105215,7 @@
}
},
{
- "id": 11813,
+ "id": 11954,
"properties": {
"facing": "north",
"half": "upper",
@@ -104874,7 +105225,7 @@
}
},
{
- "id": 11814,
+ "id": 11955,
"properties": {
"facing": "north",
"half": "upper",
@@ -104884,7 +105235,7 @@
}
},
{
- "id": 11815,
+ "id": 11956,
"properties": {
"facing": "north",
"half": "upper",
@@ -104894,7 +105245,7 @@
}
},
{
- "id": 11816,
+ "id": 11957,
"properties": {
"facing": "north",
"half": "upper",
@@ -104904,7 +105255,7 @@
}
},
{
- "id": 11817,
+ "id": 11958,
"properties": {
"facing": "north",
"half": "lower",
@@ -104914,7 +105265,7 @@
}
},
{
- "id": 11818,
+ "id": 11959,
"properties": {
"facing": "north",
"half": "lower",
@@ -104924,7 +105275,7 @@
}
},
{
- "id": 11819,
+ "id": 11960,
"properties": {
"facing": "north",
"half": "lower",
@@ -104935,7 +105286,7 @@
},
{
"default": true,
- "id": 11820,
+ "id": 11961,
"properties": {
"facing": "north",
"half": "lower",
@@ -104945,7 +105296,7 @@
}
},
{
- "id": 11821,
+ "id": 11962,
"properties": {
"facing": "north",
"half": "lower",
@@ -104955,7 +105306,7 @@
}
},
{
- "id": 11822,
+ "id": 11963,
"properties": {
"facing": "north",
"half": "lower",
@@ -104965,7 +105316,7 @@
}
},
{
- "id": 11823,
+ "id": 11964,
"properties": {
"facing": "north",
"half": "lower",
@@ -104975,7 +105326,7 @@
}
},
{
- "id": 11824,
+ "id": 11965,
"properties": {
"facing": "north",
"half": "lower",
@@ -104985,7 +105336,7 @@
}
},
{
- "id": 11825,
+ "id": 11966,
"properties": {
"facing": "south",
"half": "upper",
@@ -104995,7 +105346,7 @@
}
},
{
- "id": 11826,
+ "id": 11967,
"properties": {
"facing": "south",
"half": "upper",
@@ -105005,7 +105356,7 @@
}
},
{
- "id": 11827,
+ "id": 11968,
"properties": {
"facing": "south",
"half": "upper",
@@ -105015,7 +105366,7 @@
}
},
{
- "id": 11828,
+ "id": 11969,
"properties": {
"facing": "south",
"half": "upper",
@@ -105025,7 +105376,7 @@
}
},
{
- "id": 11829,
+ "id": 11970,
"properties": {
"facing": "south",
"half": "upper",
@@ -105035,7 +105386,7 @@
}
},
{
- "id": 11830,
+ "id": 11971,
"properties": {
"facing": "south",
"half": "upper",
@@ -105045,7 +105396,7 @@
}
},
{
- "id": 11831,
+ "id": 11972,
"properties": {
"facing": "south",
"half": "upper",
@@ -105055,7 +105406,7 @@
}
},
{
- "id": 11832,
+ "id": 11973,
"properties": {
"facing": "south",
"half": "upper",
@@ -105065,7 +105416,7 @@
}
},
{
- "id": 11833,
+ "id": 11974,
"properties": {
"facing": "south",
"half": "lower",
@@ -105075,7 +105426,7 @@
}
},
{
- "id": 11834,
+ "id": 11975,
"properties": {
"facing": "south",
"half": "lower",
@@ -105085,7 +105436,7 @@
}
},
{
- "id": 11835,
+ "id": 11976,
"properties": {
"facing": "south",
"half": "lower",
@@ -105095,7 +105446,7 @@
}
},
{
- "id": 11836,
+ "id": 11977,
"properties": {
"facing": "south",
"half": "lower",
@@ -105105,7 +105456,7 @@
}
},
{
- "id": 11837,
+ "id": 11978,
"properties": {
"facing": "south",
"half": "lower",
@@ -105115,7 +105466,7 @@
}
},
{
- "id": 11838,
+ "id": 11979,
"properties": {
"facing": "south",
"half": "lower",
@@ -105125,7 +105476,7 @@
}
},
{
- "id": 11839,
+ "id": 11980,
"properties": {
"facing": "south",
"half": "lower",
@@ -105135,7 +105486,7 @@
}
},
{
- "id": 11840,
+ "id": 11981,
"properties": {
"facing": "south",
"half": "lower",
@@ -105145,7 +105496,7 @@
}
},
{
- "id": 11841,
+ "id": 11982,
"properties": {
"facing": "west",
"half": "upper",
@@ -105155,7 +105506,7 @@
}
},
{
- "id": 11842,
+ "id": 11983,
"properties": {
"facing": "west",
"half": "upper",
@@ -105165,7 +105516,7 @@
}
},
{
- "id": 11843,
+ "id": 11984,
"properties": {
"facing": "west",
"half": "upper",
@@ -105175,7 +105526,7 @@
}
},
{
- "id": 11844,
+ "id": 11985,
"properties": {
"facing": "west",
"half": "upper",
@@ -105185,7 +105536,7 @@
}
},
{
- "id": 11845,
+ "id": 11986,
"properties": {
"facing": "west",
"half": "upper",
@@ -105195,7 +105546,7 @@
}
},
{
- "id": 11846,
+ "id": 11987,
"properties": {
"facing": "west",
"half": "upper",
@@ -105205,7 +105556,7 @@
}
},
{
- "id": 11847,
+ "id": 11988,
"properties": {
"facing": "west",
"half": "upper",
@@ -105215,7 +105566,7 @@
}
},
{
- "id": 11848,
+ "id": 11989,
"properties": {
"facing": "west",
"half": "upper",
@@ -105225,7 +105576,7 @@
}
},
{
- "id": 11849,
+ "id": 11990,
"properties": {
"facing": "west",
"half": "lower",
@@ -105235,7 +105586,7 @@
}
},
{
- "id": 11850,
+ "id": 11991,
"properties": {
"facing": "west",
"half": "lower",
@@ -105245,7 +105596,7 @@
}
},
{
- "id": 11851,
+ "id": 11992,
"properties": {
"facing": "west",
"half": "lower",
@@ -105255,7 +105606,7 @@
}
},
{
- "id": 11852,
+ "id": 11993,
"properties": {
"facing": "west",
"half": "lower",
@@ -105265,7 +105616,7 @@
}
},
{
- "id": 11853,
+ "id": 11994,
"properties": {
"facing": "west",
"half": "lower",
@@ -105275,7 +105626,7 @@
}
},
{
- "id": 11854,
+ "id": 11995,
"properties": {
"facing": "west",
"half": "lower",
@@ -105285,7 +105636,7 @@
}
},
{
- "id": 11855,
+ "id": 11996,
"properties": {
"facing": "west",
"half": "lower",
@@ -105295,7 +105646,7 @@
}
},
{
- "id": 11856,
+ "id": 11997,
"properties": {
"facing": "west",
"half": "lower",
@@ -105305,7 +105656,7 @@
}
},
{
- "id": 11857,
+ "id": 11998,
"properties": {
"facing": "east",
"half": "upper",
@@ -105315,7 +105666,7 @@
}
},
{
- "id": 11858,
+ "id": 11999,
"properties": {
"facing": "east",
"half": "upper",
@@ -105325,7 +105676,7 @@
}
},
{
- "id": 11859,
+ "id": 12000,
"properties": {
"facing": "east",
"half": "upper",
@@ -105335,7 +105686,7 @@
}
},
{
- "id": 11860,
+ "id": 12001,
"properties": {
"facing": "east",
"half": "upper",
@@ -105345,7 +105696,7 @@
}
},
{
- "id": 11861,
+ "id": 12002,
"properties": {
"facing": "east",
"half": "upper",
@@ -105355,7 +105706,7 @@
}
},
{
- "id": 11862,
+ "id": 12003,
"properties": {
"facing": "east",
"half": "upper",
@@ -105365,7 +105716,7 @@
}
},
{
- "id": 11863,
+ "id": 12004,
"properties": {
"facing": "east",
"half": "upper",
@@ -105375,7 +105726,7 @@
}
},
{
- "id": 11864,
+ "id": 12005,
"properties": {
"facing": "east",
"half": "upper",
@@ -105385,7 +105736,7 @@
}
},
{
- "id": 11865,
+ "id": 12006,
"properties": {
"facing": "east",
"half": "lower",
@@ -105395,7 +105746,7 @@
}
},
{
- "id": 11866,
+ "id": 12007,
"properties": {
"facing": "east",
"half": "lower",
@@ -105405,7 +105756,7 @@
}
},
{
- "id": 11867,
+ "id": 12008,
"properties": {
"facing": "east",
"half": "lower",
@@ -105415,7 +105766,7 @@
}
},
{
- "id": 11868,
+ "id": 12009,
"properties": {
"facing": "east",
"half": "lower",
@@ -105425,7 +105776,7 @@
}
},
{
- "id": 11869,
+ "id": 12010,
"properties": {
"facing": "east",
"half": "lower",
@@ -105435,7 +105786,7 @@
}
},
{
- "id": 11870,
+ "id": 12011,
"properties": {
"facing": "east",
"half": "lower",
@@ -105445,7 +105796,7 @@
}
},
{
- "id": 11871,
+ "id": 12012,
"properties": {
"facing": "east",
"half": "lower",
@@ -105455,7 +105806,7 @@
}
},
{
- "id": 11872,
+ "id": 12013,
"properties": {
"facing": "east",
"half": "lower",
@@ -105491,7 +105842,7 @@
},
"states": [
{
- "id": 11489,
+ "id": 11630,
"properties": {
"east": "true",
"north": "true",
@@ -105501,7 +105852,7 @@
}
},
{
- "id": 11490,
+ "id": 11631,
"properties": {
"east": "true",
"north": "true",
@@ -105511,7 +105862,7 @@
}
},
{
- "id": 11491,
+ "id": 11632,
"properties": {
"east": "true",
"north": "true",
@@ -105521,7 +105872,7 @@
}
},
{
- "id": 11492,
+ "id": 11633,
"properties": {
"east": "true",
"north": "true",
@@ -105531,7 +105882,7 @@
}
},
{
- "id": 11493,
+ "id": 11634,
"properties": {
"east": "true",
"north": "true",
@@ -105541,7 +105892,7 @@
}
},
{
- "id": 11494,
+ "id": 11635,
"properties": {
"east": "true",
"north": "true",
@@ -105551,7 +105902,7 @@
}
},
{
- "id": 11495,
+ "id": 11636,
"properties": {
"east": "true",
"north": "true",
@@ -105561,7 +105912,7 @@
}
},
{
- "id": 11496,
+ "id": 11637,
"properties": {
"east": "true",
"north": "true",
@@ -105571,7 +105922,7 @@
}
},
{
- "id": 11497,
+ "id": 11638,
"properties": {
"east": "true",
"north": "false",
@@ -105581,7 +105932,7 @@
}
},
{
- "id": 11498,
+ "id": 11639,
"properties": {
"east": "true",
"north": "false",
@@ -105591,7 +105942,7 @@
}
},
{
- "id": 11499,
+ "id": 11640,
"properties": {
"east": "true",
"north": "false",
@@ -105601,7 +105952,7 @@
}
},
{
- "id": 11500,
+ "id": 11641,
"properties": {
"east": "true",
"north": "false",
@@ -105611,7 +105962,7 @@
}
},
{
- "id": 11501,
+ "id": 11642,
"properties": {
"east": "true",
"north": "false",
@@ -105621,7 +105972,7 @@
}
},
{
- "id": 11502,
+ "id": 11643,
"properties": {
"east": "true",
"north": "false",
@@ -105631,7 +105982,7 @@
}
},
{
- "id": 11503,
+ "id": 11644,
"properties": {
"east": "true",
"north": "false",
@@ -105641,7 +105992,7 @@
}
},
{
- "id": 11504,
+ "id": 11645,
"properties": {
"east": "true",
"north": "false",
@@ -105651,7 +106002,7 @@
}
},
{
- "id": 11505,
+ "id": 11646,
"properties": {
"east": "false",
"north": "true",
@@ -105661,7 +106012,7 @@
}
},
{
- "id": 11506,
+ "id": 11647,
"properties": {
"east": "false",
"north": "true",
@@ -105671,7 +106022,7 @@
}
},
{
- "id": 11507,
+ "id": 11648,
"properties": {
"east": "false",
"north": "true",
@@ -105681,7 +106032,7 @@
}
},
{
- "id": 11508,
+ "id": 11649,
"properties": {
"east": "false",
"north": "true",
@@ -105691,7 +106042,7 @@
}
},
{
- "id": 11509,
+ "id": 11650,
"properties": {
"east": "false",
"north": "true",
@@ -105701,7 +106052,7 @@
}
},
{
- "id": 11510,
+ "id": 11651,
"properties": {
"east": "false",
"north": "true",
@@ -105711,7 +106062,7 @@
}
},
{
- "id": 11511,
+ "id": 11652,
"properties": {
"east": "false",
"north": "true",
@@ -105721,7 +106072,7 @@
}
},
{
- "id": 11512,
+ "id": 11653,
"properties": {
"east": "false",
"north": "true",
@@ -105731,7 +106082,7 @@
}
},
{
- "id": 11513,
+ "id": 11654,
"properties": {
"east": "false",
"north": "false",
@@ -105741,7 +106092,7 @@
}
},
{
- "id": 11514,
+ "id": 11655,
"properties": {
"east": "false",
"north": "false",
@@ -105751,7 +106102,7 @@
}
},
{
- "id": 11515,
+ "id": 11656,
"properties": {
"east": "false",
"north": "false",
@@ -105761,7 +106112,7 @@
}
},
{
- "id": 11516,
+ "id": 11657,
"properties": {
"east": "false",
"north": "false",
@@ -105771,7 +106122,7 @@
}
},
{
- "id": 11517,
+ "id": 11658,
"properties": {
"east": "false",
"north": "false",
@@ -105781,7 +106132,7 @@
}
},
{
- "id": 11518,
+ "id": 11659,
"properties": {
"east": "false",
"north": "false",
@@ -105791,7 +106142,7 @@
}
},
{
- "id": 11519,
+ "id": 11660,
"properties": {
"east": "false",
"north": "false",
@@ -105802,7 +106153,7 @@
},
{
"default": true,
- "id": 11520,
+ "id": 11661,
"properties": {
"east": "false",
"north": "false",
@@ -105836,7 +106187,7 @@
},
"states": [
{
- "id": 11233,
+ "id": 11374,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -105845,7 +106196,7 @@
}
},
{
- "id": 11234,
+ "id": 11375,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -105854,7 +106205,7 @@
}
},
{
- "id": 11235,
+ "id": 11376,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -105863,7 +106214,7 @@
}
},
{
- "id": 11236,
+ "id": 11377,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -105872,7 +106223,7 @@
}
},
{
- "id": 11237,
+ "id": 11378,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -105881,7 +106232,7 @@
}
},
{
- "id": 11238,
+ "id": 11379,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -105890,7 +106241,7 @@
}
},
{
- "id": 11239,
+ "id": 11380,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -105900,7 +106251,7 @@
},
{
"default": true,
- "id": 11240,
+ "id": 11381,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -105909,7 +106260,7 @@
}
},
{
- "id": 11241,
+ "id": 11382,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -105918,7 +106269,7 @@
}
},
{
- "id": 11242,
+ "id": 11383,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -105927,7 +106278,7 @@
}
},
{
- "id": 11243,
+ "id": 11384,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -105936,7 +106287,7 @@
}
},
{
- "id": 11244,
+ "id": 11385,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -105945,7 +106296,7 @@
}
},
{
- "id": 11245,
+ "id": 11386,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -105954,7 +106305,7 @@
}
},
{
- "id": 11246,
+ "id": 11387,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -105963,7 +106314,7 @@
}
},
{
- "id": 11247,
+ "id": 11388,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -105972,7 +106323,7 @@
}
},
{
- "id": 11248,
+ "id": 11389,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -105981,7 +106332,7 @@
}
},
{
- "id": 11249,
+ "id": 11390,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -105990,7 +106341,7 @@
}
},
{
- "id": 11250,
+ "id": 11391,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -105999,7 +106350,7 @@
}
},
{
- "id": 11251,
+ "id": 11392,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -106008,7 +106359,7 @@
}
},
{
- "id": 11252,
+ "id": 11393,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -106017,7 +106368,7 @@
}
},
{
- "id": 11253,
+ "id": 11394,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -106026,7 +106377,7 @@
}
},
{
- "id": 11254,
+ "id": 11395,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -106035,7 +106386,7 @@
}
},
{
- "id": 11255,
+ "id": 11396,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -106044,7 +106395,7 @@
}
},
{
- "id": 11256,
+ "id": 11397,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -106053,7 +106404,7 @@
}
},
{
- "id": 11257,
+ "id": 11398,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -106062,7 +106413,7 @@
}
},
{
- "id": 11258,
+ "id": 11399,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -106071,7 +106422,7 @@
}
},
{
- "id": 11259,
+ "id": 11400,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -106080,7 +106431,7 @@
}
},
{
- "id": 11260,
+ "id": 11401,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -106089,7 +106440,7 @@
}
},
{
- "id": 11261,
+ "id": 11402,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -106098,7 +106449,7 @@
}
},
{
- "id": 11262,
+ "id": 11403,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -106107,7 +106458,7 @@
}
},
{
- "id": 11263,
+ "id": 11404,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -106116,7 +106467,7 @@
}
},
{
- "id": 11264,
+ "id": 11405,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -107270,21 +107621,21 @@
},
"states": [
{
- "id": 11039,
+ "id": 11180,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11040,
+ "id": 11181,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11041,
+ "id": 11182,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -107292,21 +107643,21 @@
},
{
"default": true,
- "id": 11042,
+ "id": 11183,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11043,
+ "id": 11184,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11044,
+ "id": 11185,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -108941,157 +109292,157 @@
"states": [
{
"default": true,
- "id": 12619,
+ "id": 12760,
"properties": {
"age": "0"
}
},
{
- "id": 12620,
+ "id": 12761,
"properties": {
"age": "1"
}
},
{
- "id": 12621,
+ "id": 12762,
"properties": {
"age": "2"
}
},
{
- "id": 12622,
+ "id": 12763,
"properties": {
"age": "3"
}
},
{
- "id": 12623,
+ "id": 12764,
"properties": {
"age": "4"
}
},
{
- "id": 12624,
+ "id": 12765,
"properties": {
"age": "5"
}
},
{
- "id": 12625,
+ "id": 12766,
"properties": {
"age": "6"
}
},
{
- "id": 12626,
+ "id": 12767,
"properties": {
"age": "7"
}
},
{
- "id": 12627,
+ "id": 12768,
"properties": {
"age": "8"
}
},
{
- "id": 12628,
+ "id": 12769,
"properties": {
"age": "9"
}
},
{
- "id": 12629,
+ "id": 12770,
"properties": {
"age": "10"
}
},
{
- "id": 12630,
+ "id": 12771,
"properties": {
"age": "11"
}
},
{
- "id": 12631,
+ "id": 12772,
"properties": {
"age": "12"
}
},
{
- "id": 12632,
+ "id": 12773,
"properties": {
"age": "13"
}
},
{
- "id": 12633,
+ "id": 12774,
"properties": {
"age": "14"
}
},
{
- "id": 12634,
+ "id": 12775,
"properties": {
"age": "15"
}
},
{
- "id": 12635,
+ "id": 12776,
"properties": {
"age": "16"
}
},
{
- "id": 12636,
+ "id": 12777,
"properties": {
"age": "17"
}
},
{
- "id": 12637,
+ "id": 12778,
"properties": {
"age": "18"
}
},
{
- "id": 12638,
+ "id": 12779,
"properties": {
"age": "19"
}
},
{
- "id": 12639,
+ "id": 12780,
"properties": {
"age": "20"
}
},
{
- "id": 12640,
+ "id": 12781,
"properties": {
"age": "21"
}
},
{
- "id": 12641,
+ "id": 12782,
"properties": {
"age": "22"
}
},
{
- "id": 12642,
+ "id": 12783,
"properties": {
"age": "23"
}
},
{
- "id": 12643,
+ "id": 12784,
"properties": {
"age": "24"
}
},
{
- "id": 12644,
+ "id": 12785,
"properties": {
"age": "25"
}
@@ -109102,7 +109453,7 @@
"states": [
{
"default": true,
- "id": 12645
+ "id": 12786
}
]
},
@@ -109192,21 +109543,21 @@
},
"states": [
{
- "id": 18362,
+ "id": 18503,
"properties": {
"hanging": "true",
"waterlogged": "true"
}
},
{
- "id": 18363,
+ "id": 18504,
"properties": {
"hanging": "true",
"waterlogged": "false"
}
},
{
- "id": 18364,
+ "id": 18505,
"properties": {
"hanging": "false",
"waterlogged": "true"
@@ -109214,7 +109565,7 @@
},
{
"default": true,
- "id": 18365,
+ "id": 18506,
"properties": {
"hanging": "false",
"waterlogged": "false"
@@ -109255,63 +109606,63 @@
},
"states": [
{
- "id": 20904,
+ "id": 21045,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20905,
+ "id": 21046,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20906,
+ "id": 21047,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20907,
+ "id": 21048,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20908,
+ "id": 21049,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20909,
+ "id": 21050,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20910,
+ "id": 21051,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20911,
+ "id": 21052,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20912,
+ "id": 21053,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -109319,21 +109670,21 @@
},
{
"default": true,
- "id": 20913,
+ "id": 21054,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20914,
+ "id": 21055,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20915,
+ "id": 21056,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -109350,14 +109701,14 @@
},
"states": [
{
- "id": 10616,
+ "id": 10757,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10617,
+ "id": 10758,
"properties": {
"half": "lower"
}
@@ -109512,7 +109863,7 @@
},
"states": [
{
- "id": 18309,
+ "id": 18450,
"properties": {
"facing": "north",
"has_book": "true",
@@ -109520,7 +109871,7 @@
}
},
{
- "id": 18310,
+ "id": 18451,
"properties": {
"facing": "north",
"has_book": "true",
@@ -109528,7 +109879,7 @@
}
},
{
- "id": 18311,
+ "id": 18452,
"properties": {
"facing": "north",
"has_book": "false",
@@ -109537,7 +109888,7 @@
},
{
"default": true,
- "id": 18312,
+ "id": 18453,
"properties": {
"facing": "north",
"has_book": "false",
@@ -109545,7 +109896,7 @@
}
},
{
- "id": 18313,
+ "id": 18454,
"properties": {
"facing": "south",
"has_book": "true",
@@ -109553,7 +109904,7 @@
}
},
{
- "id": 18314,
+ "id": 18455,
"properties": {
"facing": "south",
"has_book": "true",
@@ -109561,7 +109912,7 @@
}
},
{
- "id": 18315,
+ "id": 18456,
"properties": {
"facing": "south",
"has_book": "false",
@@ -109569,7 +109920,7 @@
}
},
{
- "id": 18316,
+ "id": 18457,
"properties": {
"facing": "south",
"has_book": "false",
@@ -109577,7 +109928,7 @@
}
},
{
- "id": 18317,
+ "id": 18458,
"properties": {
"facing": "west",
"has_book": "true",
@@ -109585,7 +109936,7 @@
}
},
{
- "id": 18318,
+ "id": 18459,
"properties": {
"facing": "west",
"has_book": "true",
@@ -109593,7 +109944,7 @@
}
},
{
- "id": 18319,
+ "id": 18460,
"properties": {
"facing": "west",
"has_book": "false",
@@ -109601,7 +109952,7 @@
}
},
{
- "id": 18320,
+ "id": 18461,
"properties": {
"facing": "west",
"has_book": "false",
@@ -109609,7 +109960,7 @@
}
},
{
- "id": 18321,
+ "id": 18462,
"properties": {
"facing": "east",
"has_book": "true",
@@ -109617,7 +109968,7 @@
}
},
{
- "id": 18322,
+ "id": 18463,
"properties": {
"facing": "east",
"has_book": "true",
@@ -109625,7 +109976,7 @@
}
},
{
- "id": 18323,
+ "id": 18464,
"properties": {
"facing": "east",
"has_book": "false",
@@ -109633,7 +109984,7 @@
}
},
{
- "id": 18324,
+ "id": 18465,
"properties": {
"facing": "east",
"has_book": "false",
@@ -109883,217 +110234,217 @@
},
"states": [
{
- "id": 10226,
+ "id": 10367,
"properties": {
"level": "0",
"waterlogged": "true"
}
},
{
- "id": 10227,
+ "id": 10368,
"properties": {
"level": "0",
"waterlogged": "false"
}
},
{
- "id": 10228,
+ "id": 10369,
"properties": {
"level": "1",
"waterlogged": "true"
}
},
{
- "id": 10229,
+ "id": 10370,
"properties": {
"level": "1",
"waterlogged": "false"
}
},
{
- "id": 10230,
+ "id": 10371,
"properties": {
"level": "2",
"waterlogged": "true"
}
},
{
- "id": 10231,
+ "id": 10372,
"properties": {
"level": "2",
"waterlogged": "false"
}
},
{
- "id": 10232,
+ "id": 10373,
"properties": {
"level": "3",
"waterlogged": "true"
}
},
{
- "id": 10233,
+ "id": 10374,
"properties": {
"level": "3",
"waterlogged": "false"
}
},
{
- "id": 10234,
+ "id": 10375,
"properties": {
"level": "4",
"waterlogged": "true"
}
},
{
- "id": 10235,
+ "id": 10376,
"properties": {
"level": "4",
"waterlogged": "false"
}
},
{
- "id": 10236,
+ "id": 10377,
"properties": {
"level": "5",
"waterlogged": "true"
}
},
{
- "id": 10237,
+ "id": 10378,
"properties": {
"level": "5",
"waterlogged": "false"
}
},
{
- "id": 10238,
+ "id": 10379,
"properties": {
"level": "6",
"waterlogged": "true"
}
},
{
- "id": 10239,
+ "id": 10380,
"properties": {
"level": "6",
"waterlogged": "false"
}
},
{
- "id": 10240,
+ "id": 10381,
"properties": {
"level": "7",
"waterlogged": "true"
}
},
{
- "id": 10241,
+ "id": 10382,
"properties": {
"level": "7",
"waterlogged": "false"
}
},
{
- "id": 10242,
+ "id": 10383,
"properties": {
"level": "8",
"waterlogged": "true"
}
},
{
- "id": 10243,
+ "id": 10384,
"properties": {
"level": "8",
"waterlogged": "false"
}
},
{
- "id": 10244,
+ "id": 10385,
"properties": {
"level": "9",
"waterlogged": "true"
}
},
{
- "id": 10245,
+ "id": 10386,
"properties": {
"level": "9",
"waterlogged": "false"
}
},
{
- "id": 10246,
+ "id": 10387,
"properties": {
"level": "10",
"waterlogged": "true"
}
},
{
- "id": 10247,
+ "id": 10388,
"properties": {
"level": "10",
"waterlogged": "false"
}
},
{
- "id": 10248,
+ "id": 10389,
"properties": {
"level": "11",
"waterlogged": "true"
}
},
{
- "id": 10249,
+ "id": 10390,
"properties": {
"level": "11",
"waterlogged": "false"
}
},
{
- "id": 10250,
+ "id": 10391,
"properties": {
"level": "12",
"waterlogged": "true"
}
},
{
- "id": 10251,
+ "id": 10392,
"properties": {
"level": "12",
"waterlogged": "false"
}
},
{
- "id": 10252,
+ "id": 10393,
"properties": {
"level": "13",
"waterlogged": "true"
}
},
{
- "id": 10253,
+ "id": 10394,
"properties": {
"level": "13",
"waterlogged": "false"
}
},
{
- "id": 10254,
+ "id": 10395,
"properties": {
"level": "14",
"waterlogged": "true"
}
},
{
- "id": 10255,
+ "id": 10396,
"properties": {
"level": "14",
"waterlogged": "false"
}
},
{
- "id": 10256,
+ "id": 10397,
"properties": {
"level": "15",
"waterlogged": "true"
@@ -110101,7 +110452,7 @@
},
{
"default": true,
- "id": 10257,
+ "id": 10398,
"properties": {
"level": "15",
"waterlogged": "false"
@@ -110133,97 +110484,97 @@
"states": [
{
"default": true,
- "id": 10666,
+ "id": 10807,
"properties": {
"rotation": "0"
}
},
{
- "id": 10667,
+ "id": 10808,
"properties": {
"rotation": "1"
}
},
{
- "id": 10668,
+ "id": 10809,
"properties": {
"rotation": "2"
}
},
{
- "id": 10669,
+ "id": 10810,
"properties": {
"rotation": "3"
}
},
{
- "id": 10670,
+ "id": 10811,
"properties": {
"rotation": "4"
}
},
{
- "id": 10671,
+ "id": 10812,
"properties": {
"rotation": "5"
}
},
{
- "id": 10672,
+ "id": 10813,
"properties": {
"rotation": "6"
}
},
{
- "id": 10673,
+ "id": 10814,
"properties": {
"rotation": "7"
}
},
{
- "id": 10674,
+ "id": 10815,
"properties": {
"rotation": "8"
}
},
{
- "id": 10675,
+ "id": 10816,
"properties": {
"rotation": "9"
}
},
{
- "id": 10676,
+ "id": 10817,
"properties": {
"rotation": "10"
}
},
{
- "id": 10677,
+ "id": 10818,
"properties": {
"rotation": "11"
}
},
{
- "id": 10678,
+ "id": 10819,
"properties": {
"rotation": "12"
}
},
{
- "id": 10679,
+ "id": 10820,
"properties": {
"rotation": "13"
}
},
{
- "id": 10680,
+ "id": 10821,
"properties": {
"rotation": "14"
}
},
{
- "id": 10681,
+ "id": 10822,
"properties": {
"rotation": "15"
}
@@ -110398,7 +110749,7 @@
},
"states": [
{
- "id": 20648,
+ "id": 20789,
"properties": {
"candles": "1",
"lit": "true",
@@ -110406,7 +110757,7 @@
}
},
{
- "id": 20649,
+ "id": 20790,
"properties": {
"candles": "1",
"lit": "true",
@@ -110414,7 +110765,7 @@
}
},
{
- "id": 20650,
+ "id": 20791,
"properties": {
"candles": "1",
"lit": "false",
@@ -110423,7 +110774,7 @@
},
{
"default": true,
- "id": 20651,
+ "id": 20792,
"properties": {
"candles": "1",
"lit": "false",
@@ -110431,7 +110782,7 @@
}
},
{
- "id": 20652,
+ "id": 20793,
"properties": {
"candles": "2",
"lit": "true",
@@ -110439,7 +110790,7 @@
}
},
{
- "id": 20653,
+ "id": 20794,
"properties": {
"candles": "2",
"lit": "true",
@@ -110447,7 +110798,7 @@
}
},
{
- "id": 20654,
+ "id": 20795,
"properties": {
"candles": "2",
"lit": "false",
@@ -110455,7 +110806,7 @@
}
},
{
- "id": 20655,
+ "id": 20796,
"properties": {
"candles": "2",
"lit": "false",
@@ -110463,7 +110814,7 @@
}
},
{
- "id": 20656,
+ "id": 20797,
"properties": {
"candles": "3",
"lit": "true",
@@ -110471,7 +110822,7 @@
}
},
{
- "id": 20657,
+ "id": 20798,
"properties": {
"candles": "3",
"lit": "true",
@@ -110479,7 +110830,7 @@
}
},
{
- "id": 20658,
+ "id": 20799,
"properties": {
"candles": "3",
"lit": "false",
@@ -110487,7 +110838,7 @@
}
},
{
- "id": 20659,
+ "id": 20800,
"properties": {
"candles": "3",
"lit": "false",
@@ -110495,7 +110846,7 @@
}
},
{
- "id": 20660,
+ "id": 20801,
"properties": {
"candles": "4",
"lit": "true",
@@ -110503,7 +110854,7 @@
}
},
{
- "id": 20661,
+ "id": 20802,
"properties": {
"candles": "4",
"lit": "true",
@@ -110511,7 +110862,7 @@
}
},
{
- "id": 20662,
+ "id": 20803,
"properties": {
"candles": "4",
"lit": "false",
@@ -110519,7 +110870,7 @@
}
},
{
- "id": 20663,
+ "id": 20804,
"properties": {
"candles": "4",
"lit": "false",
@@ -110537,14 +110888,14 @@
},
"states": [
{
- "id": 20864,
+ "id": 21005,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20865,
+ "id": 21006,
"properties": {
"lit": "false"
}
@@ -110555,7 +110906,7 @@
"states": [
{
"default": true,
- "id": 10590
+ "id": 10731
}
]
},
@@ -110563,7 +110914,7 @@
"states": [
{
"default": true,
- "id": 12590
+ "id": 12731
}
]
},
@@ -110571,7 +110922,7 @@
"states": [
{
"default": true,
- "id": 12606
+ "id": 12747
}
]
},
@@ -110587,25 +110938,25 @@
"states": [
{
"default": true,
- "id": 12535,
+ "id": 12676,
"properties": {
"facing": "north"
}
},
{
- "id": 12536,
+ "id": 12677,
"properties": {
"facing": "south"
}
},
{
- "id": 12537,
+ "id": 12678,
"properties": {
"facing": "west"
}
},
{
- "id": 12538,
+ "id": 12679,
"properties": {
"facing": "east"
}
@@ -110625,38 +110976,38 @@
},
"states": [
{
- "id": 12445,
+ "id": 12586,
"properties": {
"facing": "north"
}
},
{
- "id": 12446,
+ "id": 12587,
"properties": {
"facing": "east"
}
},
{
- "id": 12447,
+ "id": 12588,
"properties": {
"facing": "south"
}
},
{
- "id": 12448,
+ "id": 12589,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12449,
+ "id": 12590,
"properties": {
"facing": "up"
}
},
{
- "id": 12450,
+ "id": 12591,
"properties": {
"facing": "down"
}
@@ -110696,7 +111047,7 @@
},
"states": [
{
- "id": 9328,
+ "id": 9468,
"properties": {
"east": "true",
"north": "true",
@@ -110706,7 +111057,7 @@
}
},
{
- "id": 9329,
+ "id": 9469,
"properties": {
"east": "true",
"north": "true",
@@ -110716,7 +111067,7 @@
}
},
{
- "id": 9330,
+ "id": 9470,
"properties": {
"east": "true",
"north": "true",
@@ -110726,7 +111077,7 @@
}
},
{
- "id": 9331,
+ "id": 9471,
"properties": {
"east": "true",
"north": "true",
@@ -110736,7 +111087,7 @@
}
},
{
- "id": 9332,
+ "id": 9472,
"properties": {
"east": "true",
"north": "true",
@@ -110746,7 +111097,7 @@
}
},
{
- "id": 9333,
+ "id": 9473,
"properties": {
"east": "true",
"north": "true",
@@ -110756,7 +111107,7 @@
}
},
{
- "id": 9334,
+ "id": 9474,
"properties": {
"east": "true",
"north": "true",
@@ -110766,7 +111117,7 @@
}
},
{
- "id": 9335,
+ "id": 9475,
"properties": {
"east": "true",
"north": "true",
@@ -110776,7 +111127,7 @@
}
},
{
- "id": 9336,
+ "id": 9476,
"properties": {
"east": "true",
"north": "false",
@@ -110786,7 +111137,7 @@
}
},
{
- "id": 9337,
+ "id": 9477,
"properties": {
"east": "true",
"north": "false",
@@ -110796,7 +111147,7 @@
}
},
{
- "id": 9338,
+ "id": 9478,
"properties": {
"east": "true",
"north": "false",
@@ -110806,7 +111157,7 @@
}
},
{
- "id": 9339,
+ "id": 9479,
"properties": {
"east": "true",
"north": "false",
@@ -110816,7 +111167,7 @@
}
},
{
- "id": 9340,
+ "id": 9480,
"properties": {
"east": "true",
"north": "false",
@@ -110826,7 +111177,7 @@
}
},
{
- "id": 9341,
+ "id": 9481,
"properties": {
"east": "true",
"north": "false",
@@ -110836,7 +111187,7 @@
}
},
{
- "id": 9342,
+ "id": 9482,
"properties": {
"east": "true",
"north": "false",
@@ -110846,7 +111197,7 @@
}
},
{
- "id": 9343,
+ "id": 9483,
"properties": {
"east": "true",
"north": "false",
@@ -110856,7 +111207,7 @@
}
},
{
- "id": 9344,
+ "id": 9484,
"properties": {
"east": "false",
"north": "true",
@@ -110866,7 +111217,7 @@
}
},
{
- "id": 9345,
+ "id": 9485,
"properties": {
"east": "false",
"north": "true",
@@ -110876,7 +111227,7 @@
}
},
{
- "id": 9346,
+ "id": 9486,
"properties": {
"east": "false",
"north": "true",
@@ -110886,7 +111237,7 @@
}
},
{
- "id": 9347,
+ "id": 9487,
"properties": {
"east": "false",
"north": "true",
@@ -110896,7 +111247,7 @@
}
},
{
- "id": 9348,
+ "id": 9488,
"properties": {
"east": "false",
"north": "true",
@@ -110906,7 +111257,7 @@
}
},
{
- "id": 9349,
+ "id": 9489,
"properties": {
"east": "false",
"north": "true",
@@ -110916,7 +111267,7 @@
}
},
{
- "id": 9350,
+ "id": 9490,
"properties": {
"east": "false",
"north": "true",
@@ -110926,7 +111277,7 @@
}
},
{
- "id": 9351,
+ "id": 9491,
"properties": {
"east": "false",
"north": "true",
@@ -110936,7 +111287,7 @@
}
},
{
- "id": 9352,
+ "id": 9492,
"properties": {
"east": "false",
"north": "false",
@@ -110946,7 +111297,7 @@
}
},
{
- "id": 9353,
+ "id": 9493,
"properties": {
"east": "false",
"north": "false",
@@ -110956,7 +111307,7 @@
}
},
{
- "id": 9354,
+ "id": 9494,
"properties": {
"east": "false",
"north": "false",
@@ -110966,7 +111317,7 @@
}
},
{
- "id": 9355,
+ "id": 9495,
"properties": {
"east": "false",
"north": "false",
@@ -110976,7 +111327,7 @@
}
},
{
- "id": 9356,
+ "id": 9496,
"properties": {
"east": "false",
"north": "false",
@@ -110986,7 +111337,7 @@
}
},
{
- "id": 9357,
+ "id": 9497,
"properties": {
"east": "false",
"north": "false",
@@ -110996,7 +111347,7 @@
}
},
{
- "id": 9358,
+ "id": 9498,
"properties": {
"east": "false",
"north": "false",
@@ -111007,7 +111358,7 @@
},
{
"default": true,
- "id": 9359,
+ "id": 9499,
"properties": {
"east": "false",
"north": "false",
@@ -111022,7 +111373,7 @@
"states": [
{
"default": true,
- "id": 9219
+ "id": 9359
}
]
},
@@ -111038,25 +111389,25 @@
"states": [
{
"default": true,
- "id": 10886,
+ "id": 11027,
"properties": {
"facing": "north"
}
},
{
- "id": 10887,
+ "id": 11028,
"properties": {
"facing": "south"
}
},
{
- "id": 10888,
+ "id": 11029,
"properties": {
"facing": "west"
}
},
{
- "id": 10889,
+ "id": 11030,
"properties": {
"facing": "east"
}
@@ -111095,97 +111446,97 @@
"states": [
{
"default": true,
- "id": 10746,
+ "id": 10887,
"properties": {
"rotation": "0"
}
},
{
- "id": 10747,
+ "id": 10888,
"properties": {
"rotation": "1"
}
},
{
- "id": 10748,
+ "id": 10889,
"properties": {
"rotation": "2"
}
},
{
- "id": 10749,
+ "id": 10890,
"properties": {
"rotation": "3"
}
},
{
- "id": 10750,
+ "id": 10891,
"properties": {
"rotation": "4"
}
},
{
- "id": 10751,
+ "id": 10892,
"properties": {
"rotation": "5"
}
},
{
- "id": 10752,
+ "id": 10893,
"properties": {
"rotation": "6"
}
},
{
- "id": 10753,
+ "id": 10894,
"properties": {
"rotation": "7"
}
},
{
- "id": 10754,
+ "id": 10895,
"properties": {
"rotation": "8"
}
},
{
- "id": 10755,
+ "id": 10896,
"properties": {
"rotation": "9"
}
},
{
- "id": 10756,
+ "id": 10897,
"properties": {
"rotation": "10"
}
},
{
- "id": 10757,
+ "id": 10898,
"properties": {
"rotation": "11"
}
},
{
- "id": 10758,
+ "id": 10899,
"properties": {
"rotation": "12"
}
},
{
- "id": 10759,
+ "id": 10900,
"properties": {
"rotation": "13"
}
},
{
- "id": 10760,
+ "id": 10901,
"properties": {
"rotation": "14"
}
},
{
- "id": 10761,
+ "id": 10902,
"properties": {
"rotation": "15"
}
@@ -111360,7 +111711,7 @@
},
"states": [
{
- "id": 20728,
+ "id": 20869,
"properties": {
"candles": "1",
"lit": "true",
@@ -111368,7 +111719,7 @@
}
},
{
- "id": 20729,
+ "id": 20870,
"properties": {
"candles": "1",
"lit": "true",
@@ -111376,7 +111727,7 @@
}
},
{
- "id": 20730,
+ "id": 20871,
"properties": {
"candles": "1",
"lit": "false",
@@ -111385,7 +111736,7 @@
},
{
"default": true,
- "id": 20731,
+ "id": 20872,
"properties": {
"candles": "1",
"lit": "false",
@@ -111393,7 +111744,7 @@
}
},
{
- "id": 20732,
+ "id": 20873,
"properties": {
"candles": "2",
"lit": "true",
@@ -111401,7 +111752,7 @@
}
},
{
- "id": 20733,
+ "id": 20874,
"properties": {
"candles": "2",
"lit": "true",
@@ -111409,7 +111760,7 @@
}
},
{
- "id": 20734,
+ "id": 20875,
"properties": {
"candles": "2",
"lit": "false",
@@ -111417,7 +111768,7 @@
}
},
{
- "id": 20735,
+ "id": 20876,
"properties": {
"candles": "2",
"lit": "false",
@@ -111425,7 +111776,7 @@
}
},
{
- "id": 20736,
+ "id": 20877,
"properties": {
"candles": "3",
"lit": "true",
@@ -111433,7 +111784,7 @@
}
},
{
- "id": 20737,
+ "id": 20878,
"properties": {
"candles": "3",
"lit": "true",
@@ -111441,7 +111792,7 @@
}
},
{
- "id": 20738,
+ "id": 20879,
"properties": {
"candles": "3",
"lit": "false",
@@ -111449,7 +111800,7 @@
}
},
{
- "id": 20739,
+ "id": 20880,
"properties": {
"candles": "3",
"lit": "false",
@@ -111457,7 +111808,7 @@
}
},
{
- "id": 20740,
+ "id": 20881,
"properties": {
"candles": "4",
"lit": "true",
@@ -111465,7 +111816,7 @@
}
},
{
- "id": 20741,
+ "id": 20882,
"properties": {
"candles": "4",
"lit": "true",
@@ -111473,7 +111824,7 @@
}
},
{
- "id": 20742,
+ "id": 20883,
"properties": {
"candles": "4",
"lit": "false",
@@ -111481,7 +111832,7 @@
}
},
{
- "id": 20743,
+ "id": 20884,
"properties": {
"candles": "4",
"lit": "false",
@@ -111499,14 +111850,14 @@
},
"states": [
{
- "id": 20874,
+ "id": 21015,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20875,
+ "id": 21016,
"properties": {
"lit": "false"
}
@@ -111517,7 +111868,7 @@
"states": [
{
"default": true,
- "id": 10595
+ "id": 10736
}
]
},
@@ -111525,7 +111876,7 @@
"states": [
{
"default": true,
- "id": 12595
+ "id": 12736
}
]
},
@@ -111533,7 +111884,7 @@
"states": [
{
"default": true,
- "id": 12611
+ "id": 12752
}
]
},
@@ -111549,25 +111900,25 @@
"states": [
{
"default": true,
- "id": 12555,
+ "id": 12696,
"properties": {
"facing": "north"
}
},
{
- "id": 12556,
+ "id": 12697,
"properties": {
"facing": "south"
}
},
{
- "id": 12557,
+ "id": 12698,
"properties": {
"facing": "west"
}
},
{
- "id": 12558,
+ "id": 12699,
"properties": {
"facing": "east"
}
@@ -111587,38 +111938,38 @@
},
"states": [
{
- "id": 12475,
+ "id": 12616,
"properties": {
"facing": "north"
}
},
{
- "id": 12476,
+ "id": 12617,
"properties": {
"facing": "east"
}
},
{
- "id": 12477,
+ "id": 12618,
"properties": {
"facing": "south"
}
},
{
- "id": 12478,
+ "id": 12619,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12479,
+ "id": 12620,
"properties": {
"facing": "up"
}
},
{
- "id": 12480,
+ "id": 12621,
"properties": {
"facing": "down"
}
@@ -111658,7 +112009,7 @@
},
"states": [
{
- "id": 9488,
+ "id": 9628,
"properties": {
"east": "true",
"north": "true",
@@ -111668,7 +112019,7 @@
}
},
{
- "id": 9489,
+ "id": 9629,
"properties": {
"east": "true",
"north": "true",
@@ -111678,7 +112029,7 @@
}
},
{
- "id": 9490,
+ "id": 9630,
"properties": {
"east": "true",
"north": "true",
@@ -111688,7 +112039,7 @@
}
},
{
- "id": 9491,
+ "id": 9631,
"properties": {
"east": "true",
"north": "true",
@@ -111698,7 +112049,7 @@
}
},
{
- "id": 9492,
+ "id": 9632,
"properties": {
"east": "true",
"north": "true",
@@ -111708,7 +112059,7 @@
}
},
{
- "id": 9493,
+ "id": 9633,
"properties": {
"east": "true",
"north": "true",
@@ -111718,7 +112069,7 @@
}
},
{
- "id": 9494,
+ "id": 9634,
"properties": {
"east": "true",
"north": "true",
@@ -111728,7 +112079,7 @@
}
},
{
- "id": 9495,
+ "id": 9635,
"properties": {
"east": "true",
"north": "true",
@@ -111738,7 +112089,7 @@
}
},
{
- "id": 9496,
+ "id": 9636,
"properties": {
"east": "true",
"north": "false",
@@ -111748,7 +112099,7 @@
}
},
{
- "id": 9497,
+ "id": 9637,
"properties": {
"east": "true",
"north": "false",
@@ -111758,7 +112109,7 @@
}
},
{
- "id": 9498,
+ "id": 9638,
"properties": {
"east": "true",
"north": "false",
@@ -111768,7 +112119,7 @@
}
},
{
- "id": 9499,
+ "id": 9639,
"properties": {
"east": "true",
"north": "false",
@@ -111778,7 +112129,7 @@
}
},
{
- "id": 9500,
+ "id": 9640,
"properties": {
"east": "true",
"north": "false",
@@ -111788,7 +112139,7 @@
}
},
{
- "id": 9501,
+ "id": 9641,
"properties": {
"east": "true",
"north": "false",
@@ -111798,7 +112149,7 @@
}
},
{
- "id": 9502,
+ "id": 9642,
"properties": {
"east": "true",
"north": "false",
@@ -111808,7 +112159,7 @@
}
},
{
- "id": 9503,
+ "id": 9643,
"properties": {
"east": "true",
"north": "false",
@@ -111818,7 +112169,7 @@
}
},
{
- "id": 9504,
+ "id": 9644,
"properties": {
"east": "false",
"north": "true",
@@ -111828,7 +112179,7 @@
}
},
{
- "id": 9505,
+ "id": 9645,
"properties": {
"east": "false",
"north": "true",
@@ -111838,7 +112189,7 @@
}
},
{
- "id": 9506,
+ "id": 9646,
"properties": {
"east": "false",
"north": "true",
@@ -111848,7 +112199,7 @@
}
},
{
- "id": 9507,
+ "id": 9647,
"properties": {
"east": "false",
"north": "true",
@@ -111858,7 +112209,7 @@
}
},
{
- "id": 9508,
+ "id": 9648,
"properties": {
"east": "false",
"north": "true",
@@ -111868,7 +112219,7 @@
}
},
{
- "id": 9509,
+ "id": 9649,
"properties": {
"east": "false",
"north": "true",
@@ -111878,7 +112229,7 @@
}
},
{
- "id": 9510,
+ "id": 9650,
"properties": {
"east": "false",
"north": "true",
@@ -111888,7 +112239,7 @@
}
},
{
- "id": 9511,
+ "id": 9651,
"properties": {
"east": "false",
"north": "true",
@@ -111898,7 +112249,7 @@
}
},
{
- "id": 9512,
+ "id": 9652,
"properties": {
"east": "false",
"north": "false",
@@ -111908,7 +112259,7 @@
}
},
{
- "id": 9513,
+ "id": 9653,
"properties": {
"east": "false",
"north": "false",
@@ -111918,7 +112269,7 @@
}
},
{
- "id": 9514,
+ "id": 9654,
"properties": {
"east": "false",
"north": "false",
@@ -111928,7 +112279,7 @@
}
},
{
- "id": 9515,
+ "id": 9655,
"properties": {
"east": "false",
"north": "false",
@@ -111938,7 +112289,7 @@
}
},
{
- "id": 9516,
+ "id": 9656,
"properties": {
"east": "false",
"north": "false",
@@ -111948,7 +112299,7 @@
}
},
{
- "id": 9517,
+ "id": 9657,
"properties": {
"east": "false",
"north": "false",
@@ -111958,7 +112309,7 @@
}
},
{
- "id": 9518,
+ "id": 9658,
"properties": {
"east": "false",
"north": "false",
@@ -111969,7 +112320,7 @@
},
{
"default": true,
- "id": 9519,
+ "id": 9659,
"properties": {
"east": "false",
"north": "false",
@@ -111984,7 +112335,7 @@
"states": [
{
"default": true,
- "id": 9224
+ "id": 9364
}
]
},
@@ -112000,25 +112351,25 @@
"states": [
{
"default": true,
- "id": 10906,
+ "id": 11047,
"properties": {
"facing": "north"
}
},
{
- "id": 10907,
+ "id": 11048,
"properties": {
"facing": "south"
}
},
{
- "id": 10908,
+ "id": 11049,
"properties": {
"facing": "west"
}
},
{
- "id": 10909,
+ "id": 11050,
"properties": {
"facing": "east"
}
@@ -112057,97 +112408,97 @@
"states": [
{
"default": true,
- "id": 9003,
+ "id": 9143,
"properties": {
"power": "0"
}
},
{
- "id": 9004,
+ "id": 9144,
"properties": {
"power": "1"
}
},
{
- "id": 9005,
+ "id": 9145,
"properties": {
"power": "2"
}
},
{
- "id": 9006,
+ "id": 9146,
"properties": {
"power": "3"
}
},
{
- "id": 9007,
+ "id": 9147,
"properties": {
"power": "4"
}
},
{
- "id": 9008,
+ "id": 9148,
"properties": {
"power": "5"
}
},
{
- "id": 9009,
+ "id": 9149,
"properties": {
"power": "6"
}
},
{
- "id": 9010,
+ "id": 9150,
"properties": {
"power": "7"
}
},
{
- "id": 9011,
+ "id": 9151,
"properties": {
"power": "8"
}
},
{
- "id": 9012,
+ "id": 9152,
"properties": {
"power": "9"
}
},
{
- "id": 9013,
+ "id": 9153,
"properties": {
"power": "10"
}
},
{
- "id": 9014,
+ "id": 9154,
"properties": {
"power": "11"
}
},
{
- "id": 9015,
+ "id": 9155,
"properties": {
"power": "12"
}
},
{
- "id": 9016,
+ "id": 9156,
"properties": {
"power": "13"
}
},
{
- "id": 9017,
+ "id": 9157,
"properties": {
"power": "14"
}
},
{
- "id": 9018,
+ "id": 9158,
"properties": {
"power": "15"
}
@@ -112175,7 +112526,7 @@
},
"states": [
{
- "id": 22269,
+ "id": 22410,
"properties": {
"facing": "north",
"powered": "true",
@@ -112183,7 +112534,7 @@
}
},
{
- "id": 22270,
+ "id": 22411,
"properties": {
"facing": "north",
"powered": "true",
@@ -112191,7 +112542,7 @@
}
},
{
- "id": 22271,
+ "id": 22412,
"properties": {
"facing": "north",
"powered": "false",
@@ -112199,7 +112550,7 @@
}
},
{
- "id": 22272,
+ "id": 22413,
"properties": {
"facing": "north",
"powered": "false",
@@ -112207,7 +112558,7 @@
}
},
{
- "id": 22273,
+ "id": 22414,
"properties": {
"facing": "east",
"powered": "true",
@@ -112215,7 +112566,7 @@
}
},
{
- "id": 22274,
+ "id": 22415,
"properties": {
"facing": "east",
"powered": "true",
@@ -112223,7 +112574,7 @@
}
},
{
- "id": 22275,
+ "id": 22416,
"properties": {
"facing": "east",
"powered": "false",
@@ -112231,7 +112582,7 @@
}
},
{
- "id": 22276,
+ "id": 22417,
"properties": {
"facing": "east",
"powered": "false",
@@ -112239,7 +112590,7 @@
}
},
{
- "id": 22277,
+ "id": 22418,
"properties": {
"facing": "south",
"powered": "true",
@@ -112247,7 +112598,7 @@
}
},
{
- "id": 22278,
+ "id": 22419,
"properties": {
"facing": "south",
"powered": "true",
@@ -112255,7 +112606,7 @@
}
},
{
- "id": 22279,
+ "id": 22420,
"properties": {
"facing": "south",
"powered": "false",
@@ -112263,7 +112614,7 @@
}
},
{
- "id": 22280,
+ "id": 22421,
"properties": {
"facing": "south",
"powered": "false",
@@ -112271,7 +112622,7 @@
}
},
{
- "id": 22281,
+ "id": 22422,
"properties": {
"facing": "west",
"powered": "true",
@@ -112279,7 +112630,7 @@
}
},
{
- "id": 22282,
+ "id": 22423,
"properties": {
"facing": "west",
"powered": "true",
@@ -112287,7 +112638,7 @@
}
},
{
- "id": 22283,
+ "id": 22424,
"properties": {
"facing": "west",
"powered": "false",
@@ -112295,7 +112646,7 @@
}
},
{
- "id": 22284,
+ "id": 22425,
"properties": {
"facing": "west",
"powered": "false",
@@ -112303,7 +112654,7 @@
}
},
{
- "id": 22285,
+ "id": 22426,
"properties": {
"facing": "up",
"powered": "true",
@@ -112311,7 +112662,7 @@
}
},
{
- "id": 22286,
+ "id": 22427,
"properties": {
"facing": "up",
"powered": "true",
@@ -112319,7 +112670,7 @@
}
},
{
- "id": 22287,
+ "id": 22428,
"properties": {
"facing": "up",
"powered": "false",
@@ -112328,7 +112679,7 @@
},
{
"default": true,
- "id": 22288,
+ "id": 22429,
"properties": {
"facing": "up",
"powered": "false",
@@ -112336,7 +112687,7 @@
}
},
{
- "id": 22289,
+ "id": 22430,
"properties": {
"facing": "down",
"powered": "true",
@@ -112344,7 +112695,7 @@
}
},
{
- "id": 22290,
+ "id": 22431,
"properties": {
"facing": "down",
"powered": "true",
@@ -112352,7 +112703,7 @@
}
},
{
- "id": 22291,
+ "id": 22432,
"properties": {
"facing": "down",
"powered": "false",
@@ -112360,7 +112711,7 @@
}
},
{
- "id": 22292,
+ "id": 22433,
"properties": {
"facing": "down",
"powered": "false",
@@ -112378,14 +112729,14 @@
},
"states": [
{
- "id": 10608,
+ "id": 10749,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10609,
+ "id": 10750,
"properties": {
"half": "lower"
}
@@ -112432,97 +112783,97 @@
"states": [
{
"default": true,
- "id": 10698,
+ "id": 10839,
"properties": {
"rotation": "0"
}
},
{
- "id": 10699,
+ "id": 10840,
"properties": {
"rotation": "1"
}
},
{
- "id": 10700,
+ "id": 10841,
"properties": {
"rotation": "2"
}
},
{
- "id": 10701,
+ "id": 10842,
"properties": {
"rotation": "3"
}
},
{
- "id": 10702,
+ "id": 10843,
"properties": {
"rotation": "4"
}
},
{
- "id": 10703,
+ "id": 10844,
"properties": {
"rotation": "5"
}
},
{
- "id": 10704,
+ "id": 10845,
"properties": {
"rotation": "6"
}
},
{
- "id": 10705,
+ "id": 10846,
"properties": {
"rotation": "7"
}
},
{
- "id": 10706,
+ "id": 10847,
"properties": {
"rotation": "8"
}
},
{
- "id": 10707,
+ "id": 10848,
"properties": {
"rotation": "9"
}
},
{
- "id": 10708,
+ "id": 10849,
"properties": {
"rotation": "10"
}
},
{
- "id": 10709,
+ "id": 10850,
"properties": {
"rotation": "11"
}
},
{
- "id": 10710,
+ "id": 10851,
"properties": {
"rotation": "12"
}
},
{
- "id": 10711,
+ "id": 10852,
"properties": {
"rotation": "13"
}
},
{
- "id": 10712,
+ "id": 10853,
"properties": {
"rotation": "14"
}
},
{
- "id": 10713,
+ "id": 10854,
"properties": {
"rotation": "15"
}
@@ -112697,7 +113048,7 @@
},
"states": [
{
- "id": 20680,
+ "id": 20821,
"properties": {
"candles": "1",
"lit": "true",
@@ -112705,7 +113056,7 @@
}
},
{
- "id": 20681,
+ "id": 20822,
"properties": {
"candles": "1",
"lit": "true",
@@ -112713,7 +113064,7 @@
}
},
{
- "id": 20682,
+ "id": 20823,
"properties": {
"candles": "1",
"lit": "false",
@@ -112722,7 +113073,7 @@
},
{
"default": true,
- "id": 20683,
+ "id": 20824,
"properties": {
"candles": "1",
"lit": "false",
@@ -112730,7 +113081,7 @@
}
},
{
- "id": 20684,
+ "id": 20825,
"properties": {
"candles": "2",
"lit": "true",
@@ -112738,7 +113089,7 @@
}
},
{
- "id": 20685,
+ "id": 20826,
"properties": {
"candles": "2",
"lit": "true",
@@ -112746,7 +113097,7 @@
}
},
{
- "id": 20686,
+ "id": 20827,
"properties": {
"candles": "2",
"lit": "false",
@@ -112754,7 +113105,7 @@
}
},
{
- "id": 20687,
+ "id": 20828,
"properties": {
"candles": "2",
"lit": "false",
@@ -112762,7 +113113,7 @@
}
},
{
- "id": 20688,
+ "id": 20829,
"properties": {
"candles": "3",
"lit": "true",
@@ -112770,7 +113121,7 @@
}
},
{
- "id": 20689,
+ "id": 20830,
"properties": {
"candles": "3",
"lit": "true",
@@ -112778,7 +113129,7 @@
}
},
{
- "id": 20690,
+ "id": 20831,
"properties": {
"candles": "3",
"lit": "false",
@@ -112786,7 +113137,7 @@
}
},
{
- "id": 20691,
+ "id": 20832,
"properties": {
"candles": "3",
"lit": "false",
@@ -112794,7 +113145,7 @@
}
},
{
- "id": 20692,
+ "id": 20833,
"properties": {
"candles": "4",
"lit": "true",
@@ -112802,7 +113153,7 @@
}
},
{
- "id": 20693,
+ "id": 20834,
"properties": {
"candles": "4",
"lit": "true",
@@ -112810,7 +113161,7 @@
}
},
{
- "id": 20694,
+ "id": 20835,
"properties": {
"candles": "4",
"lit": "false",
@@ -112818,7 +113169,7 @@
}
},
{
- "id": 20695,
+ "id": 20836,
"properties": {
"candles": "4",
"lit": "false",
@@ -112836,14 +113187,14 @@
},
"states": [
{
- "id": 20868,
+ "id": 21009,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20869,
+ "id": 21010,
"properties": {
"lit": "false"
}
@@ -112854,7 +113205,7 @@
"states": [
{
"default": true,
- "id": 10592
+ "id": 10733
}
]
},
@@ -112862,7 +113213,7 @@
"states": [
{
"default": true,
- "id": 12592
+ "id": 12733
}
]
},
@@ -112870,7 +113221,7 @@
"states": [
{
"default": true,
- "id": 12608
+ "id": 12749
}
]
},
@@ -112886,25 +113237,25 @@
"states": [
{
"default": true,
- "id": 12543,
+ "id": 12684,
"properties": {
"facing": "north"
}
},
{
- "id": 12544,
+ "id": 12685,
"properties": {
"facing": "south"
}
},
{
- "id": 12545,
+ "id": 12686,
"properties": {
"facing": "west"
}
},
{
- "id": 12546,
+ "id": 12687,
"properties": {
"facing": "east"
}
@@ -112924,38 +113275,38 @@
},
"states": [
{
- "id": 12457,
+ "id": 12598,
"properties": {
"facing": "north"
}
},
{
- "id": 12458,
+ "id": 12599,
"properties": {
"facing": "east"
}
},
{
- "id": 12459,
+ "id": 12600,
"properties": {
"facing": "south"
}
},
{
- "id": 12460,
+ "id": 12601,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12461,
+ "id": 12602,
"properties": {
"facing": "up"
}
},
{
- "id": 12462,
+ "id": 12603,
"properties": {
"facing": "down"
}
@@ -112995,7 +113346,7 @@
},
"states": [
{
- "id": 9392,
+ "id": 9532,
"properties": {
"east": "true",
"north": "true",
@@ -113005,7 +113356,7 @@
}
},
{
- "id": 9393,
+ "id": 9533,
"properties": {
"east": "true",
"north": "true",
@@ -113015,7 +113366,7 @@
}
},
{
- "id": 9394,
+ "id": 9534,
"properties": {
"east": "true",
"north": "true",
@@ -113025,7 +113376,7 @@
}
},
{
- "id": 9395,
+ "id": 9535,
"properties": {
"east": "true",
"north": "true",
@@ -113035,7 +113386,7 @@
}
},
{
- "id": 9396,
+ "id": 9536,
"properties": {
"east": "true",
"north": "true",
@@ -113045,7 +113396,7 @@
}
},
{
- "id": 9397,
+ "id": 9537,
"properties": {
"east": "true",
"north": "true",
@@ -113055,7 +113406,7 @@
}
},
{
- "id": 9398,
+ "id": 9538,
"properties": {
"east": "true",
"north": "true",
@@ -113065,7 +113416,7 @@
}
},
{
- "id": 9399,
+ "id": 9539,
"properties": {
"east": "true",
"north": "true",
@@ -113075,7 +113426,7 @@
}
},
{
- "id": 9400,
+ "id": 9540,
"properties": {
"east": "true",
"north": "false",
@@ -113085,7 +113436,7 @@
}
},
{
- "id": 9401,
+ "id": 9541,
"properties": {
"east": "true",
"north": "false",
@@ -113095,7 +113446,7 @@
}
},
{
- "id": 9402,
+ "id": 9542,
"properties": {
"east": "true",
"north": "false",
@@ -113105,7 +113456,7 @@
}
},
{
- "id": 9403,
+ "id": 9543,
"properties": {
"east": "true",
"north": "false",
@@ -113115,7 +113466,7 @@
}
},
{
- "id": 9404,
+ "id": 9544,
"properties": {
"east": "true",
"north": "false",
@@ -113125,7 +113476,7 @@
}
},
{
- "id": 9405,
+ "id": 9545,
"properties": {
"east": "true",
"north": "false",
@@ -113135,7 +113486,7 @@
}
},
{
- "id": 9406,
+ "id": 9546,
"properties": {
"east": "true",
"north": "false",
@@ -113145,7 +113496,7 @@
}
},
{
- "id": 9407,
+ "id": 9547,
"properties": {
"east": "true",
"north": "false",
@@ -113155,7 +113506,7 @@
}
},
{
- "id": 9408,
+ "id": 9548,
"properties": {
"east": "false",
"north": "true",
@@ -113165,7 +113516,7 @@
}
},
{
- "id": 9409,
+ "id": 9549,
"properties": {
"east": "false",
"north": "true",
@@ -113175,7 +113526,7 @@
}
},
{
- "id": 9410,
+ "id": 9550,
"properties": {
"east": "false",
"north": "true",
@@ -113185,7 +113536,7 @@
}
},
{
- "id": 9411,
+ "id": 9551,
"properties": {
"east": "false",
"north": "true",
@@ -113195,7 +113546,7 @@
}
},
{
- "id": 9412,
+ "id": 9552,
"properties": {
"east": "false",
"north": "true",
@@ -113205,7 +113556,7 @@
}
},
{
- "id": 9413,
+ "id": 9553,
"properties": {
"east": "false",
"north": "true",
@@ -113215,7 +113566,7 @@
}
},
{
- "id": 9414,
+ "id": 9554,
"properties": {
"east": "false",
"north": "true",
@@ -113225,7 +113576,7 @@
}
},
{
- "id": 9415,
+ "id": 9555,
"properties": {
"east": "false",
"north": "true",
@@ -113235,7 +113586,7 @@
}
},
{
- "id": 9416,
+ "id": 9556,
"properties": {
"east": "false",
"north": "false",
@@ -113245,7 +113596,7 @@
}
},
{
- "id": 9417,
+ "id": 9557,
"properties": {
"east": "false",
"north": "false",
@@ -113255,7 +113606,7 @@
}
},
{
- "id": 9418,
+ "id": 9558,
"properties": {
"east": "false",
"north": "false",
@@ -113265,7 +113616,7 @@
}
},
{
- "id": 9419,
+ "id": 9559,
"properties": {
"east": "false",
"north": "false",
@@ -113275,7 +113626,7 @@
}
},
{
- "id": 9420,
+ "id": 9560,
"properties": {
"east": "false",
"north": "false",
@@ -113285,7 +113636,7 @@
}
},
{
- "id": 9421,
+ "id": 9561,
"properties": {
"east": "false",
"north": "false",
@@ -113295,7 +113646,7 @@
}
},
{
- "id": 9422,
+ "id": 9562,
"properties": {
"east": "false",
"north": "false",
@@ -113306,7 +113657,7 @@
},
{
"default": true,
- "id": 9423,
+ "id": 9563,
"properties": {
"east": "false",
"north": "false",
@@ -113321,7 +113672,7 @@
"states": [
{
"default": true,
- "id": 9221
+ "id": 9361
}
]
},
@@ -113337,25 +113688,25 @@
"states": [
{
"default": true,
- "id": 10894,
+ "id": 11035,
"properties": {
"facing": "north"
}
},
{
- "id": 10895,
+ "id": 11036,
"properties": {
"facing": "south"
}
},
{
- "id": 10896,
+ "id": 11037,
"properties": {
"facing": "west"
}
},
{
- "id": 10897,
+ "id": 11038,
"properties": {
"facing": "east"
}
@@ -113374,7 +113725,7 @@
"states": [
{
"default": true,
- "id": 19318
+ "id": 19459
}
]
},
@@ -113390,25 +113741,25 @@
"states": [
{
"default": true,
- "id": 18263,
+ "id": 18404,
"properties": {
"facing": "north"
}
},
{
- "id": 18264,
+ "id": 18405,
"properties": {
"facing": "south"
}
},
{
- "id": 18265,
+ "id": 18406,
"properties": {
"facing": "west"
}
},
{
- "id": 18266,
+ "id": 18407,
"properties": {
"facing": "east"
}
@@ -113439,97 +113790,97 @@
"states": [
{
"default": true,
- "id": 10650,
+ "id": 10791,
"properties": {
"rotation": "0"
}
},
{
- "id": 10651,
+ "id": 10792,
"properties": {
"rotation": "1"
}
},
{
- "id": 10652,
+ "id": 10793,
"properties": {
"rotation": "2"
}
},
{
- "id": 10653,
+ "id": 10794,
"properties": {
"rotation": "3"
}
},
{
- "id": 10654,
+ "id": 10795,
"properties": {
"rotation": "4"
}
},
{
- "id": 10655,
+ "id": 10796,
"properties": {
"rotation": "5"
}
},
{
- "id": 10656,
+ "id": 10797,
"properties": {
"rotation": "6"
}
},
{
- "id": 10657,
+ "id": 10798,
"properties": {
"rotation": "7"
}
},
{
- "id": 10658,
+ "id": 10799,
"properties": {
"rotation": "8"
}
},
{
- "id": 10659,
+ "id": 10800,
"properties": {
"rotation": "9"
}
},
{
- "id": 10660,
+ "id": 10801,
"properties": {
"rotation": "10"
}
},
{
- "id": 10661,
+ "id": 10802,
"properties": {
"rotation": "11"
}
},
{
- "id": 10662,
+ "id": 10803,
"properties": {
"rotation": "12"
}
},
{
- "id": 10663,
+ "id": 10804,
"properties": {
"rotation": "13"
}
},
{
- "id": 10664,
+ "id": 10805,
"properties": {
"rotation": "14"
}
},
{
- "id": 10665,
+ "id": 10806,
"properties": {
"rotation": "15"
}
@@ -113704,7 +114055,7 @@
},
"states": [
{
- "id": 20632,
+ "id": 20773,
"properties": {
"candles": "1",
"lit": "true",
@@ -113712,7 +114063,7 @@
}
},
{
- "id": 20633,
+ "id": 20774,
"properties": {
"candles": "1",
"lit": "true",
@@ -113720,7 +114071,7 @@
}
},
{
- "id": 20634,
+ "id": 20775,
"properties": {
"candles": "1",
"lit": "false",
@@ -113729,7 +114080,7 @@
},
{
"default": true,
- "id": 20635,
+ "id": 20776,
"properties": {
"candles": "1",
"lit": "false",
@@ -113737,7 +114088,7 @@
}
},
{
- "id": 20636,
+ "id": 20777,
"properties": {
"candles": "2",
"lit": "true",
@@ -113745,7 +114096,7 @@
}
},
{
- "id": 20637,
+ "id": 20778,
"properties": {
"candles": "2",
"lit": "true",
@@ -113753,7 +114104,7 @@
}
},
{
- "id": 20638,
+ "id": 20779,
"properties": {
"candles": "2",
"lit": "false",
@@ -113761,7 +114112,7 @@
}
},
{
- "id": 20639,
+ "id": 20780,
"properties": {
"candles": "2",
"lit": "false",
@@ -113769,7 +114120,7 @@
}
},
{
- "id": 20640,
+ "id": 20781,
"properties": {
"candles": "3",
"lit": "true",
@@ -113777,7 +114128,7 @@
}
},
{
- "id": 20641,
+ "id": 20782,
"properties": {
"candles": "3",
"lit": "true",
@@ -113785,7 +114136,7 @@
}
},
{
- "id": 20642,
+ "id": 20783,
"properties": {
"candles": "3",
"lit": "false",
@@ -113793,7 +114144,7 @@
}
},
{
- "id": 20643,
+ "id": 20784,
"properties": {
"candles": "3",
"lit": "false",
@@ -113801,7 +114152,7 @@
}
},
{
- "id": 20644,
+ "id": 20785,
"properties": {
"candles": "4",
"lit": "true",
@@ -113809,7 +114160,7 @@
}
},
{
- "id": 20645,
+ "id": 20786,
"properties": {
"candles": "4",
"lit": "true",
@@ -113817,7 +114168,7 @@
}
},
{
- "id": 20646,
+ "id": 20787,
"properties": {
"candles": "4",
"lit": "false",
@@ -113825,7 +114176,7 @@
}
},
{
- "id": 20647,
+ "id": 20788,
"properties": {
"candles": "4",
"lit": "false",
@@ -113843,14 +114194,14 @@
},
"states": [
{
- "id": 20862,
+ "id": 21003,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20863,
+ "id": 21004,
"properties": {
"lit": "false"
}
@@ -113861,7 +114212,7 @@
"states": [
{
"default": true,
- "id": 10589
+ "id": 10730
}
]
},
@@ -113869,7 +114220,7 @@
"states": [
{
"default": true,
- "id": 12589
+ "id": 12730
}
]
},
@@ -113877,7 +114228,7 @@
"states": [
{
"default": true,
- "id": 12605
+ "id": 12746
}
]
},
@@ -113893,25 +114244,25 @@
"states": [
{
"default": true,
- "id": 12531,
+ "id": 12672,
"properties": {
"facing": "north"
}
},
{
- "id": 12532,
+ "id": 12673,
"properties": {
"facing": "south"
}
},
{
- "id": 12533,
+ "id": 12674,
"properties": {
"facing": "west"
}
},
{
- "id": 12534,
+ "id": 12675,
"properties": {
"facing": "east"
}
@@ -113931,38 +114282,38 @@
},
"states": [
{
- "id": 12439,
+ "id": 12580,
"properties": {
"facing": "north"
}
},
{
- "id": 12440,
+ "id": 12581,
"properties": {
"facing": "east"
}
},
{
- "id": 12441,
+ "id": 12582,
"properties": {
"facing": "south"
}
},
{
- "id": 12442,
+ "id": 12583,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12443,
+ "id": 12584,
"properties": {
"facing": "up"
}
},
{
- "id": 12444,
+ "id": 12585,
"properties": {
"facing": "down"
}
@@ -114002,7 +114353,7 @@
},
"states": [
{
- "id": 9296,
+ "id": 9436,
"properties": {
"east": "true",
"north": "true",
@@ -114012,7 +114363,7 @@
}
},
{
- "id": 9297,
+ "id": 9437,
"properties": {
"east": "true",
"north": "true",
@@ -114022,7 +114373,7 @@
}
},
{
- "id": 9298,
+ "id": 9438,
"properties": {
"east": "true",
"north": "true",
@@ -114032,7 +114383,7 @@
}
},
{
- "id": 9299,
+ "id": 9439,
"properties": {
"east": "true",
"north": "true",
@@ -114042,7 +114393,7 @@
}
},
{
- "id": 9300,
+ "id": 9440,
"properties": {
"east": "true",
"north": "true",
@@ -114052,7 +114403,7 @@
}
},
{
- "id": 9301,
+ "id": 9441,
"properties": {
"east": "true",
"north": "true",
@@ -114062,7 +114413,7 @@
}
},
{
- "id": 9302,
+ "id": 9442,
"properties": {
"east": "true",
"north": "true",
@@ -114072,7 +114423,7 @@
}
},
{
- "id": 9303,
+ "id": 9443,
"properties": {
"east": "true",
"north": "true",
@@ -114082,7 +114433,7 @@
}
},
{
- "id": 9304,
+ "id": 9444,
"properties": {
"east": "true",
"north": "false",
@@ -114092,7 +114443,7 @@
}
},
{
- "id": 9305,
+ "id": 9445,
"properties": {
"east": "true",
"north": "false",
@@ -114102,7 +114453,7 @@
}
},
{
- "id": 9306,
+ "id": 9446,
"properties": {
"east": "true",
"north": "false",
@@ -114112,7 +114463,7 @@
}
},
{
- "id": 9307,
+ "id": 9447,
"properties": {
"east": "true",
"north": "false",
@@ -114122,7 +114473,7 @@
}
},
{
- "id": 9308,
+ "id": 9448,
"properties": {
"east": "true",
"north": "false",
@@ -114132,7 +114483,7 @@
}
},
{
- "id": 9309,
+ "id": 9449,
"properties": {
"east": "true",
"north": "false",
@@ -114142,7 +114493,7 @@
}
},
{
- "id": 9310,
+ "id": 9450,
"properties": {
"east": "true",
"north": "false",
@@ -114152,7 +114503,7 @@
}
},
{
- "id": 9311,
+ "id": 9451,
"properties": {
"east": "true",
"north": "false",
@@ -114162,7 +114513,7 @@
}
},
{
- "id": 9312,
+ "id": 9452,
"properties": {
"east": "false",
"north": "true",
@@ -114172,7 +114523,7 @@
}
},
{
- "id": 9313,
+ "id": 9453,
"properties": {
"east": "false",
"north": "true",
@@ -114182,7 +114533,7 @@
}
},
{
- "id": 9314,
+ "id": 9454,
"properties": {
"east": "false",
"north": "true",
@@ -114192,7 +114543,7 @@
}
},
{
- "id": 9315,
+ "id": 9455,
"properties": {
"east": "false",
"north": "true",
@@ -114202,7 +114553,7 @@
}
},
{
- "id": 9316,
+ "id": 9456,
"properties": {
"east": "false",
"north": "true",
@@ -114212,7 +114563,7 @@
}
},
{
- "id": 9317,
+ "id": 9457,
"properties": {
"east": "false",
"north": "true",
@@ -114222,7 +114573,7 @@
}
},
{
- "id": 9318,
+ "id": 9458,
"properties": {
"east": "false",
"north": "true",
@@ -114232,7 +114583,7 @@
}
},
{
- "id": 9319,
+ "id": 9459,
"properties": {
"east": "false",
"north": "true",
@@ -114242,7 +114593,7 @@
}
},
{
- "id": 9320,
+ "id": 9460,
"properties": {
"east": "false",
"north": "false",
@@ -114252,7 +114603,7 @@
}
},
{
- "id": 9321,
+ "id": 9461,
"properties": {
"east": "false",
"north": "false",
@@ -114262,7 +114613,7 @@
}
},
{
- "id": 9322,
+ "id": 9462,
"properties": {
"east": "false",
"north": "false",
@@ -114272,7 +114623,7 @@
}
},
{
- "id": 9323,
+ "id": 9463,
"properties": {
"east": "false",
"north": "false",
@@ -114282,7 +114633,7 @@
}
},
{
- "id": 9324,
+ "id": 9464,
"properties": {
"east": "false",
"north": "false",
@@ -114292,7 +114643,7 @@
}
},
{
- "id": 9325,
+ "id": 9465,
"properties": {
"east": "false",
"north": "false",
@@ -114302,7 +114653,7 @@
}
},
{
- "id": 9326,
+ "id": 9466,
"properties": {
"east": "false",
"north": "false",
@@ -114313,7 +114664,7 @@
},
{
"default": true,
- "id": 9327,
+ "id": 9467,
"properties": {
"east": "false",
"north": "false",
@@ -114328,7 +114679,7 @@
"states": [
{
"default": true,
- "id": 9218
+ "id": 9358
}
]
},
@@ -114344,25 +114695,25 @@
"states": [
{
"default": true,
- "id": 10882,
+ "id": 11023,
"properties": {
"facing": "north"
}
},
{
- "id": 10883,
+ "id": 11024,
"properties": {
"facing": "south"
}
},
{
- "id": 10884,
+ "id": 11025,
"properties": {
"facing": "west"
}
},
{
- "id": 10885,
+ "id": 11026,
"properties": {
"facing": "east"
}
@@ -114381,7 +114732,7 @@
"states": [
{
"default": true,
- "id": 12402
+ "id": 12543
}
]
},
@@ -114626,7 +114977,7 @@
},
"states": [
{
- "id": 12065,
+ "id": 12206,
"properties": {
"facing": "north",
"half": "upper",
@@ -114636,7 +114987,7 @@
}
},
{
- "id": 12066,
+ "id": 12207,
"properties": {
"facing": "north",
"half": "upper",
@@ -114646,7 +114997,7 @@
}
},
{
- "id": 12067,
+ "id": 12208,
"properties": {
"facing": "north",
"half": "upper",
@@ -114656,7 +115007,7 @@
}
},
{
- "id": 12068,
+ "id": 12209,
"properties": {
"facing": "north",
"half": "upper",
@@ -114666,7 +115017,7 @@
}
},
{
- "id": 12069,
+ "id": 12210,
"properties": {
"facing": "north",
"half": "upper",
@@ -114676,7 +115027,7 @@
}
},
{
- "id": 12070,
+ "id": 12211,
"properties": {
"facing": "north",
"half": "upper",
@@ -114686,7 +115037,7 @@
}
},
{
- "id": 12071,
+ "id": 12212,
"properties": {
"facing": "north",
"half": "upper",
@@ -114696,7 +115047,7 @@
}
},
{
- "id": 12072,
+ "id": 12213,
"properties": {
"facing": "north",
"half": "upper",
@@ -114706,7 +115057,7 @@
}
},
{
- "id": 12073,
+ "id": 12214,
"properties": {
"facing": "north",
"half": "lower",
@@ -114716,7 +115067,7 @@
}
},
{
- "id": 12074,
+ "id": 12215,
"properties": {
"facing": "north",
"half": "lower",
@@ -114726,7 +115077,7 @@
}
},
{
- "id": 12075,
+ "id": 12216,
"properties": {
"facing": "north",
"half": "lower",
@@ -114737,7 +115088,7 @@
},
{
"default": true,
- "id": 12076,
+ "id": 12217,
"properties": {
"facing": "north",
"half": "lower",
@@ -114747,7 +115098,7 @@
}
},
{
- "id": 12077,
+ "id": 12218,
"properties": {
"facing": "north",
"half": "lower",
@@ -114757,7 +115108,7 @@
}
},
{
- "id": 12078,
+ "id": 12219,
"properties": {
"facing": "north",
"half": "lower",
@@ -114767,7 +115118,7 @@
}
},
{
- "id": 12079,
+ "id": 12220,
"properties": {
"facing": "north",
"half": "lower",
@@ -114777,7 +115128,7 @@
}
},
{
- "id": 12080,
+ "id": 12221,
"properties": {
"facing": "north",
"half": "lower",
@@ -114787,7 +115138,7 @@
}
},
{
- "id": 12081,
+ "id": 12222,
"properties": {
"facing": "south",
"half": "upper",
@@ -114797,7 +115148,7 @@
}
},
{
- "id": 12082,
+ "id": 12223,
"properties": {
"facing": "south",
"half": "upper",
@@ -114807,7 +115158,7 @@
}
},
{
- "id": 12083,
+ "id": 12224,
"properties": {
"facing": "south",
"half": "upper",
@@ -114817,7 +115168,7 @@
}
},
{
- "id": 12084,
+ "id": 12225,
"properties": {
"facing": "south",
"half": "upper",
@@ -114827,7 +115178,7 @@
}
},
{
- "id": 12085,
+ "id": 12226,
"properties": {
"facing": "south",
"half": "upper",
@@ -114837,7 +115188,7 @@
}
},
{
- "id": 12086,
+ "id": 12227,
"properties": {
"facing": "south",
"half": "upper",
@@ -114847,7 +115198,7 @@
}
},
{
- "id": 12087,
+ "id": 12228,
"properties": {
"facing": "south",
"half": "upper",
@@ -114857,7 +115208,7 @@
}
},
{
- "id": 12088,
+ "id": 12229,
"properties": {
"facing": "south",
"half": "upper",
@@ -114867,7 +115218,7 @@
}
},
{
- "id": 12089,
+ "id": 12230,
"properties": {
"facing": "south",
"half": "lower",
@@ -114877,7 +115228,7 @@
}
},
{
- "id": 12090,
+ "id": 12231,
"properties": {
"facing": "south",
"half": "lower",
@@ -114887,7 +115238,7 @@
}
},
{
- "id": 12091,
+ "id": 12232,
"properties": {
"facing": "south",
"half": "lower",
@@ -114897,7 +115248,7 @@
}
},
{
- "id": 12092,
+ "id": 12233,
"properties": {
"facing": "south",
"half": "lower",
@@ -114907,7 +115258,7 @@
}
},
{
- "id": 12093,
+ "id": 12234,
"properties": {
"facing": "south",
"half": "lower",
@@ -114917,7 +115268,7 @@
}
},
{
- "id": 12094,
+ "id": 12235,
"properties": {
"facing": "south",
"half": "lower",
@@ -114927,7 +115278,7 @@
}
},
{
- "id": 12095,
+ "id": 12236,
"properties": {
"facing": "south",
"half": "lower",
@@ -114937,7 +115288,7 @@
}
},
{
- "id": 12096,
+ "id": 12237,
"properties": {
"facing": "south",
"half": "lower",
@@ -114947,7 +115298,7 @@
}
},
{
- "id": 12097,
+ "id": 12238,
"properties": {
"facing": "west",
"half": "upper",
@@ -114957,7 +115308,7 @@
}
},
{
- "id": 12098,
+ "id": 12239,
"properties": {
"facing": "west",
"half": "upper",
@@ -114967,7 +115318,7 @@
}
},
{
- "id": 12099,
+ "id": 12240,
"properties": {
"facing": "west",
"half": "upper",
@@ -114977,7 +115328,7 @@
}
},
{
- "id": 12100,
+ "id": 12241,
"properties": {
"facing": "west",
"half": "upper",
@@ -114987,7 +115338,7 @@
}
},
{
- "id": 12101,
+ "id": 12242,
"properties": {
"facing": "west",
"half": "upper",
@@ -114997,7 +115348,7 @@
}
},
{
- "id": 12102,
+ "id": 12243,
"properties": {
"facing": "west",
"half": "upper",
@@ -115007,7 +115358,7 @@
}
},
{
- "id": 12103,
+ "id": 12244,
"properties": {
"facing": "west",
"half": "upper",
@@ -115017,7 +115368,7 @@
}
},
{
- "id": 12104,
+ "id": 12245,
"properties": {
"facing": "west",
"half": "upper",
@@ -115027,7 +115378,7 @@
}
},
{
- "id": 12105,
+ "id": 12246,
"properties": {
"facing": "west",
"half": "lower",
@@ -115037,7 +115388,7 @@
}
},
{
- "id": 12106,
+ "id": 12247,
"properties": {
"facing": "west",
"half": "lower",
@@ -115047,7 +115398,7 @@
}
},
{
- "id": 12107,
+ "id": 12248,
"properties": {
"facing": "west",
"half": "lower",
@@ -115057,7 +115408,7 @@
}
},
{
- "id": 12108,
+ "id": 12249,
"properties": {
"facing": "west",
"half": "lower",
@@ -115067,7 +115418,7 @@
}
},
{
- "id": 12109,
+ "id": 12250,
"properties": {
"facing": "west",
"half": "lower",
@@ -115077,7 +115428,7 @@
}
},
{
- "id": 12110,
+ "id": 12251,
"properties": {
"facing": "west",
"half": "lower",
@@ -115087,7 +115438,7 @@
}
},
{
- "id": 12111,
+ "id": 12252,
"properties": {
"facing": "west",
"half": "lower",
@@ -115097,7 +115448,7 @@
}
},
{
- "id": 12112,
+ "id": 12253,
"properties": {
"facing": "west",
"half": "lower",
@@ -115107,7 +115458,7 @@
}
},
{
- "id": 12113,
+ "id": 12254,
"properties": {
"facing": "east",
"half": "upper",
@@ -115117,7 +115468,7 @@
}
},
{
- "id": 12114,
+ "id": 12255,
"properties": {
"facing": "east",
"half": "upper",
@@ -115127,7 +115478,7 @@
}
},
{
- "id": 12115,
+ "id": 12256,
"properties": {
"facing": "east",
"half": "upper",
@@ -115137,7 +115488,7 @@
}
},
{
- "id": 12116,
+ "id": 12257,
"properties": {
"facing": "east",
"half": "upper",
@@ -115147,7 +115498,7 @@
}
},
{
- "id": 12117,
+ "id": 12258,
"properties": {
"facing": "east",
"half": "upper",
@@ -115157,7 +115508,7 @@
}
},
{
- "id": 12118,
+ "id": 12259,
"properties": {
"facing": "east",
"half": "upper",
@@ -115167,7 +115518,7 @@
}
},
{
- "id": 12119,
+ "id": 12260,
"properties": {
"facing": "east",
"half": "upper",
@@ -115177,7 +115528,7 @@
}
},
{
- "id": 12120,
+ "id": 12261,
"properties": {
"facing": "east",
"half": "upper",
@@ -115187,7 +115538,7 @@
}
},
{
- "id": 12121,
+ "id": 12262,
"properties": {
"facing": "east",
"half": "lower",
@@ -115197,7 +115548,7 @@
}
},
{
- "id": 12122,
+ "id": 12263,
"properties": {
"facing": "east",
"half": "lower",
@@ -115207,7 +115558,7 @@
}
},
{
- "id": 12123,
+ "id": 12264,
"properties": {
"facing": "east",
"half": "lower",
@@ -115217,7 +115568,7 @@
}
},
{
- "id": 12124,
+ "id": 12265,
"properties": {
"facing": "east",
"half": "lower",
@@ -115227,7 +115578,7 @@
}
},
{
- "id": 12125,
+ "id": 12266,
"properties": {
"facing": "east",
"half": "lower",
@@ -115237,7 +115588,7 @@
}
},
{
- "id": 12126,
+ "id": 12267,
"properties": {
"facing": "east",
"half": "lower",
@@ -115247,7 +115598,7 @@
}
},
{
- "id": 12127,
+ "id": 12268,
"properties": {
"facing": "east",
"half": "lower",
@@ -115257,7 +115608,7 @@
}
},
{
- "id": 12128,
+ "id": 12269,
"properties": {
"facing": "east",
"half": "lower",
@@ -115293,7 +115644,7 @@
},
"states": [
{
- "id": 11617,
+ "id": 11758,
"properties": {
"east": "true",
"north": "true",
@@ -115303,7 +115654,7 @@
}
},
{
- "id": 11618,
+ "id": 11759,
"properties": {
"east": "true",
"north": "true",
@@ -115313,7 +115664,7 @@
}
},
{
- "id": 11619,
+ "id": 11760,
"properties": {
"east": "true",
"north": "true",
@@ -115323,7 +115674,7 @@
}
},
{
- "id": 11620,
+ "id": 11761,
"properties": {
"east": "true",
"north": "true",
@@ -115333,7 +115684,7 @@
}
},
{
- "id": 11621,
+ "id": 11762,
"properties": {
"east": "true",
"north": "true",
@@ -115343,7 +115694,7 @@
}
},
{
- "id": 11622,
+ "id": 11763,
"properties": {
"east": "true",
"north": "true",
@@ -115353,7 +115704,7 @@
}
},
{
- "id": 11623,
+ "id": 11764,
"properties": {
"east": "true",
"north": "true",
@@ -115363,7 +115714,7 @@
}
},
{
- "id": 11624,
+ "id": 11765,
"properties": {
"east": "true",
"north": "true",
@@ -115373,7 +115724,7 @@
}
},
{
- "id": 11625,
+ "id": 11766,
"properties": {
"east": "true",
"north": "false",
@@ -115383,7 +115734,7 @@
}
},
{
- "id": 11626,
+ "id": 11767,
"properties": {
"east": "true",
"north": "false",
@@ -115393,7 +115744,7 @@
}
},
{
- "id": 11627,
+ "id": 11768,
"properties": {
"east": "true",
"north": "false",
@@ -115403,7 +115754,7 @@
}
},
{
- "id": 11628,
+ "id": 11769,
"properties": {
"east": "true",
"north": "false",
@@ -115413,7 +115764,7 @@
}
},
{
- "id": 11629,
+ "id": 11770,
"properties": {
"east": "true",
"north": "false",
@@ -115423,7 +115774,7 @@
}
},
{
- "id": 11630,
+ "id": 11771,
"properties": {
"east": "true",
"north": "false",
@@ -115433,7 +115784,7 @@
}
},
{
- "id": 11631,
+ "id": 11772,
"properties": {
"east": "true",
"north": "false",
@@ -115443,7 +115794,7 @@
}
},
{
- "id": 11632,
+ "id": 11773,
"properties": {
"east": "true",
"north": "false",
@@ -115453,7 +115804,7 @@
}
},
{
- "id": 11633,
+ "id": 11774,
"properties": {
"east": "false",
"north": "true",
@@ -115463,7 +115814,7 @@
}
},
{
- "id": 11634,
+ "id": 11775,
"properties": {
"east": "false",
"north": "true",
@@ -115473,7 +115824,7 @@
}
},
{
- "id": 11635,
+ "id": 11776,
"properties": {
"east": "false",
"north": "true",
@@ -115483,7 +115834,7 @@
}
},
{
- "id": 11636,
+ "id": 11777,
"properties": {
"east": "false",
"north": "true",
@@ -115493,7 +115844,7 @@
}
},
{
- "id": 11637,
+ "id": 11778,
"properties": {
"east": "false",
"north": "true",
@@ -115503,7 +115854,7 @@
}
},
{
- "id": 11638,
+ "id": 11779,
"properties": {
"east": "false",
"north": "true",
@@ -115513,7 +115864,7 @@
}
},
{
- "id": 11639,
+ "id": 11780,
"properties": {
"east": "false",
"north": "true",
@@ -115523,7 +115874,7 @@
}
},
{
- "id": 11640,
+ "id": 11781,
"properties": {
"east": "false",
"north": "true",
@@ -115533,7 +115884,7 @@
}
},
{
- "id": 11641,
+ "id": 11782,
"properties": {
"east": "false",
"north": "false",
@@ -115543,7 +115894,7 @@
}
},
{
- "id": 11642,
+ "id": 11783,
"properties": {
"east": "false",
"north": "false",
@@ -115553,7 +115904,7 @@
}
},
{
- "id": 11643,
+ "id": 11784,
"properties": {
"east": "false",
"north": "false",
@@ -115563,7 +115914,7 @@
}
},
{
- "id": 11644,
+ "id": 11785,
"properties": {
"east": "false",
"north": "false",
@@ -115573,7 +115924,7 @@
}
},
{
- "id": 11645,
+ "id": 11786,
"properties": {
"east": "false",
"north": "false",
@@ -115583,7 +115934,7 @@
}
},
{
- "id": 11646,
+ "id": 11787,
"properties": {
"east": "false",
"north": "false",
@@ -115593,7 +115944,7 @@
}
},
{
- "id": 11647,
+ "id": 11788,
"properties": {
"east": "false",
"north": "false",
@@ -115604,7 +115955,7 @@
},
{
"default": true,
- "id": 11648,
+ "id": 11789,
"properties": {
"east": "false",
"north": "false",
@@ -115638,7 +115989,7 @@
},
"states": [
{
- "id": 11361,
+ "id": 11502,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -115647,7 +115998,7 @@
}
},
{
- "id": 11362,
+ "id": 11503,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -115656,7 +116007,7 @@
}
},
{
- "id": 11363,
+ "id": 11504,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -115665,7 +116016,7 @@
}
},
{
- "id": 11364,
+ "id": 11505,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -115674,7 +116025,7 @@
}
},
{
- "id": 11365,
+ "id": 11506,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -115683,7 +116034,7 @@
}
},
{
- "id": 11366,
+ "id": 11507,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -115692,7 +116043,7 @@
}
},
{
- "id": 11367,
+ "id": 11508,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -115702,7 +116053,7 @@
},
{
"default": true,
- "id": 11368,
+ "id": 11509,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -115711,7 +116062,7 @@
}
},
{
- "id": 11369,
+ "id": 11510,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -115720,7 +116071,7 @@
}
},
{
- "id": 11370,
+ "id": 11511,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -115729,7 +116080,7 @@
}
},
{
- "id": 11371,
+ "id": 11512,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -115738,7 +116089,7 @@
}
},
{
- "id": 11372,
+ "id": 11513,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -115747,7 +116098,7 @@
}
},
{
- "id": 11373,
+ "id": 11514,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -115756,7 +116107,7 @@
}
},
{
- "id": 11374,
+ "id": 11515,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -115765,7 +116116,7 @@
}
},
{
- "id": 11375,
+ "id": 11516,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -115774,7 +116125,7 @@
}
},
{
- "id": 11376,
+ "id": 11517,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -115783,7 +116134,7 @@
}
},
{
- "id": 11377,
+ "id": 11518,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -115792,7 +116143,7 @@
}
},
{
- "id": 11378,
+ "id": 11519,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -115801,7 +116152,7 @@
}
},
{
- "id": 11379,
+ "id": 11520,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -115810,7 +116161,7 @@
}
},
{
- "id": 11380,
+ "id": 11521,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -115819,7 +116170,7 @@
}
},
{
- "id": 11381,
+ "id": 11522,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -115828,7 +116179,7 @@
}
},
{
- "id": 11382,
+ "id": 11523,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -115837,7 +116188,7 @@
}
},
{
- "id": 11383,
+ "id": 11524,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -115846,7 +116197,7 @@
}
},
{
- "id": 11384,
+ "id": 11525,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -115855,7 +116206,7 @@
}
},
{
- "id": 11385,
+ "id": 11526,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -115864,7 +116215,7 @@
}
},
{
- "id": 11386,
+ "id": 11527,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -115873,7 +116224,7 @@
}
},
{
- "id": 11387,
+ "id": 11528,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -115882,7 +116233,7 @@
}
},
{
- "id": 11388,
+ "id": 11529,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -115891,7 +116242,7 @@
}
},
{
- "id": 11389,
+ "id": 11530,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -115900,7 +116251,7 @@
}
},
{
- "id": 11390,
+ "id": 11531,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -115909,7 +116260,7 @@
}
},
{
- "id": 11391,
+ "id": 11532,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -115918,7 +116269,7 @@
}
},
{
- "id": 11392,
+ "id": 11533,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -117458,21 +117809,21 @@
},
"states": [
{
- "id": 11063,
+ "id": 11204,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11064,
+ "id": 11205,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11065,
+ "id": 11206,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -117480,21 +117831,21 @@
},
{
"default": true,
- "id": 11066,
+ "id": 11207,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11067,
+ "id": 11208,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11068,
+ "id": 11209,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -117528,7 +117879,7 @@
},
"states": [
{
- "id": 9984,
+ "id": 10124,
"properties": {
"facing": "north",
"half": "top",
@@ -117537,7 +117888,7 @@
}
},
{
- "id": 9985,
+ "id": 10125,
"properties": {
"facing": "north",
"half": "top",
@@ -117546,7 +117897,7 @@
}
},
{
- "id": 9986,
+ "id": 10126,
"properties": {
"facing": "north",
"half": "top",
@@ -117555,7 +117906,7 @@
}
},
{
- "id": 9987,
+ "id": 10127,
"properties": {
"facing": "north",
"half": "top",
@@ -117564,7 +117915,7 @@
}
},
{
- "id": 9988,
+ "id": 10128,
"properties": {
"facing": "north",
"half": "top",
@@ -117573,7 +117924,7 @@
}
},
{
- "id": 9989,
+ "id": 10129,
"properties": {
"facing": "north",
"half": "top",
@@ -117582,7 +117933,7 @@
}
},
{
- "id": 9990,
+ "id": 10130,
"properties": {
"facing": "north",
"half": "top",
@@ -117591,7 +117942,7 @@
}
},
{
- "id": 9991,
+ "id": 10131,
"properties": {
"facing": "north",
"half": "top",
@@ -117600,7 +117951,7 @@
}
},
{
- "id": 9992,
+ "id": 10132,
"properties": {
"facing": "north",
"half": "top",
@@ -117609,7 +117960,7 @@
}
},
{
- "id": 9993,
+ "id": 10133,
"properties": {
"facing": "north",
"half": "top",
@@ -117618,7 +117969,7 @@
}
},
{
- "id": 9994,
+ "id": 10134,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117628,7 +117979,7 @@
},
{
"default": true,
- "id": 9995,
+ "id": 10135,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117637,7 +117988,7 @@
}
},
{
- "id": 9996,
+ "id": 10136,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117646,7 +117997,7 @@
}
},
{
- "id": 9997,
+ "id": 10137,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117655,7 +118006,7 @@
}
},
{
- "id": 9998,
+ "id": 10138,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117664,7 +118015,7 @@
}
},
{
- "id": 9999,
+ "id": 10139,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117673,7 +118024,7 @@
}
},
{
- "id": 10000,
+ "id": 10140,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117682,7 +118033,7 @@
}
},
{
- "id": 10001,
+ "id": 10141,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117691,7 +118042,7 @@
}
},
{
- "id": 10002,
+ "id": 10142,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117700,7 +118051,7 @@
}
},
{
- "id": 10003,
+ "id": 10143,
"properties": {
"facing": "north",
"half": "bottom",
@@ -117709,7 +118060,7 @@
}
},
{
- "id": 10004,
+ "id": 10144,
"properties": {
"facing": "south",
"half": "top",
@@ -117718,7 +118069,7 @@
}
},
{
- "id": 10005,
+ "id": 10145,
"properties": {
"facing": "south",
"half": "top",
@@ -117727,7 +118078,7 @@
}
},
{
- "id": 10006,
+ "id": 10146,
"properties": {
"facing": "south",
"half": "top",
@@ -117736,7 +118087,7 @@
}
},
{
- "id": 10007,
+ "id": 10147,
"properties": {
"facing": "south",
"half": "top",
@@ -117745,7 +118096,7 @@
}
},
{
- "id": 10008,
+ "id": 10148,
"properties": {
"facing": "south",
"half": "top",
@@ -117754,7 +118105,7 @@
}
},
{
- "id": 10009,
+ "id": 10149,
"properties": {
"facing": "south",
"half": "top",
@@ -117763,7 +118114,7 @@
}
},
{
- "id": 10010,
+ "id": 10150,
"properties": {
"facing": "south",
"half": "top",
@@ -117772,7 +118123,7 @@
}
},
{
- "id": 10011,
+ "id": 10151,
"properties": {
"facing": "south",
"half": "top",
@@ -117781,7 +118132,7 @@
}
},
{
- "id": 10012,
+ "id": 10152,
"properties": {
"facing": "south",
"half": "top",
@@ -117790,7 +118141,7 @@
}
},
{
- "id": 10013,
+ "id": 10153,
"properties": {
"facing": "south",
"half": "top",
@@ -117799,7 +118150,7 @@
}
},
{
- "id": 10014,
+ "id": 10154,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117808,7 +118159,7 @@
}
},
{
- "id": 10015,
+ "id": 10155,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117817,7 +118168,7 @@
}
},
{
- "id": 10016,
+ "id": 10156,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117826,7 +118177,7 @@
}
},
{
- "id": 10017,
+ "id": 10157,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117835,7 +118186,7 @@
}
},
{
- "id": 10018,
+ "id": 10158,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117844,7 +118195,7 @@
}
},
{
- "id": 10019,
+ "id": 10159,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117853,7 +118204,7 @@
}
},
{
- "id": 10020,
+ "id": 10160,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117862,7 +118213,7 @@
}
},
{
- "id": 10021,
+ "id": 10161,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117871,7 +118222,7 @@
}
},
{
- "id": 10022,
+ "id": 10162,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117880,7 +118231,7 @@
}
},
{
- "id": 10023,
+ "id": 10163,
"properties": {
"facing": "south",
"half": "bottom",
@@ -117889,7 +118240,7 @@
}
},
{
- "id": 10024,
+ "id": 10164,
"properties": {
"facing": "west",
"half": "top",
@@ -117898,7 +118249,7 @@
}
},
{
- "id": 10025,
+ "id": 10165,
"properties": {
"facing": "west",
"half": "top",
@@ -117907,7 +118258,7 @@
}
},
{
- "id": 10026,
+ "id": 10166,
"properties": {
"facing": "west",
"half": "top",
@@ -117916,7 +118267,7 @@
}
},
{
- "id": 10027,
+ "id": 10167,
"properties": {
"facing": "west",
"half": "top",
@@ -117925,7 +118276,7 @@
}
},
{
- "id": 10028,
+ "id": 10168,
"properties": {
"facing": "west",
"half": "top",
@@ -117934,7 +118285,7 @@
}
},
{
- "id": 10029,
+ "id": 10169,
"properties": {
"facing": "west",
"half": "top",
@@ -117943,7 +118294,7 @@
}
},
{
- "id": 10030,
+ "id": 10170,
"properties": {
"facing": "west",
"half": "top",
@@ -117952,7 +118303,7 @@
}
},
{
- "id": 10031,
+ "id": 10171,
"properties": {
"facing": "west",
"half": "top",
@@ -117961,7 +118312,7 @@
}
},
{
- "id": 10032,
+ "id": 10172,
"properties": {
"facing": "west",
"half": "top",
@@ -117970,7 +118321,7 @@
}
},
{
- "id": 10033,
+ "id": 10173,
"properties": {
"facing": "west",
"half": "top",
@@ -117979,7 +118330,7 @@
}
},
{
- "id": 10034,
+ "id": 10174,
"properties": {
"facing": "west",
"half": "bottom",
@@ -117988,7 +118339,7 @@
}
},
{
- "id": 10035,
+ "id": 10175,
"properties": {
"facing": "west",
"half": "bottom",
@@ -117997,7 +118348,7 @@
}
},
{
- "id": 10036,
+ "id": 10176,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118006,7 +118357,7 @@
}
},
{
- "id": 10037,
+ "id": 10177,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118015,7 +118366,7 @@
}
},
{
- "id": 10038,
+ "id": 10178,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118024,7 +118375,7 @@
}
},
{
- "id": 10039,
+ "id": 10179,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118033,7 +118384,7 @@
}
},
{
- "id": 10040,
+ "id": 10180,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118042,7 +118393,7 @@
}
},
{
- "id": 10041,
+ "id": 10181,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118051,7 +118402,7 @@
}
},
{
- "id": 10042,
+ "id": 10182,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118060,7 +118411,7 @@
}
},
{
- "id": 10043,
+ "id": 10183,
"properties": {
"facing": "west",
"half": "bottom",
@@ -118069,7 +118420,7 @@
}
},
{
- "id": 10044,
+ "id": 10184,
"properties": {
"facing": "east",
"half": "top",
@@ -118078,7 +118429,7 @@
}
},
{
- "id": 10045,
+ "id": 10185,
"properties": {
"facing": "east",
"half": "top",
@@ -118087,7 +118438,7 @@
}
},
{
- "id": 10046,
+ "id": 10186,
"properties": {
"facing": "east",
"half": "top",
@@ -118096,7 +118447,7 @@
}
},
{
- "id": 10047,
+ "id": 10187,
"properties": {
"facing": "east",
"half": "top",
@@ -118105,7 +118456,7 @@
}
},
{
- "id": 10048,
+ "id": 10188,
"properties": {
"facing": "east",
"half": "top",
@@ -118114,7 +118465,7 @@
}
},
{
- "id": 10049,
+ "id": 10189,
"properties": {
"facing": "east",
"half": "top",
@@ -118123,7 +118474,7 @@
}
},
{
- "id": 10050,
+ "id": 10190,
"properties": {
"facing": "east",
"half": "top",
@@ -118132,7 +118483,7 @@
}
},
{
- "id": 10051,
+ "id": 10191,
"properties": {
"facing": "east",
"half": "top",
@@ -118141,7 +118492,7 @@
}
},
{
- "id": 10052,
+ "id": 10192,
"properties": {
"facing": "east",
"half": "top",
@@ -118150,7 +118501,7 @@
}
},
{
- "id": 10053,
+ "id": 10193,
"properties": {
"facing": "east",
"half": "top",
@@ -118159,7 +118510,7 @@
}
},
{
- "id": 10054,
+ "id": 10194,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118168,7 +118519,7 @@
}
},
{
- "id": 10055,
+ "id": 10195,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118177,7 +118528,7 @@
}
},
{
- "id": 10056,
+ "id": 10196,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118186,7 +118537,7 @@
}
},
{
- "id": 10057,
+ "id": 10197,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118195,7 +118546,7 @@
}
},
{
- "id": 10058,
+ "id": 10198,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118204,7 +118555,7 @@
}
},
{
- "id": 10059,
+ "id": 10199,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118213,7 +118564,7 @@
}
},
{
- "id": 10060,
+ "id": 10200,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118222,7 +118573,7 @@
}
},
{
- "id": 10061,
+ "id": 10201,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118231,7 +118582,7 @@
}
},
{
- "id": 10062,
+ "id": 10202,
"properties": {
"facing": "east",
"half": "bottom",
@@ -118240,7 +118591,7 @@
}
},
{
- "id": 10063,
+ "id": 10203,
"properties": {
"facing": "east",
"half": "bottom",
@@ -119112,63 +119463,63 @@
},
"states": [
{
- "id": 20916,
+ "id": 21057,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20917,
+ "id": 21058,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20918,
+ "id": 21059,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20919,
+ "id": 21060,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20920,
+ "id": 21061,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20921,
+ "id": 21062,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20922,
+ "id": 21063,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20923,
+ "id": 21064,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20924,
+ "id": 21065,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -119176,21 +119527,21 @@
},
{
"default": true,
- "id": 20925,
+ "id": 21066,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20926,
+ "id": 21067,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20927,
+ "id": 21068,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -119275,7 +119626,7 @@
"states": [
{
"default": true,
- "id": 22388
+ "id": 22529
}
]
},
@@ -119283,7 +119634,7 @@
"states": [
{
"default": true,
- "id": 22371
+ "id": 22512
}
]
},
@@ -119309,21 +119660,21 @@
},
"states": [
{
- "id": 13965,
+ "id": 14106,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13966,
+ "id": 14107,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13967,
+ "id": 14108,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -119331,21 +119682,21 @@
},
{
"default": true,
- "id": 13968,
+ "id": 14109,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13969,
+ "id": 14110,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13970,
+ "id": 14111,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -119379,7 +119730,7 @@
},
"states": [
{
- "id": 13141,
+ "id": 13282,
"properties": {
"facing": "north",
"half": "top",
@@ -119388,7 +119739,7 @@
}
},
{
- "id": 13142,
+ "id": 13283,
"properties": {
"facing": "north",
"half": "top",
@@ -119397,7 +119748,7 @@
}
},
{
- "id": 13143,
+ "id": 13284,
"properties": {
"facing": "north",
"half": "top",
@@ -119406,7 +119757,7 @@
}
},
{
- "id": 13144,
+ "id": 13285,
"properties": {
"facing": "north",
"half": "top",
@@ -119415,7 +119766,7 @@
}
},
{
- "id": 13145,
+ "id": 13286,
"properties": {
"facing": "north",
"half": "top",
@@ -119424,7 +119775,7 @@
}
},
{
- "id": 13146,
+ "id": 13287,
"properties": {
"facing": "north",
"half": "top",
@@ -119433,7 +119784,7 @@
}
},
{
- "id": 13147,
+ "id": 13288,
"properties": {
"facing": "north",
"half": "top",
@@ -119442,7 +119793,7 @@
}
},
{
- "id": 13148,
+ "id": 13289,
"properties": {
"facing": "north",
"half": "top",
@@ -119451,7 +119802,7 @@
}
},
{
- "id": 13149,
+ "id": 13290,
"properties": {
"facing": "north",
"half": "top",
@@ -119460,7 +119811,7 @@
}
},
{
- "id": 13150,
+ "id": 13291,
"properties": {
"facing": "north",
"half": "top",
@@ -119469,7 +119820,7 @@
}
},
{
- "id": 13151,
+ "id": 13292,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119479,7 +119830,7 @@
},
{
"default": true,
- "id": 13152,
+ "id": 13293,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119488,7 +119839,7 @@
}
},
{
- "id": 13153,
+ "id": 13294,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119497,7 +119848,7 @@
}
},
{
- "id": 13154,
+ "id": 13295,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119506,7 +119857,7 @@
}
},
{
- "id": 13155,
+ "id": 13296,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119515,7 +119866,7 @@
}
},
{
- "id": 13156,
+ "id": 13297,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119524,7 +119875,7 @@
}
},
{
- "id": 13157,
+ "id": 13298,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119533,7 +119884,7 @@
}
},
{
- "id": 13158,
+ "id": 13299,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119542,7 +119893,7 @@
}
},
{
- "id": 13159,
+ "id": 13300,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119551,7 +119902,7 @@
}
},
{
- "id": 13160,
+ "id": 13301,
"properties": {
"facing": "north",
"half": "bottom",
@@ -119560,7 +119911,7 @@
}
},
{
- "id": 13161,
+ "id": 13302,
"properties": {
"facing": "south",
"half": "top",
@@ -119569,7 +119920,7 @@
}
},
{
- "id": 13162,
+ "id": 13303,
"properties": {
"facing": "south",
"half": "top",
@@ -119578,7 +119929,7 @@
}
},
{
- "id": 13163,
+ "id": 13304,
"properties": {
"facing": "south",
"half": "top",
@@ -119587,7 +119938,7 @@
}
},
{
- "id": 13164,
+ "id": 13305,
"properties": {
"facing": "south",
"half": "top",
@@ -119596,7 +119947,7 @@
}
},
{
- "id": 13165,
+ "id": 13306,
"properties": {
"facing": "south",
"half": "top",
@@ -119605,7 +119956,7 @@
}
},
{
- "id": 13166,
+ "id": 13307,
"properties": {
"facing": "south",
"half": "top",
@@ -119614,7 +119965,7 @@
}
},
{
- "id": 13167,
+ "id": 13308,
"properties": {
"facing": "south",
"half": "top",
@@ -119623,7 +119974,7 @@
}
},
{
- "id": 13168,
+ "id": 13309,
"properties": {
"facing": "south",
"half": "top",
@@ -119632,7 +119983,7 @@
}
},
{
- "id": 13169,
+ "id": 13310,
"properties": {
"facing": "south",
"half": "top",
@@ -119641,7 +119992,7 @@
}
},
{
- "id": 13170,
+ "id": 13311,
"properties": {
"facing": "south",
"half": "top",
@@ -119650,7 +120001,7 @@
}
},
{
- "id": 13171,
+ "id": 13312,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119659,7 +120010,7 @@
}
},
{
- "id": 13172,
+ "id": 13313,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119668,7 +120019,7 @@
}
},
{
- "id": 13173,
+ "id": 13314,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119677,7 +120028,7 @@
}
},
{
- "id": 13174,
+ "id": 13315,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119686,7 +120037,7 @@
}
},
{
- "id": 13175,
+ "id": 13316,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119695,7 +120046,7 @@
}
},
{
- "id": 13176,
+ "id": 13317,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119704,7 +120055,7 @@
}
},
{
- "id": 13177,
+ "id": 13318,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119713,7 +120064,7 @@
}
},
{
- "id": 13178,
+ "id": 13319,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119722,7 +120073,7 @@
}
},
{
- "id": 13179,
+ "id": 13320,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119731,7 +120082,7 @@
}
},
{
- "id": 13180,
+ "id": 13321,
"properties": {
"facing": "south",
"half": "bottom",
@@ -119740,7 +120091,7 @@
}
},
{
- "id": 13181,
+ "id": 13322,
"properties": {
"facing": "west",
"half": "top",
@@ -119749,7 +120100,7 @@
}
},
{
- "id": 13182,
+ "id": 13323,
"properties": {
"facing": "west",
"half": "top",
@@ -119758,7 +120109,7 @@
}
},
{
- "id": 13183,
+ "id": 13324,
"properties": {
"facing": "west",
"half": "top",
@@ -119767,7 +120118,7 @@
}
},
{
- "id": 13184,
+ "id": 13325,
"properties": {
"facing": "west",
"half": "top",
@@ -119776,7 +120127,7 @@
}
},
{
- "id": 13185,
+ "id": 13326,
"properties": {
"facing": "west",
"half": "top",
@@ -119785,7 +120136,7 @@
}
},
{
- "id": 13186,
+ "id": 13327,
"properties": {
"facing": "west",
"half": "top",
@@ -119794,7 +120145,7 @@
}
},
{
- "id": 13187,
+ "id": 13328,
"properties": {
"facing": "west",
"half": "top",
@@ -119803,7 +120154,7 @@
}
},
{
- "id": 13188,
+ "id": 13329,
"properties": {
"facing": "west",
"half": "top",
@@ -119812,7 +120163,7 @@
}
},
{
- "id": 13189,
+ "id": 13330,
"properties": {
"facing": "west",
"half": "top",
@@ -119821,7 +120172,7 @@
}
},
{
- "id": 13190,
+ "id": 13331,
"properties": {
"facing": "west",
"half": "top",
@@ -119830,7 +120181,7 @@
}
},
{
- "id": 13191,
+ "id": 13332,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119839,7 +120190,7 @@
}
},
{
- "id": 13192,
+ "id": 13333,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119848,7 +120199,7 @@
}
},
{
- "id": 13193,
+ "id": 13334,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119857,7 +120208,7 @@
}
},
{
- "id": 13194,
+ "id": 13335,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119866,7 +120217,7 @@
}
},
{
- "id": 13195,
+ "id": 13336,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119875,7 +120226,7 @@
}
},
{
- "id": 13196,
+ "id": 13337,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119884,7 +120235,7 @@
}
},
{
- "id": 13197,
+ "id": 13338,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119893,7 +120244,7 @@
}
},
{
- "id": 13198,
+ "id": 13339,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119902,7 +120253,7 @@
}
},
{
- "id": 13199,
+ "id": 13340,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119911,7 +120262,7 @@
}
},
{
- "id": 13200,
+ "id": 13341,
"properties": {
"facing": "west",
"half": "bottom",
@@ -119920,7 +120271,7 @@
}
},
{
- "id": 13201,
+ "id": 13342,
"properties": {
"facing": "east",
"half": "top",
@@ -119929,7 +120280,7 @@
}
},
{
- "id": 13202,
+ "id": 13343,
"properties": {
"facing": "east",
"half": "top",
@@ -119938,7 +120289,7 @@
}
},
{
- "id": 13203,
+ "id": 13344,
"properties": {
"facing": "east",
"half": "top",
@@ -119947,7 +120298,7 @@
}
},
{
- "id": 13204,
+ "id": 13345,
"properties": {
"facing": "east",
"half": "top",
@@ -119956,7 +120307,7 @@
}
},
{
- "id": 13205,
+ "id": 13346,
"properties": {
"facing": "east",
"half": "top",
@@ -119965,7 +120316,7 @@
}
},
{
- "id": 13206,
+ "id": 13347,
"properties": {
"facing": "east",
"half": "top",
@@ -119974,7 +120325,7 @@
}
},
{
- "id": 13207,
+ "id": 13348,
"properties": {
"facing": "east",
"half": "top",
@@ -119983,7 +120334,7 @@
}
},
{
- "id": 13208,
+ "id": 13349,
"properties": {
"facing": "east",
"half": "top",
@@ -119992,7 +120343,7 @@
}
},
{
- "id": 13209,
+ "id": 13350,
"properties": {
"facing": "east",
"half": "top",
@@ -120001,7 +120352,7 @@
}
},
{
- "id": 13210,
+ "id": 13351,
"properties": {
"facing": "east",
"half": "top",
@@ -120010,7 +120361,7 @@
}
},
{
- "id": 13211,
+ "id": 13352,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120019,7 +120370,7 @@
}
},
{
- "id": 13212,
+ "id": 13353,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120028,7 +120379,7 @@
}
},
{
- "id": 13213,
+ "id": 13354,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120037,7 +120388,7 @@
}
},
{
- "id": 13214,
+ "id": 13355,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120046,7 +120397,7 @@
}
},
{
- "id": 13215,
+ "id": 13356,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120055,7 +120406,7 @@
}
},
{
- "id": 13216,
+ "id": 13357,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120064,7 +120415,7 @@
}
},
{
- "id": 13217,
+ "id": 13358,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120073,7 +120424,7 @@
}
},
{
- "id": 13218,
+ "id": 13359,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120082,7 +120433,7 @@
}
},
{
- "id": 13219,
+ "id": 13360,
"properties": {
"facing": "east",
"half": "bottom",
@@ -120091,7 +120442,7 @@
}
},
{
- "id": 13220,
+ "id": 13361,
"properties": {
"facing": "east",
"half": "bottom",
@@ -123714,21 +124065,21 @@
},
"states": [
{
- "id": 13953,
+ "id": 14094,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13954,
+ "id": 14095,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13955,
+ "id": 14096,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -123736,21 +124087,21 @@
},
{
"default": true,
- "id": 13956,
+ "id": 14097,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13957,
+ "id": 14098,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13958,
+ "id": 14099,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -123784,7 +124135,7 @@
},
"states": [
{
- "id": 12981,
+ "id": 13122,
"properties": {
"facing": "north",
"half": "top",
@@ -123793,7 +124144,7 @@
}
},
{
- "id": 12982,
+ "id": 13123,
"properties": {
"facing": "north",
"half": "top",
@@ -123802,7 +124153,7 @@
}
},
{
- "id": 12983,
+ "id": 13124,
"properties": {
"facing": "north",
"half": "top",
@@ -123811,7 +124162,7 @@
}
},
{
- "id": 12984,
+ "id": 13125,
"properties": {
"facing": "north",
"half": "top",
@@ -123820,7 +124171,7 @@
}
},
{
- "id": 12985,
+ "id": 13126,
"properties": {
"facing": "north",
"half": "top",
@@ -123829,7 +124180,7 @@
}
},
{
- "id": 12986,
+ "id": 13127,
"properties": {
"facing": "north",
"half": "top",
@@ -123838,7 +124189,7 @@
}
},
{
- "id": 12987,
+ "id": 13128,
"properties": {
"facing": "north",
"half": "top",
@@ -123847,7 +124198,7 @@
}
},
{
- "id": 12988,
+ "id": 13129,
"properties": {
"facing": "north",
"half": "top",
@@ -123856,7 +124207,7 @@
}
},
{
- "id": 12989,
+ "id": 13130,
"properties": {
"facing": "north",
"half": "top",
@@ -123865,7 +124216,7 @@
}
},
{
- "id": 12990,
+ "id": 13131,
"properties": {
"facing": "north",
"half": "top",
@@ -123874,7 +124225,7 @@
}
},
{
- "id": 12991,
+ "id": 13132,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123884,7 +124235,7 @@
},
{
"default": true,
- "id": 12992,
+ "id": 13133,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123893,7 +124244,7 @@
}
},
{
- "id": 12993,
+ "id": 13134,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123902,7 +124253,7 @@
}
},
{
- "id": 12994,
+ "id": 13135,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123911,7 +124262,7 @@
}
},
{
- "id": 12995,
+ "id": 13136,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123920,7 +124271,7 @@
}
},
{
- "id": 12996,
+ "id": 13137,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123929,7 +124280,7 @@
}
},
{
- "id": 12997,
+ "id": 13138,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123938,7 +124289,7 @@
}
},
{
- "id": 12998,
+ "id": 13139,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123947,7 +124298,7 @@
}
},
{
- "id": 12999,
+ "id": 13140,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123956,7 +124307,7 @@
}
},
{
- "id": 13000,
+ "id": 13141,
"properties": {
"facing": "north",
"half": "bottom",
@@ -123965,7 +124316,7 @@
}
},
{
- "id": 13001,
+ "id": 13142,
"properties": {
"facing": "south",
"half": "top",
@@ -123974,7 +124325,7 @@
}
},
{
- "id": 13002,
+ "id": 13143,
"properties": {
"facing": "south",
"half": "top",
@@ -123983,7 +124334,7 @@
}
},
{
- "id": 13003,
+ "id": 13144,
"properties": {
"facing": "south",
"half": "top",
@@ -123992,7 +124343,7 @@
}
},
{
- "id": 13004,
+ "id": 13145,
"properties": {
"facing": "south",
"half": "top",
@@ -124001,7 +124352,7 @@
}
},
{
- "id": 13005,
+ "id": 13146,
"properties": {
"facing": "south",
"half": "top",
@@ -124010,7 +124361,7 @@
}
},
{
- "id": 13006,
+ "id": 13147,
"properties": {
"facing": "south",
"half": "top",
@@ -124019,7 +124370,7 @@
}
},
{
- "id": 13007,
+ "id": 13148,
"properties": {
"facing": "south",
"half": "top",
@@ -124028,7 +124379,7 @@
}
},
{
- "id": 13008,
+ "id": 13149,
"properties": {
"facing": "south",
"half": "top",
@@ -124037,7 +124388,7 @@
}
},
{
- "id": 13009,
+ "id": 13150,
"properties": {
"facing": "south",
"half": "top",
@@ -124046,7 +124397,7 @@
}
},
{
- "id": 13010,
+ "id": 13151,
"properties": {
"facing": "south",
"half": "top",
@@ -124055,7 +124406,7 @@
}
},
{
- "id": 13011,
+ "id": 13152,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124064,7 +124415,7 @@
}
},
{
- "id": 13012,
+ "id": 13153,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124073,7 +124424,7 @@
}
},
{
- "id": 13013,
+ "id": 13154,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124082,7 +124433,7 @@
}
},
{
- "id": 13014,
+ "id": 13155,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124091,7 +124442,7 @@
}
},
{
- "id": 13015,
+ "id": 13156,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124100,7 +124451,7 @@
}
},
{
- "id": 13016,
+ "id": 13157,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124109,7 +124460,7 @@
}
},
{
- "id": 13017,
+ "id": 13158,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124118,7 +124469,7 @@
}
},
{
- "id": 13018,
+ "id": 13159,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124127,7 +124478,7 @@
}
},
{
- "id": 13019,
+ "id": 13160,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124136,7 +124487,7 @@
}
},
{
- "id": 13020,
+ "id": 13161,
"properties": {
"facing": "south",
"half": "bottom",
@@ -124145,7 +124496,7 @@
}
},
{
- "id": 13021,
+ "id": 13162,
"properties": {
"facing": "west",
"half": "top",
@@ -124154,7 +124505,7 @@
}
},
{
- "id": 13022,
+ "id": 13163,
"properties": {
"facing": "west",
"half": "top",
@@ -124163,7 +124514,7 @@
}
},
{
- "id": 13023,
+ "id": 13164,
"properties": {
"facing": "west",
"half": "top",
@@ -124172,7 +124523,7 @@
}
},
{
- "id": 13024,
+ "id": 13165,
"properties": {
"facing": "west",
"half": "top",
@@ -124181,7 +124532,7 @@
}
},
{
- "id": 13025,
+ "id": 13166,
"properties": {
"facing": "west",
"half": "top",
@@ -124190,7 +124541,7 @@
}
},
{
- "id": 13026,
+ "id": 13167,
"properties": {
"facing": "west",
"half": "top",
@@ -124199,7 +124550,7 @@
}
},
{
- "id": 13027,
+ "id": 13168,
"properties": {
"facing": "west",
"half": "top",
@@ -124208,7 +124559,7 @@
}
},
{
- "id": 13028,
+ "id": 13169,
"properties": {
"facing": "west",
"half": "top",
@@ -124217,7 +124568,7 @@
}
},
{
- "id": 13029,
+ "id": 13170,
"properties": {
"facing": "west",
"half": "top",
@@ -124226,7 +124577,7 @@
}
},
{
- "id": 13030,
+ "id": 13171,
"properties": {
"facing": "west",
"half": "top",
@@ -124235,7 +124586,7 @@
}
},
{
- "id": 13031,
+ "id": 13172,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124244,7 +124595,7 @@
}
},
{
- "id": 13032,
+ "id": 13173,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124253,7 +124604,7 @@
}
},
{
- "id": 13033,
+ "id": 13174,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124262,7 +124613,7 @@
}
},
{
- "id": 13034,
+ "id": 13175,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124271,7 +124622,7 @@
}
},
{
- "id": 13035,
+ "id": 13176,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124280,7 +124631,7 @@
}
},
{
- "id": 13036,
+ "id": 13177,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124289,7 +124640,7 @@
}
},
{
- "id": 13037,
+ "id": 13178,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124298,7 +124649,7 @@
}
},
{
- "id": 13038,
+ "id": 13179,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124307,7 +124658,7 @@
}
},
{
- "id": 13039,
+ "id": 13180,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124316,7 +124667,7 @@
}
},
{
- "id": 13040,
+ "id": 13181,
"properties": {
"facing": "west",
"half": "bottom",
@@ -124325,7 +124676,7 @@
}
},
{
- "id": 13041,
+ "id": 13182,
"properties": {
"facing": "east",
"half": "top",
@@ -124334,7 +124685,7 @@
}
},
{
- "id": 13042,
+ "id": 13183,
"properties": {
"facing": "east",
"half": "top",
@@ -124343,7 +124694,7 @@
}
},
{
- "id": 13043,
+ "id": 13184,
"properties": {
"facing": "east",
"half": "top",
@@ -124352,7 +124703,7 @@
}
},
{
- "id": 13044,
+ "id": 13185,
"properties": {
"facing": "east",
"half": "top",
@@ -124361,7 +124712,7 @@
}
},
{
- "id": 13045,
+ "id": 13186,
"properties": {
"facing": "east",
"half": "top",
@@ -124370,7 +124721,7 @@
}
},
{
- "id": 13046,
+ "id": 13187,
"properties": {
"facing": "east",
"half": "top",
@@ -124379,7 +124730,7 @@
}
},
{
- "id": 13047,
+ "id": 13188,
"properties": {
"facing": "east",
"half": "top",
@@ -124388,7 +124739,7 @@
}
},
{
- "id": 13048,
+ "id": 13189,
"properties": {
"facing": "east",
"half": "top",
@@ -124397,7 +124748,7 @@
}
},
{
- "id": 13049,
+ "id": 13190,
"properties": {
"facing": "east",
"half": "top",
@@ -124406,7 +124757,7 @@
}
},
{
- "id": 13050,
+ "id": 13191,
"properties": {
"facing": "east",
"half": "top",
@@ -124415,7 +124766,7 @@
}
},
{
- "id": 13051,
+ "id": 13192,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124424,7 +124775,7 @@
}
},
{
- "id": 13052,
+ "id": 13193,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124433,7 +124784,7 @@
}
},
{
- "id": 13053,
+ "id": 13194,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124442,7 +124793,7 @@
}
},
{
- "id": 13054,
+ "id": 13195,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124451,7 +124802,7 @@
}
},
{
- "id": 13055,
+ "id": 13196,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124460,7 +124811,7 @@
}
},
{
- "id": 13056,
+ "id": 13197,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124469,7 +124820,7 @@
}
},
{
- "id": 13057,
+ "id": 13198,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124478,7 +124829,7 @@
}
},
{
- "id": 13058,
+ "id": 13199,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124487,7 +124838,7 @@
}
},
{
- "id": 13059,
+ "id": 13200,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124496,7 +124847,7 @@
}
},
{
- "id": 13060,
+ "id": 13201,
"properties": {
"facing": "east",
"half": "bottom",
@@ -124539,7 +124890,7 @@
},
"states": [
{
- "id": 14991,
+ "id": 15132,
"properties": {
"east": "none",
"north": "none",
@@ -124550,7 +124901,7 @@
}
},
{
- "id": 14992,
+ "id": 15133,
"properties": {
"east": "none",
"north": "none",
@@ -124561,7 +124912,7 @@
}
},
{
- "id": 14993,
+ "id": 15134,
"properties": {
"east": "none",
"north": "none",
@@ -124573,2339 +124924,2339 @@
},
{
"default": true,
- "id": 14994,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14995,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14996,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14997,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14998,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14999,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15000,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15001,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15002,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15003,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15004,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15005,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15006,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15007,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15008,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15009,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15010,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15011,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15012,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15013,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15014,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15015,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15016,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15017,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15018,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15019,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15020,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15021,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15022,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15023,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15024,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15025,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15026,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15027,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15028,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15029,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15030,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15031,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15032,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15033,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15034,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15035,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15036,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15037,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15038,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15039,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15040,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15041,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15042,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15043,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15044,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15045,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15046,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15047,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15048,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15049,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15050,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15051,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15052,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15053,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15054,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15055,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15056,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15057,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15058,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15059,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15060,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15061,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15062,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15063,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15064,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15065,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15066,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15067,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15068,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15069,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15070,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15071,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15072,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15073,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15074,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15075,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15076,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15077,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15078,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15079,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15080,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15081,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15082,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15083,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15084,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15085,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15086,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15087,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15088,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15089,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15090,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15091,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15092,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15093,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15094,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15095,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15096,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15097,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15098,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15099,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15100,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15101,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15102,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15103,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15104,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15105,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15106,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15107,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15108,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15109,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15110,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15111,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15112,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15113,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15114,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15115,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15116,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15117,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15118,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15119,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15120,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15121,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15122,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15123,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15124,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15125,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15126,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15127,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15128,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15129,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15130,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15131,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15132,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15133,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15134,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 15135,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15136,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15137,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15138,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15139,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15140,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15141,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15142,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15143,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15144,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15145,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15146,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15147,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15148,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15149,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15150,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15151,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15152,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15153,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15154,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15155,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15156,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15157,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15158,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15159,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15160,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15161,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15162,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15163,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15164,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15165,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15166,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15167,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15168,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15169,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15170,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15171,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15172,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15173,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15174,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15175,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15176,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15177,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15178,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15179,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15180,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15181,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15182,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15183,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15184,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15185,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15186,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15187,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15188,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15189,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15190,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15191,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15192,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15193,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15194,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15195,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15196,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15197,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15198,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15199,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15200,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15201,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15202,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15203,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15204,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15205,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15206,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15207,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15208,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15209,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15210,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15211,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15212,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15213,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15214,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15215,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15216,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15217,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15218,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15219,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15220,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15221,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15222,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15223,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15224,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15225,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15226,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15227,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15228,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15229,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15230,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15231,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15232,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15233,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15234,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15235,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15236,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15237,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15238,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15239,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15240,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15241,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15242,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15243,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15244,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15245,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15246,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15247,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15248,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15249,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15250,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15251,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15252,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15253,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15254,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15255,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15256,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15257,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15258,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15259,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15260,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15261,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15262,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15263,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15264,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15265,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15266,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15267,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15268,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15269,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15270,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15271,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15272,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15273,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15274,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15275,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15276,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15277,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15278,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15279,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15280,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15281,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15282,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15283,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15284,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15285,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15286,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15287,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15288,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15289,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15290,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15291,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15292,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15293,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15294,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15295,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15296,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15297,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15298,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15299,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15300,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15301,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15302,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15303,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15304,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15305,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15306,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15307,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15308,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15309,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15310,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15311,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15312,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15313,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15314,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15315,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15316,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15317,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15318,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15319,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15320,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15321,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15322,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15323,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15324,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15325,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15326,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15327,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15328,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15329,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15330,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15331,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15332,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15333,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15334,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15335,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15336,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15337,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15338,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15339,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15340,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15341,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15342,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15343,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15344,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15345,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15346,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15347,
"properties": {
"east": "low",
"north": "tall",
@@ -126916,7 +127267,7 @@
}
},
{
- "id": 15207,
+ "id": 15348,
"properties": {
"east": "tall",
"north": "none",
@@ -126927,7 +127278,7 @@
}
},
{
- "id": 15208,
+ "id": 15349,
"properties": {
"east": "tall",
"north": "none",
@@ -126938,7 +127289,7 @@
}
},
{
- "id": 15209,
+ "id": 15350,
"properties": {
"east": "tall",
"north": "none",
@@ -126949,7 +127300,7 @@
}
},
{
- "id": 15210,
+ "id": 15351,
"properties": {
"east": "tall",
"north": "none",
@@ -126960,7 +127311,7 @@
}
},
{
- "id": 15211,
+ "id": 15352,
"properties": {
"east": "tall",
"north": "none",
@@ -126971,7 +127322,7 @@
}
},
{
- "id": 15212,
+ "id": 15353,
"properties": {
"east": "tall",
"north": "none",
@@ -126982,7 +127333,7 @@
}
},
{
- "id": 15213,
+ "id": 15354,
"properties": {
"east": "tall",
"north": "none",
@@ -126993,7 +127344,7 @@
}
},
{
- "id": 15214,
+ "id": 15355,
"properties": {
"east": "tall",
"north": "none",
@@ -127004,7 +127355,7 @@
}
},
{
- "id": 15215,
+ "id": 15356,
"properties": {
"east": "tall",
"north": "none",
@@ -127015,7 +127366,7 @@
}
},
{
- "id": 15216,
+ "id": 15357,
"properties": {
"east": "tall",
"north": "none",
@@ -127026,7 +127377,7 @@
}
},
{
- "id": 15217,
+ "id": 15358,
"properties": {
"east": "tall",
"north": "none",
@@ -127037,7 +127388,7 @@
}
},
{
- "id": 15218,
+ "id": 15359,
"properties": {
"east": "tall",
"north": "none",
@@ -127048,7 +127399,7 @@
}
},
{
- "id": 15219,
+ "id": 15360,
"properties": {
"east": "tall",
"north": "none",
@@ -127059,7 +127410,7 @@
}
},
{
- "id": 15220,
+ "id": 15361,
"properties": {
"east": "tall",
"north": "none",
@@ -127070,7 +127421,7 @@
}
},
{
- "id": 15221,
+ "id": 15362,
"properties": {
"east": "tall",
"north": "none",
@@ -127081,7 +127432,7 @@
}
},
{
- "id": 15222,
+ "id": 15363,
"properties": {
"east": "tall",
"north": "none",
@@ -127092,7 +127443,7 @@
}
},
{
- "id": 15223,
+ "id": 15364,
"properties": {
"east": "tall",
"north": "none",
@@ -127103,7 +127454,7 @@
}
},
{
- "id": 15224,
+ "id": 15365,
"properties": {
"east": "tall",
"north": "none",
@@ -127114,7 +127465,7 @@
}
},
{
- "id": 15225,
+ "id": 15366,
"properties": {
"east": "tall",
"north": "none",
@@ -127125,7 +127476,7 @@
}
},
{
- "id": 15226,
+ "id": 15367,
"properties": {
"east": "tall",
"north": "none",
@@ -127136,7 +127487,7 @@
}
},
{
- "id": 15227,
+ "id": 15368,
"properties": {
"east": "tall",
"north": "none",
@@ -127147,7 +127498,7 @@
}
},
{
- "id": 15228,
+ "id": 15369,
"properties": {
"east": "tall",
"north": "none",
@@ -127158,7 +127509,7 @@
}
},
{
- "id": 15229,
+ "id": 15370,
"properties": {
"east": "tall",
"north": "none",
@@ -127169,7 +127520,7 @@
}
},
{
- "id": 15230,
+ "id": 15371,
"properties": {
"east": "tall",
"north": "none",
@@ -127180,7 +127531,7 @@
}
},
{
- "id": 15231,
+ "id": 15372,
"properties": {
"east": "tall",
"north": "none",
@@ -127191,7 +127542,7 @@
}
},
{
- "id": 15232,
+ "id": 15373,
"properties": {
"east": "tall",
"north": "none",
@@ -127202,7 +127553,7 @@
}
},
{
- "id": 15233,
+ "id": 15374,
"properties": {
"east": "tall",
"north": "none",
@@ -127213,7 +127564,7 @@
}
},
{
- "id": 15234,
+ "id": 15375,
"properties": {
"east": "tall",
"north": "none",
@@ -127224,7 +127575,7 @@
}
},
{
- "id": 15235,
+ "id": 15376,
"properties": {
"east": "tall",
"north": "none",
@@ -127235,7 +127586,7 @@
}
},
{
- "id": 15236,
+ "id": 15377,
"properties": {
"east": "tall",
"north": "none",
@@ -127246,7 +127597,7 @@
}
},
{
- "id": 15237,
+ "id": 15378,
"properties": {
"east": "tall",
"north": "none",
@@ -127257,7 +127608,7 @@
}
},
{
- "id": 15238,
+ "id": 15379,
"properties": {
"east": "tall",
"north": "none",
@@ -127268,7 +127619,7 @@
}
},
{
- "id": 15239,
+ "id": 15380,
"properties": {
"east": "tall",
"north": "none",
@@ -127279,7 +127630,7 @@
}
},
{
- "id": 15240,
+ "id": 15381,
"properties": {
"east": "tall",
"north": "none",
@@ -127290,7 +127641,7 @@
}
},
{
- "id": 15241,
+ "id": 15382,
"properties": {
"east": "tall",
"north": "none",
@@ -127301,7 +127652,7 @@
}
},
{
- "id": 15242,
+ "id": 15383,
"properties": {
"east": "tall",
"north": "none",
@@ -127312,7 +127663,7 @@
}
},
{
- "id": 15243,
+ "id": 15384,
"properties": {
"east": "tall",
"north": "low",
@@ -127323,7 +127674,7 @@
}
},
{
- "id": 15244,
+ "id": 15385,
"properties": {
"east": "tall",
"north": "low",
@@ -127334,7 +127685,7 @@
}
},
{
- "id": 15245,
+ "id": 15386,
"properties": {
"east": "tall",
"north": "low",
@@ -127345,7 +127696,7 @@
}
},
{
- "id": 15246,
+ "id": 15387,
"properties": {
"east": "tall",
"north": "low",
@@ -127356,7 +127707,7 @@
}
},
{
- "id": 15247,
+ "id": 15388,
"properties": {
"east": "tall",
"north": "low",
@@ -127367,7 +127718,7 @@
}
},
{
- "id": 15248,
+ "id": 15389,
"properties": {
"east": "tall",
"north": "low",
@@ -127378,7 +127729,7 @@
}
},
{
- "id": 15249,
+ "id": 15390,
"properties": {
"east": "tall",
"north": "low",
@@ -127389,7 +127740,7 @@
}
},
{
- "id": 15250,
+ "id": 15391,
"properties": {
"east": "tall",
"north": "low",
@@ -127400,7 +127751,7 @@
}
},
{
- "id": 15251,
+ "id": 15392,
"properties": {
"east": "tall",
"north": "low",
@@ -127411,7 +127762,7 @@
}
},
{
- "id": 15252,
+ "id": 15393,
"properties": {
"east": "tall",
"north": "low",
@@ -127422,7 +127773,7 @@
}
},
{
- "id": 15253,
+ "id": 15394,
"properties": {
"east": "tall",
"north": "low",
@@ -127433,7 +127784,7 @@
}
},
{
- "id": 15254,
+ "id": 15395,
"properties": {
"east": "tall",
"north": "low",
@@ -127444,7 +127795,7 @@
}
},
{
- "id": 15255,
+ "id": 15396,
"properties": {
"east": "tall",
"north": "low",
@@ -127455,7 +127806,7 @@
}
},
{
- "id": 15256,
+ "id": 15397,
"properties": {
"east": "tall",
"north": "low",
@@ -127466,7 +127817,7 @@
}
},
{
- "id": 15257,
+ "id": 15398,
"properties": {
"east": "tall",
"north": "low",
@@ -127477,7 +127828,7 @@
}
},
{
- "id": 15258,
+ "id": 15399,
"properties": {
"east": "tall",
"north": "low",
@@ -127488,7 +127839,7 @@
}
},
{
- "id": 15259,
+ "id": 15400,
"properties": {
"east": "tall",
"north": "low",
@@ -127499,7 +127850,7 @@
}
},
{
- "id": 15260,
+ "id": 15401,
"properties": {
"east": "tall",
"north": "low",
@@ -127510,7 +127861,7 @@
}
},
{
- "id": 15261,
+ "id": 15402,
"properties": {
"east": "tall",
"north": "low",
@@ -127521,7 +127872,7 @@
}
},
{
- "id": 15262,
+ "id": 15403,
"properties": {
"east": "tall",
"north": "low",
@@ -127532,7 +127883,7 @@
}
},
{
- "id": 15263,
+ "id": 15404,
"properties": {
"east": "tall",
"north": "low",
@@ -127543,7 +127894,7 @@
}
},
{
- "id": 15264,
+ "id": 15405,
"properties": {
"east": "tall",
"north": "low",
@@ -127554,7 +127905,7 @@
}
},
{
- "id": 15265,
+ "id": 15406,
"properties": {
"east": "tall",
"north": "low",
@@ -127565,7 +127916,7 @@
}
},
{
- "id": 15266,
+ "id": 15407,
"properties": {
"east": "tall",
"north": "low",
@@ -127576,7 +127927,7 @@
}
},
{
- "id": 15267,
+ "id": 15408,
"properties": {
"east": "tall",
"north": "low",
@@ -127587,7 +127938,7 @@
}
},
{
- "id": 15268,
+ "id": 15409,
"properties": {
"east": "tall",
"north": "low",
@@ -127598,7 +127949,7 @@
}
},
{
- "id": 15269,
+ "id": 15410,
"properties": {
"east": "tall",
"north": "low",
@@ -127609,7 +127960,7 @@
}
},
{
- "id": 15270,
+ "id": 15411,
"properties": {
"east": "tall",
"north": "low",
@@ -127620,7 +127971,7 @@
}
},
{
- "id": 15271,
+ "id": 15412,
"properties": {
"east": "tall",
"north": "low",
@@ -127631,7 +127982,7 @@
}
},
{
- "id": 15272,
+ "id": 15413,
"properties": {
"east": "tall",
"north": "low",
@@ -127642,7 +127993,7 @@
}
},
{
- "id": 15273,
+ "id": 15414,
"properties": {
"east": "tall",
"north": "low",
@@ -127653,7 +128004,7 @@
}
},
{
- "id": 15274,
+ "id": 15415,
"properties": {
"east": "tall",
"north": "low",
@@ -127664,7 +128015,7 @@
}
},
{
- "id": 15275,
+ "id": 15416,
"properties": {
"east": "tall",
"north": "low",
@@ -127675,7 +128026,7 @@
}
},
{
- "id": 15276,
+ "id": 15417,
"properties": {
"east": "tall",
"north": "low",
@@ -127686,7 +128037,7 @@
}
},
{
- "id": 15277,
+ "id": 15418,
"properties": {
"east": "tall",
"north": "low",
@@ -127697,7 +128048,7 @@
}
},
{
- "id": 15278,
+ "id": 15419,
"properties": {
"east": "tall",
"north": "low",
@@ -127708,7 +128059,7 @@
}
},
{
- "id": 15279,
+ "id": 15420,
"properties": {
"east": "tall",
"north": "tall",
@@ -127719,7 +128070,7 @@
}
},
{
- "id": 15280,
+ "id": 15421,
"properties": {
"east": "tall",
"north": "tall",
@@ -127730,7 +128081,7 @@
}
},
{
- "id": 15281,
+ "id": 15422,
"properties": {
"east": "tall",
"north": "tall",
@@ -127741,7 +128092,7 @@
}
},
{
- "id": 15282,
+ "id": 15423,
"properties": {
"east": "tall",
"north": "tall",
@@ -127752,7 +128103,7 @@
}
},
{
- "id": 15283,
+ "id": 15424,
"properties": {
"east": "tall",
"north": "tall",
@@ -127763,7 +128114,7 @@
}
},
{
- "id": 15284,
+ "id": 15425,
"properties": {
"east": "tall",
"north": "tall",
@@ -127774,7 +128125,7 @@
}
},
{
- "id": 15285,
+ "id": 15426,
"properties": {
"east": "tall",
"north": "tall",
@@ -127785,7 +128136,7 @@
}
},
{
- "id": 15286,
+ "id": 15427,
"properties": {
"east": "tall",
"north": "tall",
@@ -127796,7 +128147,7 @@
}
},
{
- "id": 15287,
+ "id": 15428,
"properties": {
"east": "tall",
"north": "tall",
@@ -127807,7 +128158,7 @@
}
},
{
- "id": 15288,
+ "id": 15429,
"properties": {
"east": "tall",
"north": "tall",
@@ -127818,7 +128169,7 @@
}
},
{
- "id": 15289,
+ "id": 15430,
"properties": {
"east": "tall",
"north": "tall",
@@ -127829,7 +128180,7 @@
}
},
{
- "id": 15290,
+ "id": 15431,
"properties": {
"east": "tall",
"north": "tall",
@@ -127840,7 +128191,7 @@
}
},
{
- "id": 15291,
+ "id": 15432,
"properties": {
"east": "tall",
"north": "tall",
@@ -127851,7 +128202,7 @@
}
},
{
- "id": 15292,
+ "id": 15433,
"properties": {
"east": "tall",
"north": "tall",
@@ -127862,7 +128213,7 @@
}
},
{
- "id": 15293,
+ "id": 15434,
"properties": {
"east": "tall",
"north": "tall",
@@ -127873,7 +128224,7 @@
}
},
{
- "id": 15294,
+ "id": 15435,
"properties": {
"east": "tall",
"north": "tall",
@@ -127884,7 +128235,7 @@
}
},
{
- "id": 15295,
+ "id": 15436,
"properties": {
"east": "tall",
"north": "tall",
@@ -127895,7 +128246,7 @@
}
},
{
- "id": 15296,
+ "id": 15437,
"properties": {
"east": "tall",
"north": "tall",
@@ -127906,7 +128257,7 @@
}
},
{
- "id": 15297,
+ "id": 15438,
"properties": {
"east": "tall",
"north": "tall",
@@ -127917,7 +128268,7 @@
}
},
{
- "id": 15298,
+ "id": 15439,
"properties": {
"east": "tall",
"north": "tall",
@@ -127928,7 +128279,7 @@
}
},
{
- "id": 15299,
+ "id": 15440,
"properties": {
"east": "tall",
"north": "tall",
@@ -127939,7 +128290,7 @@
}
},
{
- "id": 15300,
+ "id": 15441,
"properties": {
"east": "tall",
"north": "tall",
@@ -127950,7 +128301,7 @@
}
},
{
- "id": 15301,
+ "id": 15442,
"properties": {
"east": "tall",
"north": "tall",
@@ -127961,7 +128312,7 @@
}
},
{
- "id": 15302,
+ "id": 15443,
"properties": {
"east": "tall",
"north": "tall",
@@ -127972,7 +128323,7 @@
}
},
{
- "id": 15303,
+ "id": 15444,
"properties": {
"east": "tall",
"north": "tall",
@@ -127983,7 +128334,7 @@
}
},
{
- "id": 15304,
+ "id": 15445,
"properties": {
"east": "tall",
"north": "tall",
@@ -127994,7 +128345,7 @@
}
},
{
- "id": 15305,
+ "id": 15446,
"properties": {
"east": "tall",
"north": "tall",
@@ -128005,7 +128356,7 @@
}
},
{
- "id": 15306,
+ "id": 15447,
"properties": {
"east": "tall",
"north": "tall",
@@ -128016,7 +128367,7 @@
}
},
{
- "id": 15307,
+ "id": 15448,
"properties": {
"east": "tall",
"north": "tall",
@@ -128027,7 +128378,7 @@
}
},
{
- "id": 15308,
+ "id": 15449,
"properties": {
"east": "tall",
"north": "tall",
@@ -128038,7 +128389,7 @@
}
},
{
- "id": 15309,
+ "id": 15450,
"properties": {
"east": "tall",
"north": "tall",
@@ -128049,7 +128400,7 @@
}
},
{
- "id": 15310,
+ "id": 15451,
"properties": {
"east": "tall",
"north": "tall",
@@ -128060,7 +128411,7 @@
}
},
{
- "id": 15311,
+ "id": 15452,
"properties": {
"east": "tall",
"north": "tall",
@@ -128071,7 +128422,7 @@
}
},
{
- "id": 15312,
+ "id": 15453,
"properties": {
"east": "tall",
"north": "tall",
@@ -128082,7 +128433,7 @@
}
},
{
- "id": 15313,
+ "id": 15454,
"properties": {
"east": "tall",
"north": "tall",
@@ -128093,7 +128444,7 @@
}
},
{
- "id": 15314,
+ "id": 15455,
"properties": {
"east": "tall",
"north": "tall",
@@ -128220,7 +128571,7 @@
"states": [
{
"default": true,
- "id": 22448
+ "id": 22589
}
]
},
@@ -128238,21 +128589,21 @@
},
"states": [
{
- "id": 11129,
+ "id": 11270,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11130,
+ "id": 11271,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11131,
+ "id": 11272,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -128260,21 +128611,21 @@
},
{
"default": true,
- "id": 11132,
+ "id": 11273,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11133,
+ "id": 11274,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11134,
+ "id": 11275,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -129063,7 +129414,7 @@
},
"states": [
{
- "id": 15963,
+ "id": 16104,
"properties": {
"east": "none",
"north": "none",
@@ -129074,7 +129425,7 @@
}
},
{
- "id": 15964,
+ "id": 16105,
"properties": {
"east": "none",
"north": "none",
@@ -129085,7 +129436,7 @@
}
},
{
- "id": 15965,
+ "id": 16106,
"properties": {
"east": "none",
"north": "none",
@@ -129097,2339 +129448,2339 @@
},
{
"default": true,
- "id": 15966,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15967,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15968,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15969,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15970,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15971,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15972,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15973,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15974,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15975,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15976,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15977,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15978,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15979,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15980,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15981,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15982,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15983,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15984,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15985,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15986,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15987,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15988,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15989,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15990,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15991,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15992,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15993,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15994,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15995,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15996,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15997,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15998,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15999,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16000,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16001,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16002,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16003,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16004,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16005,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16006,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16007,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16008,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16009,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16010,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16011,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16012,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16013,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16014,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16015,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16016,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16017,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16018,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16019,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16020,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16021,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16022,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16023,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16024,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16025,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16026,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16027,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16028,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16029,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16030,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16031,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16032,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16033,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16034,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16035,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16036,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16037,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16038,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16039,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16040,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16041,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16042,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16043,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16044,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16045,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16046,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16047,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16048,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16049,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16050,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16051,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16052,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16053,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16054,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16055,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16056,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16057,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16058,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16059,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16060,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16061,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16062,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16063,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16064,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16065,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16066,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16067,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16068,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16069,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16070,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16071,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16072,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16073,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16074,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16075,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16076,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16077,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16078,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16079,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16080,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16081,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16082,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16083,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16084,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16085,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16086,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16087,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16088,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16089,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16090,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16091,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16092,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16093,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16094,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16095,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16096,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16097,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16098,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16099,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16100,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16101,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16102,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16103,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16104,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16105,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16106,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 16107,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16108,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16109,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16110,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16111,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16112,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16113,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16114,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16115,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16116,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16117,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16118,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16119,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16120,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16121,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16122,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16123,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16124,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16125,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16126,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16127,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16128,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16129,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16130,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16131,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16132,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16133,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16134,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16135,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16136,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16137,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16138,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16139,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16140,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16141,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16142,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16143,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16144,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16145,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16146,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16147,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16148,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16149,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16150,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16151,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16152,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16153,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16154,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16155,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16156,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16157,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16158,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16159,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16160,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16161,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16162,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16163,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16164,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16165,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16166,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16167,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16168,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16169,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16170,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16171,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16172,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16173,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16174,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16175,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16176,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16177,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16178,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16179,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16180,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16181,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16182,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16183,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16184,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16185,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16186,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16187,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16188,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16189,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16190,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16191,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16192,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16193,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16194,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16195,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16196,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16197,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16198,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16199,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16200,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16201,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16202,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16203,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16204,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16205,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16206,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16207,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16208,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16209,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16210,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16211,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16212,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16213,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16214,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16215,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16216,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16217,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16218,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16219,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16220,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16221,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16222,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16223,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16224,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16225,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16226,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16227,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16228,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16229,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16230,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16231,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16232,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16233,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16234,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16235,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16236,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16237,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16238,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16239,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16240,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16241,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16242,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16243,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16244,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16245,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16246,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16247,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16248,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16249,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16250,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16251,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16252,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16253,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16254,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16255,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16256,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16257,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16258,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16259,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16260,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16261,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16262,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16263,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16264,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16265,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16266,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16267,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16268,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16269,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16270,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16271,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16272,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16273,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16274,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16275,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16276,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16277,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16278,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16279,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16280,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16281,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16282,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16283,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16284,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16285,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16286,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16287,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16288,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16289,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16290,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16291,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16292,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16293,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16294,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16295,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16296,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16297,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16298,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16299,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16300,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16301,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16302,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16303,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16304,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16305,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16306,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16307,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16308,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16309,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16310,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16311,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16312,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16313,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16314,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16315,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16316,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16317,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16318,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16319,
"properties": {
"east": "low",
"north": "tall",
@@ -131440,7 +131791,7 @@
}
},
{
- "id": 16179,
+ "id": 16320,
"properties": {
"east": "tall",
"north": "none",
@@ -131451,7 +131802,7 @@
}
},
{
- "id": 16180,
+ "id": 16321,
"properties": {
"east": "tall",
"north": "none",
@@ -131462,7 +131813,7 @@
}
},
{
- "id": 16181,
+ "id": 16322,
"properties": {
"east": "tall",
"north": "none",
@@ -131473,7 +131824,7 @@
}
},
{
- "id": 16182,
+ "id": 16323,
"properties": {
"east": "tall",
"north": "none",
@@ -131484,7 +131835,7 @@
}
},
{
- "id": 16183,
+ "id": 16324,
"properties": {
"east": "tall",
"north": "none",
@@ -131495,7 +131846,7 @@
}
},
{
- "id": 16184,
+ "id": 16325,
"properties": {
"east": "tall",
"north": "none",
@@ -131506,7 +131857,7 @@
}
},
{
- "id": 16185,
+ "id": 16326,
"properties": {
"east": "tall",
"north": "none",
@@ -131517,7 +131868,7 @@
}
},
{
- "id": 16186,
+ "id": 16327,
"properties": {
"east": "tall",
"north": "none",
@@ -131528,7 +131879,7 @@
}
},
{
- "id": 16187,
+ "id": 16328,
"properties": {
"east": "tall",
"north": "none",
@@ -131539,7 +131890,7 @@
}
},
{
- "id": 16188,
+ "id": 16329,
"properties": {
"east": "tall",
"north": "none",
@@ -131550,7 +131901,7 @@
}
},
{
- "id": 16189,
+ "id": 16330,
"properties": {
"east": "tall",
"north": "none",
@@ -131561,7 +131912,7 @@
}
},
{
- "id": 16190,
+ "id": 16331,
"properties": {
"east": "tall",
"north": "none",
@@ -131572,7 +131923,7 @@
}
},
{
- "id": 16191,
+ "id": 16332,
"properties": {
"east": "tall",
"north": "none",
@@ -131583,7 +131934,7 @@
}
},
{
- "id": 16192,
+ "id": 16333,
"properties": {
"east": "tall",
"north": "none",
@@ -131594,7 +131945,7 @@
}
},
{
- "id": 16193,
+ "id": 16334,
"properties": {
"east": "tall",
"north": "none",
@@ -131605,7 +131956,7 @@
}
},
{
- "id": 16194,
+ "id": 16335,
"properties": {
"east": "tall",
"north": "none",
@@ -131616,7 +131967,7 @@
}
},
{
- "id": 16195,
+ "id": 16336,
"properties": {
"east": "tall",
"north": "none",
@@ -131627,7 +131978,7 @@
}
},
{
- "id": 16196,
+ "id": 16337,
"properties": {
"east": "tall",
"north": "none",
@@ -131638,7 +131989,7 @@
}
},
{
- "id": 16197,
+ "id": 16338,
"properties": {
"east": "tall",
"north": "none",
@@ -131649,7 +132000,7 @@
}
},
{
- "id": 16198,
+ "id": 16339,
"properties": {
"east": "tall",
"north": "none",
@@ -131660,7 +132011,7 @@
}
},
{
- "id": 16199,
+ "id": 16340,
"properties": {
"east": "tall",
"north": "none",
@@ -131671,7 +132022,7 @@
}
},
{
- "id": 16200,
+ "id": 16341,
"properties": {
"east": "tall",
"north": "none",
@@ -131682,7 +132033,7 @@
}
},
{
- "id": 16201,
+ "id": 16342,
"properties": {
"east": "tall",
"north": "none",
@@ -131693,7 +132044,7 @@
}
},
{
- "id": 16202,
+ "id": 16343,
"properties": {
"east": "tall",
"north": "none",
@@ -131704,7 +132055,7 @@
}
},
{
- "id": 16203,
+ "id": 16344,
"properties": {
"east": "tall",
"north": "none",
@@ -131715,7 +132066,7 @@
}
},
{
- "id": 16204,
+ "id": 16345,
"properties": {
"east": "tall",
"north": "none",
@@ -131726,7 +132077,7 @@
}
},
{
- "id": 16205,
+ "id": 16346,
"properties": {
"east": "tall",
"north": "none",
@@ -131737,7 +132088,7 @@
}
},
{
- "id": 16206,
+ "id": 16347,
"properties": {
"east": "tall",
"north": "none",
@@ -131748,7 +132099,7 @@
}
},
{
- "id": 16207,
+ "id": 16348,
"properties": {
"east": "tall",
"north": "none",
@@ -131759,7 +132110,7 @@
}
},
{
- "id": 16208,
+ "id": 16349,
"properties": {
"east": "tall",
"north": "none",
@@ -131770,7 +132121,7 @@
}
},
{
- "id": 16209,
+ "id": 16350,
"properties": {
"east": "tall",
"north": "none",
@@ -131781,7 +132132,7 @@
}
},
{
- "id": 16210,
+ "id": 16351,
"properties": {
"east": "tall",
"north": "none",
@@ -131792,7 +132143,7 @@
}
},
{
- "id": 16211,
+ "id": 16352,
"properties": {
"east": "tall",
"north": "none",
@@ -131803,7 +132154,7 @@
}
},
{
- "id": 16212,
+ "id": 16353,
"properties": {
"east": "tall",
"north": "none",
@@ -131814,7 +132165,7 @@
}
},
{
- "id": 16213,
+ "id": 16354,
"properties": {
"east": "tall",
"north": "none",
@@ -131825,7 +132176,7 @@
}
},
{
- "id": 16214,
+ "id": 16355,
"properties": {
"east": "tall",
"north": "none",
@@ -131836,7 +132187,7 @@
}
},
{
- "id": 16215,
+ "id": 16356,
"properties": {
"east": "tall",
"north": "low",
@@ -131847,7 +132198,7 @@
}
},
{
- "id": 16216,
+ "id": 16357,
"properties": {
"east": "tall",
"north": "low",
@@ -131858,7 +132209,7 @@
}
},
{
- "id": 16217,
+ "id": 16358,
"properties": {
"east": "tall",
"north": "low",
@@ -131869,7 +132220,7 @@
}
},
{
- "id": 16218,
+ "id": 16359,
"properties": {
"east": "tall",
"north": "low",
@@ -131880,7 +132231,7 @@
}
},
{
- "id": 16219,
+ "id": 16360,
"properties": {
"east": "tall",
"north": "low",
@@ -131891,7 +132242,7 @@
}
},
{
- "id": 16220,
+ "id": 16361,
"properties": {
"east": "tall",
"north": "low",
@@ -131902,7 +132253,7 @@
}
},
{
- "id": 16221,
+ "id": 16362,
"properties": {
"east": "tall",
"north": "low",
@@ -131913,7 +132264,7 @@
}
},
{
- "id": 16222,
+ "id": 16363,
"properties": {
"east": "tall",
"north": "low",
@@ -131924,7 +132275,7 @@
}
},
{
- "id": 16223,
+ "id": 16364,
"properties": {
"east": "tall",
"north": "low",
@@ -131935,7 +132286,7 @@
}
},
{
- "id": 16224,
+ "id": 16365,
"properties": {
"east": "tall",
"north": "low",
@@ -131946,7 +132297,7 @@
}
},
{
- "id": 16225,
+ "id": 16366,
"properties": {
"east": "tall",
"north": "low",
@@ -131957,7 +132308,7 @@
}
},
{
- "id": 16226,
+ "id": 16367,
"properties": {
"east": "tall",
"north": "low",
@@ -131968,7 +132319,7 @@
}
},
{
- "id": 16227,
+ "id": 16368,
"properties": {
"east": "tall",
"north": "low",
@@ -131979,7 +132330,7 @@
}
},
{
- "id": 16228,
+ "id": 16369,
"properties": {
"east": "tall",
"north": "low",
@@ -131990,7 +132341,7 @@
}
},
{
- "id": 16229,
+ "id": 16370,
"properties": {
"east": "tall",
"north": "low",
@@ -132001,7 +132352,7 @@
}
},
{
- "id": 16230,
+ "id": 16371,
"properties": {
"east": "tall",
"north": "low",
@@ -132012,7 +132363,7 @@
}
},
{
- "id": 16231,
+ "id": 16372,
"properties": {
"east": "tall",
"north": "low",
@@ -132023,7 +132374,7 @@
}
},
{
- "id": 16232,
+ "id": 16373,
"properties": {
"east": "tall",
"north": "low",
@@ -132034,7 +132385,7 @@
}
},
{
- "id": 16233,
+ "id": 16374,
"properties": {
"east": "tall",
"north": "low",
@@ -132045,7 +132396,7 @@
}
},
{
- "id": 16234,
+ "id": 16375,
"properties": {
"east": "tall",
"north": "low",
@@ -132056,7 +132407,7 @@
}
},
{
- "id": 16235,
+ "id": 16376,
"properties": {
"east": "tall",
"north": "low",
@@ -132067,7 +132418,7 @@
}
},
{
- "id": 16236,
+ "id": 16377,
"properties": {
"east": "tall",
"north": "low",
@@ -132078,7 +132429,7 @@
}
},
{
- "id": 16237,
+ "id": 16378,
"properties": {
"east": "tall",
"north": "low",
@@ -132089,7 +132440,7 @@
}
},
{
- "id": 16238,
+ "id": 16379,
"properties": {
"east": "tall",
"north": "low",
@@ -132100,7 +132451,7 @@
}
},
{
- "id": 16239,
+ "id": 16380,
"properties": {
"east": "tall",
"north": "low",
@@ -132111,7 +132462,7 @@
}
},
{
- "id": 16240,
+ "id": 16381,
"properties": {
"east": "tall",
"north": "low",
@@ -132122,7 +132473,7 @@
}
},
{
- "id": 16241,
+ "id": 16382,
"properties": {
"east": "tall",
"north": "low",
@@ -132133,7 +132484,7 @@
}
},
{
- "id": 16242,
+ "id": 16383,
"properties": {
"east": "tall",
"north": "low",
@@ -132144,7 +132495,7 @@
}
},
{
- "id": 16243,
+ "id": 16384,
"properties": {
"east": "tall",
"north": "low",
@@ -132155,7 +132506,7 @@
}
},
{
- "id": 16244,
+ "id": 16385,
"properties": {
"east": "tall",
"north": "low",
@@ -132166,7 +132517,7 @@
}
},
{
- "id": 16245,
+ "id": 16386,
"properties": {
"east": "tall",
"north": "low",
@@ -132177,7 +132528,7 @@
}
},
{
- "id": 16246,
+ "id": 16387,
"properties": {
"east": "tall",
"north": "low",
@@ -132188,7 +132539,7 @@
}
},
{
- "id": 16247,
+ "id": 16388,
"properties": {
"east": "tall",
"north": "low",
@@ -132199,7 +132550,7 @@
}
},
{
- "id": 16248,
+ "id": 16389,
"properties": {
"east": "tall",
"north": "low",
@@ -132210,7 +132561,7 @@
}
},
{
- "id": 16249,
+ "id": 16390,
"properties": {
"east": "tall",
"north": "low",
@@ -132221,7 +132572,7 @@
}
},
{
- "id": 16250,
+ "id": 16391,
"properties": {
"east": "tall",
"north": "low",
@@ -132232,7 +132583,7 @@
}
},
{
- "id": 16251,
+ "id": 16392,
"properties": {
"east": "tall",
"north": "tall",
@@ -132243,7 +132594,7 @@
}
},
{
- "id": 16252,
+ "id": 16393,
"properties": {
"east": "tall",
"north": "tall",
@@ -132254,7 +132605,7 @@
}
},
{
- "id": 16253,
+ "id": 16394,
"properties": {
"east": "tall",
"north": "tall",
@@ -132265,7 +132616,7 @@
}
},
{
- "id": 16254,
+ "id": 16395,
"properties": {
"east": "tall",
"north": "tall",
@@ -132276,7 +132627,7 @@
}
},
{
- "id": 16255,
+ "id": 16396,
"properties": {
"east": "tall",
"north": "tall",
@@ -132287,7 +132638,7 @@
}
},
{
- "id": 16256,
+ "id": 16397,
"properties": {
"east": "tall",
"north": "tall",
@@ -132298,7 +132649,7 @@
}
},
{
- "id": 16257,
+ "id": 16398,
"properties": {
"east": "tall",
"north": "tall",
@@ -132309,7 +132660,7 @@
}
},
{
- "id": 16258,
+ "id": 16399,
"properties": {
"east": "tall",
"north": "tall",
@@ -132320,7 +132671,7 @@
}
},
{
- "id": 16259,
+ "id": 16400,
"properties": {
"east": "tall",
"north": "tall",
@@ -132331,7 +132682,7 @@
}
},
{
- "id": 16260,
+ "id": 16401,
"properties": {
"east": "tall",
"north": "tall",
@@ -132342,7 +132693,7 @@
}
},
{
- "id": 16261,
+ "id": 16402,
"properties": {
"east": "tall",
"north": "tall",
@@ -132353,7 +132704,7 @@
}
},
{
- "id": 16262,
+ "id": 16403,
"properties": {
"east": "tall",
"north": "tall",
@@ -132364,7 +132715,7 @@
}
},
{
- "id": 16263,
+ "id": 16404,
"properties": {
"east": "tall",
"north": "tall",
@@ -132375,7 +132726,7 @@
}
},
{
- "id": 16264,
+ "id": 16405,
"properties": {
"east": "tall",
"north": "tall",
@@ -132386,7 +132737,7 @@
}
},
{
- "id": 16265,
+ "id": 16406,
"properties": {
"east": "tall",
"north": "tall",
@@ -132397,7 +132748,7 @@
}
},
{
- "id": 16266,
+ "id": 16407,
"properties": {
"east": "tall",
"north": "tall",
@@ -132408,7 +132759,7 @@
}
},
{
- "id": 16267,
+ "id": 16408,
"properties": {
"east": "tall",
"north": "tall",
@@ -132419,7 +132770,7 @@
}
},
{
- "id": 16268,
+ "id": 16409,
"properties": {
"east": "tall",
"north": "tall",
@@ -132430,7 +132781,7 @@
}
},
{
- "id": 16269,
+ "id": 16410,
"properties": {
"east": "tall",
"north": "tall",
@@ -132441,7 +132792,7 @@
}
},
{
- "id": 16270,
+ "id": 16411,
"properties": {
"east": "tall",
"north": "tall",
@@ -132452,7 +132803,7 @@
}
},
{
- "id": 16271,
+ "id": 16412,
"properties": {
"east": "tall",
"north": "tall",
@@ -132463,7 +132814,7 @@
}
},
{
- "id": 16272,
+ "id": 16413,
"properties": {
"east": "tall",
"north": "tall",
@@ -132474,7 +132825,7 @@
}
},
{
- "id": 16273,
+ "id": 16414,
"properties": {
"east": "tall",
"north": "tall",
@@ -132485,7 +132836,7 @@
}
},
{
- "id": 16274,
+ "id": 16415,
"properties": {
"east": "tall",
"north": "tall",
@@ -132496,7 +132847,7 @@
}
},
{
- "id": 16275,
+ "id": 16416,
"properties": {
"east": "tall",
"north": "tall",
@@ -132507,7 +132858,7 @@
}
},
{
- "id": 16276,
+ "id": 16417,
"properties": {
"east": "tall",
"north": "tall",
@@ -132518,7 +132869,7 @@
}
},
{
- "id": 16277,
+ "id": 16418,
"properties": {
"east": "tall",
"north": "tall",
@@ -132529,7 +132880,7 @@
}
},
{
- "id": 16278,
+ "id": 16419,
"properties": {
"east": "tall",
"north": "tall",
@@ -132540,7 +132891,7 @@
}
},
{
- "id": 16279,
+ "id": 16420,
"properties": {
"east": "tall",
"north": "tall",
@@ -132551,7 +132902,7 @@
}
},
{
- "id": 16280,
+ "id": 16421,
"properties": {
"east": "tall",
"north": "tall",
@@ -132562,7 +132913,7 @@
}
},
{
- "id": 16281,
+ "id": 16422,
"properties": {
"east": "tall",
"north": "tall",
@@ -132573,7 +132924,7 @@
}
},
{
- "id": 16282,
+ "id": 16423,
"properties": {
"east": "tall",
"north": "tall",
@@ -132584,7 +132935,7 @@
}
},
{
- "id": 16283,
+ "id": 16424,
"properties": {
"east": "tall",
"north": "tall",
@@ -132595,7 +132946,7 @@
}
},
{
- "id": 16284,
+ "id": 16425,
"properties": {
"east": "tall",
"north": "tall",
@@ -132606,7 +132957,7 @@
}
},
{
- "id": 16285,
+ "id": 16426,
"properties": {
"east": "tall",
"north": "tall",
@@ -132617,7 +132968,7 @@
}
},
{
- "id": 16286,
+ "id": 16427,
"properties": {
"east": "tall",
"north": "tall",
@@ -133786,21 +134137,21 @@
},
"states": [
{
- "id": 11135,
+ "id": 11276,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11136,
+ "id": 11277,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11137,
+ "id": 11278,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -133808,21 +134159,21 @@
},
{
"default": true,
- "id": 11138,
+ "id": 11279,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11139,
+ "id": 11280,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11140,
+ "id": 11281,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -134611,7 +134962,7 @@
},
"states": [
{
- "id": 16287,
+ "id": 16428,
"properties": {
"east": "none",
"north": "none",
@@ -134622,7 +134973,7 @@
}
},
{
- "id": 16288,
+ "id": 16429,
"properties": {
"east": "none",
"north": "none",
@@ -134633,7 +134984,7 @@
}
},
{
- "id": 16289,
+ "id": 16430,
"properties": {
"east": "none",
"north": "none",
@@ -134645,2339 +134996,2339 @@
},
{
"default": true,
- "id": 16290,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16291,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16292,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16293,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16294,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16295,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16296,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16297,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16298,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16299,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16300,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16301,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16302,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16303,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16304,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16305,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16306,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16307,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16308,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16309,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16310,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16311,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16312,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16313,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16314,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16315,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16316,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16317,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16318,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16319,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16320,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16321,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16322,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16323,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16324,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16325,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16326,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16327,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16328,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16329,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16330,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16331,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16332,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16333,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16334,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16335,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16336,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16337,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16338,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16339,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16340,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16341,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16342,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16343,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16344,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16345,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16346,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16347,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16348,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16349,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16350,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16351,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16352,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16353,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16354,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16355,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16356,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16357,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16358,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16359,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16360,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16361,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16362,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16363,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16364,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16365,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16366,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16367,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16368,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16369,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16370,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16371,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16372,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16373,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16374,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16375,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16376,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16377,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16378,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16379,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16380,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16381,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16382,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16383,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16384,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16385,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16386,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16387,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16388,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16389,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16390,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16391,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16392,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16393,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16394,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16395,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16396,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16397,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16398,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16399,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16400,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16401,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16402,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16403,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16404,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16405,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16406,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16407,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16408,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16409,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16410,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16411,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16412,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16413,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16414,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16415,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16416,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16417,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16418,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16419,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16420,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16421,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16422,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16423,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16424,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16425,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16426,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16427,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16428,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16429,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16430,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 16431,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16432,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16433,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16434,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16435,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16436,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16437,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16438,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16439,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16440,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16441,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16442,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16443,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16444,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16445,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16446,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16447,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16448,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16449,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16450,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16451,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16452,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16453,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16454,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16455,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16456,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16457,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16458,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16459,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16460,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16461,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16462,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16463,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16464,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16465,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16466,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16467,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16468,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16469,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16470,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16471,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16472,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16473,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16474,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16475,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16476,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16477,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16478,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16479,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16480,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16481,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16482,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16483,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16484,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16485,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16486,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16487,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16488,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16489,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16490,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16491,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16492,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16493,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16494,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16495,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16496,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 16497,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 16498,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 16499,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 16500,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 16501,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 16502,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16503,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16504,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16505,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16506,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16507,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16508,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16509,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16510,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16511,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16512,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16513,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16514,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16515,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16516,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16517,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16518,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16519,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16520,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16521,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16522,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16523,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16524,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16525,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16526,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16527,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16528,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16529,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16530,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16531,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16532,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16533,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16534,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16535,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16536,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16537,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16538,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16539,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16540,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16541,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16542,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16543,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16544,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16545,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16546,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16547,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16548,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16549,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16550,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16551,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16552,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16553,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16554,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16555,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16556,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16557,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16558,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16559,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16560,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16561,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16562,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16563,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16564,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16565,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16566,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16567,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16568,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16569,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16570,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16571,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16572,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16573,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16574,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16575,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16576,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16577,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16578,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16579,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16580,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16581,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16582,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16583,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16584,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16585,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16586,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16587,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16588,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16589,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16590,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16591,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16592,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16593,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16594,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16595,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16596,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16597,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16598,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16599,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16600,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16601,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16602,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16603,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16604,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16605,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16606,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16607,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16608,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16609,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16610,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16611,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16612,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16613,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16614,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16615,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16616,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16617,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16618,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16619,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16620,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16621,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16622,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16623,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16624,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16625,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16626,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16627,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16628,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16629,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16630,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16631,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16632,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16633,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16634,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16635,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16636,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16637,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16638,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16639,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16640,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 16641,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 16642,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 16643,
"properties": {
"east": "low",
"north": "tall",
@@ -136988,7 +137339,7 @@
}
},
{
- "id": 16503,
+ "id": 16644,
"properties": {
"east": "tall",
"north": "none",
@@ -136999,7 +137350,7 @@
}
},
{
- "id": 16504,
+ "id": 16645,
"properties": {
"east": "tall",
"north": "none",
@@ -137010,7 +137361,7 @@
}
},
{
- "id": 16505,
+ "id": 16646,
"properties": {
"east": "tall",
"north": "none",
@@ -137021,7 +137372,7 @@
}
},
{
- "id": 16506,
+ "id": 16647,
"properties": {
"east": "tall",
"north": "none",
@@ -137032,7 +137383,7 @@
}
},
{
- "id": 16507,
+ "id": 16648,
"properties": {
"east": "tall",
"north": "none",
@@ -137043,7 +137394,7 @@
}
},
{
- "id": 16508,
+ "id": 16649,
"properties": {
"east": "tall",
"north": "none",
@@ -137054,7 +137405,7 @@
}
},
{
- "id": 16509,
+ "id": 16650,
"properties": {
"east": "tall",
"north": "none",
@@ -137065,7 +137416,7 @@
}
},
{
- "id": 16510,
+ "id": 16651,
"properties": {
"east": "tall",
"north": "none",
@@ -137076,7 +137427,7 @@
}
},
{
- "id": 16511,
+ "id": 16652,
"properties": {
"east": "tall",
"north": "none",
@@ -137087,7 +137438,7 @@
}
},
{
- "id": 16512,
+ "id": 16653,
"properties": {
"east": "tall",
"north": "none",
@@ -137098,7 +137449,7 @@
}
},
{
- "id": 16513,
+ "id": 16654,
"properties": {
"east": "tall",
"north": "none",
@@ -137109,7 +137460,7 @@
}
},
{
- "id": 16514,
+ "id": 16655,
"properties": {
"east": "tall",
"north": "none",
@@ -137120,7 +137471,7 @@
}
},
{
- "id": 16515,
+ "id": 16656,
"properties": {
"east": "tall",
"north": "none",
@@ -137131,7 +137482,7 @@
}
},
{
- "id": 16516,
+ "id": 16657,
"properties": {
"east": "tall",
"north": "none",
@@ -137142,7 +137493,7 @@
}
},
{
- "id": 16517,
+ "id": 16658,
"properties": {
"east": "tall",
"north": "none",
@@ -137153,7 +137504,7 @@
}
},
{
- "id": 16518,
+ "id": 16659,
"properties": {
"east": "tall",
"north": "none",
@@ -137164,7 +137515,7 @@
}
},
{
- "id": 16519,
+ "id": 16660,
"properties": {
"east": "tall",
"north": "none",
@@ -137175,7 +137526,7 @@
}
},
{
- "id": 16520,
+ "id": 16661,
"properties": {
"east": "tall",
"north": "none",
@@ -137186,7 +137537,7 @@
}
},
{
- "id": 16521,
+ "id": 16662,
"properties": {
"east": "tall",
"north": "none",
@@ -137197,7 +137548,7 @@
}
},
{
- "id": 16522,
+ "id": 16663,
"properties": {
"east": "tall",
"north": "none",
@@ -137208,7 +137559,7 @@
}
},
{
- "id": 16523,
+ "id": 16664,
"properties": {
"east": "tall",
"north": "none",
@@ -137219,7 +137570,7 @@
}
},
{
- "id": 16524,
+ "id": 16665,
"properties": {
"east": "tall",
"north": "none",
@@ -137230,7 +137581,7 @@
}
},
{
- "id": 16525,
+ "id": 16666,
"properties": {
"east": "tall",
"north": "none",
@@ -137241,7 +137592,7 @@
}
},
{
- "id": 16526,
+ "id": 16667,
"properties": {
"east": "tall",
"north": "none",
@@ -137252,7 +137603,7 @@
}
},
{
- "id": 16527,
+ "id": 16668,
"properties": {
"east": "tall",
"north": "none",
@@ -137263,7 +137614,7 @@
}
},
{
- "id": 16528,
+ "id": 16669,
"properties": {
"east": "tall",
"north": "none",
@@ -137274,7 +137625,7 @@
}
},
{
- "id": 16529,
+ "id": 16670,
"properties": {
"east": "tall",
"north": "none",
@@ -137285,7 +137636,7 @@
}
},
{
- "id": 16530,
+ "id": 16671,
"properties": {
"east": "tall",
"north": "none",
@@ -137296,7 +137647,7 @@
}
},
{
- "id": 16531,
+ "id": 16672,
"properties": {
"east": "tall",
"north": "none",
@@ -137307,7 +137658,7 @@
}
},
{
- "id": 16532,
+ "id": 16673,
"properties": {
"east": "tall",
"north": "none",
@@ -137318,7 +137669,7 @@
}
},
{
- "id": 16533,
+ "id": 16674,
"properties": {
"east": "tall",
"north": "none",
@@ -137329,7 +137680,7 @@
}
},
{
- "id": 16534,
+ "id": 16675,
"properties": {
"east": "tall",
"north": "none",
@@ -137340,7 +137691,7 @@
}
},
{
- "id": 16535,
+ "id": 16676,
"properties": {
"east": "tall",
"north": "none",
@@ -137351,7 +137702,7 @@
}
},
{
- "id": 16536,
+ "id": 16677,
"properties": {
"east": "tall",
"north": "none",
@@ -137362,7 +137713,7 @@
}
},
{
- "id": 16537,
+ "id": 16678,
"properties": {
"east": "tall",
"north": "none",
@@ -137373,7 +137724,7 @@
}
},
{
- "id": 16538,
+ "id": 16679,
"properties": {
"east": "tall",
"north": "none",
@@ -137384,7 +137735,7 @@
}
},
{
- "id": 16539,
+ "id": 16680,
"properties": {
"east": "tall",
"north": "low",
@@ -137395,7 +137746,7 @@
}
},
{
- "id": 16540,
+ "id": 16681,
"properties": {
"east": "tall",
"north": "low",
@@ -137406,7 +137757,7 @@
}
},
{
- "id": 16541,
+ "id": 16682,
"properties": {
"east": "tall",
"north": "low",
@@ -137417,7 +137768,7 @@
}
},
{
- "id": 16542,
+ "id": 16683,
"properties": {
"east": "tall",
"north": "low",
@@ -137428,7 +137779,7 @@
}
},
{
- "id": 16543,
+ "id": 16684,
"properties": {
"east": "tall",
"north": "low",
@@ -137439,7 +137790,7 @@
}
},
{
- "id": 16544,
+ "id": 16685,
"properties": {
"east": "tall",
"north": "low",
@@ -137450,7 +137801,7 @@
}
},
{
- "id": 16545,
+ "id": 16686,
"properties": {
"east": "tall",
"north": "low",
@@ -137461,7 +137812,7 @@
}
},
{
- "id": 16546,
+ "id": 16687,
"properties": {
"east": "tall",
"north": "low",
@@ -137472,7 +137823,7 @@
}
},
{
- "id": 16547,
+ "id": 16688,
"properties": {
"east": "tall",
"north": "low",
@@ -137483,7 +137834,7 @@
}
},
{
- "id": 16548,
+ "id": 16689,
"properties": {
"east": "tall",
"north": "low",
@@ -137494,7 +137845,7 @@
}
},
{
- "id": 16549,
+ "id": 16690,
"properties": {
"east": "tall",
"north": "low",
@@ -137505,7 +137856,7 @@
}
},
{
- "id": 16550,
+ "id": 16691,
"properties": {
"east": "tall",
"north": "low",
@@ -137516,7 +137867,7 @@
}
},
{
- "id": 16551,
+ "id": 16692,
"properties": {
"east": "tall",
"north": "low",
@@ -137527,7 +137878,7 @@
}
},
{
- "id": 16552,
+ "id": 16693,
"properties": {
"east": "tall",
"north": "low",
@@ -137538,7 +137889,7 @@
}
},
{
- "id": 16553,
+ "id": 16694,
"properties": {
"east": "tall",
"north": "low",
@@ -137549,7 +137900,7 @@
}
},
{
- "id": 16554,
+ "id": 16695,
"properties": {
"east": "tall",
"north": "low",
@@ -137560,7 +137911,7 @@
}
},
{
- "id": 16555,
+ "id": 16696,
"properties": {
"east": "tall",
"north": "low",
@@ -137571,7 +137922,7 @@
}
},
{
- "id": 16556,
+ "id": 16697,
"properties": {
"east": "tall",
"north": "low",
@@ -137582,7 +137933,7 @@
}
},
{
- "id": 16557,
+ "id": 16698,
"properties": {
"east": "tall",
"north": "low",
@@ -137593,7 +137944,7 @@
}
},
{
- "id": 16558,
+ "id": 16699,
"properties": {
"east": "tall",
"north": "low",
@@ -137604,7 +137955,7 @@
}
},
{
- "id": 16559,
+ "id": 16700,
"properties": {
"east": "tall",
"north": "low",
@@ -137615,7 +137966,7 @@
}
},
{
- "id": 16560,
+ "id": 16701,
"properties": {
"east": "tall",
"north": "low",
@@ -137626,7 +137977,7 @@
}
},
{
- "id": 16561,
+ "id": 16702,
"properties": {
"east": "tall",
"north": "low",
@@ -137637,7 +137988,7 @@
}
},
{
- "id": 16562,
+ "id": 16703,
"properties": {
"east": "tall",
"north": "low",
@@ -137648,7 +137999,7 @@
}
},
{
- "id": 16563,
+ "id": 16704,
"properties": {
"east": "tall",
"north": "low",
@@ -137659,7 +138010,7 @@
}
},
{
- "id": 16564,
+ "id": 16705,
"properties": {
"east": "tall",
"north": "low",
@@ -137670,7 +138021,7 @@
}
},
{
- "id": 16565,
+ "id": 16706,
"properties": {
"east": "tall",
"north": "low",
@@ -137681,7 +138032,7 @@
}
},
{
- "id": 16566,
+ "id": 16707,
"properties": {
"east": "tall",
"north": "low",
@@ -137692,7 +138043,7 @@
}
},
{
- "id": 16567,
+ "id": 16708,
"properties": {
"east": "tall",
"north": "low",
@@ -137703,7 +138054,7 @@
}
},
{
- "id": 16568,
+ "id": 16709,
"properties": {
"east": "tall",
"north": "low",
@@ -137714,7 +138065,7 @@
}
},
{
- "id": 16569,
+ "id": 16710,
"properties": {
"east": "tall",
"north": "low",
@@ -137725,7 +138076,7 @@
}
},
{
- "id": 16570,
+ "id": 16711,
"properties": {
"east": "tall",
"north": "low",
@@ -137736,7 +138087,7 @@
}
},
{
- "id": 16571,
+ "id": 16712,
"properties": {
"east": "tall",
"north": "low",
@@ -137747,7 +138098,7 @@
}
},
{
- "id": 16572,
+ "id": 16713,
"properties": {
"east": "tall",
"north": "low",
@@ -137758,7 +138109,7 @@
}
},
{
- "id": 16573,
+ "id": 16714,
"properties": {
"east": "tall",
"north": "low",
@@ -137769,7 +138120,7 @@
}
},
{
- "id": 16574,
+ "id": 16715,
"properties": {
"east": "tall",
"north": "low",
@@ -137780,7 +138131,7 @@
}
},
{
- "id": 16575,
+ "id": 16716,
"properties": {
"east": "tall",
"north": "tall",
@@ -137791,7 +138142,7 @@
}
},
{
- "id": 16576,
+ "id": 16717,
"properties": {
"east": "tall",
"north": "tall",
@@ -137802,7 +138153,7 @@
}
},
{
- "id": 16577,
+ "id": 16718,
"properties": {
"east": "tall",
"north": "tall",
@@ -137813,7 +138164,7 @@
}
},
{
- "id": 16578,
+ "id": 16719,
"properties": {
"east": "tall",
"north": "tall",
@@ -137824,7 +138175,7 @@
}
},
{
- "id": 16579,
+ "id": 16720,
"properties": {
"east": "tall",
"north": "tall",
@@ -137835,7 +138186,7 @@
}
},
{
- "id": 16580,
+ "id": 16721,
"properties": {
"east": "tall",
"north": "tall",
@@ -137846,7 +138197,7 @@
}
},
{
- "id": 16581,
+ "id": 16722,
"properties": {
"east": "tall",
"north": "tall",
@@ -137857,7 +138208,7 @@
}
},
{
- "id": 16582,
+ "id": 16723,
"properties": {
"east": "tall",
"north": "tall",
@@ -137868,7 +138219,7 @@
}
},
{
- "id": 16583,
+ "id": 16724,
"properties": {
"east": "tall",
"north": "tall",
@@ -137879,7 +138230,7 @@
}
},
{
- "id": 16584,
+ "id": 16725,
"properties": {
"east": "tall",
"north": "tall",
@@ -137890,7 +138241,7 @@
}
},
{
- "id": 16585,
+ "id": 16726,
"properties": {
"east": "tall",
"north": "tall",
@@ -137901,7 +138252,7 @@
}
},
{
- "id": 16586,
+ "id": 16727,
"properties": {
"east": "tall",
"north": "tall",
@@ -137912,7 +138263,7 @@
}
},
{
- "id": 16587,
+ "id": 16728,
"properties": {
"east": "tall",
"north": "tall",
@@ -137923,7 +138274,7 @@
}
},
{
- "id": 16588,
+ "id": 16729,
"properties": {
"east": "tall",
"north": "tall",
@@ -137934,7 +138285,7 @@
}
},
{
- "id": 16589,
+ "id": 16730,
"properties": {
"east": "tall",
"north": "tall",
@@ -137945,7 +138296,7 @@
}
},
{
- "id": 16590,
+ "id": 16731,
"properties": {
"east": "tall",
"north": "tall",
@@ -137956,7 +138307,7 @@
}
},
{
- "id": 16591,
+ "id": 16732,
"properties": {
"east": "tall",
"north": "tall",
@@ -137967,7 +138318,7 @@
}
},
{
- "id": 16592,
+ "id": 16733,
"properties": {
"east": "tall",
"north": "tall",
@@ -137978,7 +138329,7 @@
}
},
{
- "id": 16593,
+ "id": 16734,
"properties": {
"east": "tall",
"north": "tall",
@@ -137989,7 +138340,7 @@
}
},
{
- "id": 16594,
+ "id": 16735,
"properties": {
"east": "tall",
"north": "tall",
@@ -138000,7 +138351,7 @@
}
},
{
- "id": 16595,
+ "id": 16736,
"properties": {
"east": "tall",
"north": "tall",
@@ -138011,7 +138362,7 @@
}
},
{
- "id": 16596,
+ "id": 16737,
"properties": {
"east": "tall",
"north": "tall",
@@ -138022,7 +138373,7 @@
}
},
{
- "id": 16597,
+ "id": 16738,
"properties": {
"east": "tall",
"north": "tall",
@@ -138033,7 +138384,7 @@
}
},
{
- "id": 16598,
+ "id": 16739,
"properties": {
"east": "tall",
"north": "tall",
@@ -138044,7 +138395,7 @@
}
},
{
- "id": 16599,
+ "id": 16740,
"properties": {
"east": "tall",
"north": "tall",
@@ -138055,7 +138406,7 @@
}
},
{
- "id": 16600,
+ "id": 16741,
"properties": {
"east": "tall",
"north": "tall",
@@ -138066,7 +138417,7 @@
}
},
{
- "id": 16601,
+ "id": 16742,
"properties": {
"east": "tall",
"north": "tall",
@@ -138077,7 +138428,7 @@
}
},
{
- "id": 16602,
+ "id": 16743,
"properties": {
"east": "tall",
"north": "tall",
@@ -138088,7 +138439,7 @@
}
},
{
- "id": 16603,
+ "id": 16744,
"properties": {
"east": "tall",
"north": "tall",
@@ -138099,7 +138450,7 @@
}
},
{
- "id": 16604,
+ "id": 16745,
"properties": {
"east": "tall",
"north": "tall",
@@ -138110,7 +138461,7 @@
}
},
{
- "id": 16605,
+ "id": 16746,
"properties": {
"east": "tall",
"north": "tall",
@@ -138121,7 +138472,7 @@
}
},
{
- "id": 16606,
+ "id": 16747,
"properties": {
"east": "tall",
"north": "tall",
@@ -138132,7 +138483,7 @@
}
},
{
- "id": 16607,
+ "id": 16748,
"properties": {
"east": "tall",
"north": "tall",
@@ -138143,7 +138494,7 @@
}
},
{
- "id": 16608,
+ "id": 16749,
"properties": {
"east": "tall",
"north": "tall",
@@ -138154,7 +138505,7 @@
}
},
{
- "id": 16609,
+ "id": 16750,
"properties": {
"east": "tall",
"north": "tall",
@@ -138165,7 +138516,7 @@
}
},
{
- "id": 16610,
+ "id": 16751,
"properties": {
"east": "tall",
"north": "tall",
@@ -138220,7 +138571,7 @@
"states": [
{
"default": true,
- "id": 9084
+ "id": 9224
}
]
},
@@ -138228,7 +138579,7 @@
"states": [
{
"default": true,
- "id": 18454
+ "id": 18595
}
]
},
@@ -138273,7 +138624,7 @@
"states": [
{
"default": true,
- "id": 12403
+ "id": 12544
}
]
},
@@ -138281,7 +138632,7 @@
"states": [
{
"default": true,
- "id": 19306
+ "id": 19447
}
]
},
@@ -150243,21 +150594,21 @@
},
"states": [
{
- "id": 11021,
+ "id": 11162,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11022,
+ "id": 11163,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11023,
+ "id": 11164,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -150265,21 +150616,21 @@
},
{
"default": true,
- "id": 11024,
+ "id": 11165,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11025,
+ "id": 11166,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11026,
+ "id": 11167,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -151897,35 +152248,35 @@
},
"states": [
{
- "id": 12409,
+ "id": 12550,
"properties": {
"facing": "north",
"powered": "true"
}
},
{
- "id": 12410,
+ "id": 12551,
"properties": {
"facing": "north",
"powered": "false"
}
},
{
- "id": 12411,
+ "id": 12552,
"properties": {
"facing": "east",
"powered": "true"
}
},
{
- "id": 12412,
+ "id": 12553,
"properties": {
"facing": "east",
"powered": "false"
}
},
{
- "id": 12413,
+ "id": 12554,
"properties": {
"facing": "south",
"powered": "true"
@@ -151933,49 +152284,49 @@
},
{
"default": true,
- "id": 12414,
+ "id": 12555,
"properties": {
"facing": "south",
"powered": "false"
}
},
{
- "id": 12415,
+ "id": 12556,
"properties": {
"facing": "west",
"powered": "true"
}
},
{
- "id": 12416,
+ "id": 12557,
"properties": {
"facing": "west",
"powered": "false"
}
},
{
- "id": 12417,
+ "id": 12558,
"properties": {
"facing": "up",
"powered": "true"
}
},
{
- "id": 12418,
+ "id": 12559,
"properties": {
"facing": "up",
"powered": "false"
}
},
{
- "id": 12419,
+ "id": 12560,
"properties": {
"facing": "down",
"powered": "true"
}
},
{
- "id": 12420,
+ "id": 12561,
"properties": {
"facing": "down",
"powered": "false"
@@ -152001,20 +152352,20 @@
},
"states": [
{
- "id": 24108,
+ "id": 24249,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 24109,
+ "id": 24250,
"properties": {
"axis": "y"
}
},
{
- "id": 24110,
+ "id": 24251,
"properties": {
"axis": "z"
}
@@ -152045,97 +152396,97 @@
"states": [
{
"default": true,
- "id": 10634,
+ "id": 10775,
"properties": {
"rotation": "0"
}
},
{
- "id": 10635,
+ "id": 10776,
"properties": {
"rotation": "1"
}
},
{
- "id": 10636,
+ "id": 10777,
"properties": {
"rotation": "2"
}
},
{
- "id": 10637,
+ "id": 10778,
"properties": {
"rotation": "3"
}
},
{
- "id": 10638,
+ "id": 10779,
"properties": {
"rotation": "4"
}
},
{
- "id": 10639,
+ "id": 10780,
"properties": {
"rotation": "5"
}
},
{
- "id": 10640,
+ "id": 10781,
"properties": {
"rotation": "6"
}
},
{
- "id": 10641,
+ "id": 10782,
"properties": {
"rotation": "7"
}
},
{
- "id": 10642,
+ "id": 10783,
"properties": {
"rotation": "8"
}
},
{
- "id": 10643,
+ "id": 10784,
"properties": {
"rotation": "9"
}
},
{
- "id": 10644,
+ "id": 10785,
"properties": {
"rotation": "10"
}
},
{
- "id": 10645,
+ "id": 10786,
"properties": {
"rotation": "11"
}
},
{
- "id": 10646,
+ "id": 10787,
"properties": {
"rotation": "12"
}
},
{
- "id": 10647,
+ "id": 10788,
"properties": {
"rotation": "13"
}
},
{
- "id": 10648,
+ "id": 10789,
"properties": {
"rotation": "14"
}
},
{
- "id": 10649,
+ "id": 10790,
"properties": {
"rotation": "15"
}
@@ -152310,7 +152661,7 @@
},
"states": [
{
- "id": 20616,
+ "id": 20757,
"properties": {
"candles": "1",
"lit": "true",
@@ -152318,7 +152669,7 @@
}
},
{
- "id": 20617,
+ "id": 20758,
"properties": {
"candles": "1",
"lit": "true",
@@ -152326,7 +152677,7 @@
}
},
{
- "id": 20618,
+ "id": 20759,
"properties": {
"candles": "1",
"lit": "false",
@@ -152335,7 +152686,7 @@
},
{
"default": true,
- "id": 20619,
+ "id": 20760,
"properties": {
"candles": "1",
"lit": "false",
@@ -152343,7 +152694,7 @@
}
},
{
- "id": 20620,
+ "id": 20761,
"properties": {
"candles": "2",
"lit": "true",
@@ -152351,7 +152702,7 @@
}
},
{
- "id": 20621,
+ "id": 20762,
"properties": {
"candles": "2",
"lit": "true",
@@ -152359,7 +152710,7 @@
}
},
{
- "id": 20622,
+ "id": 20763,
"properties": {
"candles": "2",
"lit": "false",
@@ -152367,7 +152718,7 @@
}
},
{
- "id": 20623,
+ "id": 20764,
"properties": {
"candles": "2",
"lit": "false",
@@ -152375,7 +152726,7 @@
}
},
{
- "id": 20624,
+ "id": 20765,
"properties": {
"candles": "3",
"lit": "true",
@@ -152383,7 +152734,7 @@
}
},
{
- "id": 20625,
+ "id": 20766,
"properties": {
"candles": "3",
"lit": "true",
@@ -152391,7 +152742,7 @@
}
},
{
- "id": 20626,
+ "id": 20767,
"properties": {
"candles": "3",
"lit": "false",
@@ -152399,7 +152750,7 @@
}
},
{
- "id": 20627,
+ "id": 20768,
"properties": {
"candles": "3",
"lit": "false",
@@ -152407,7 +152758,7 @@
}
},
{
- "id": 20628,
+ "id": 20769,
"properties": {
"candles": "4",
"lit": "true",
@@ -152415,7 +152766,7 @@
}
},
{
- "id": 20629,
+ "id": 20770,
"properties": {
"candles": "4",
"lit": "true",
@@ -152423,7 +152774,7 @@
}
},
{
- "id": 20630,
+ "id": 20771,
"properties": {
"candles": "4",
"lit": "false",
@@ -152431,7 +152782,7 @@
}
},
{
- "id": 20631,
+ "id": 20772,
"properties": {
"candles": "4",
"lit": "false",
@@ -152449,14 +152800,14 @@
},
"states": [
{
- "id": 20860,
+ "id": 21001,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20861,
+ "id": 21002,
"properties": {
"lit": "false"
}
@@ -152467,7 +152818,7 @@
"states": [
{
"default": true,
- "id": 10588
+ "id": 10729
}
]
},
@@ -152475,7 +152826,7 @@
"states": [
{
"default": true,
- "id": 12588
+ "id": 12729
}
]
},
@@ -152483,7 +152834,7 @@
"states": [
{
"default": true,
- "id": 12604
+ "id": 12745
}
]
},
@@ -152499,25 +152850,25 @@
"states": [
{
"default": true,
- "id": 12527,
+ "id": 12668,
"properties": {
"facing": "north"
}
},
{
- "id": 12528,
+ "id": 12669,
"properties": {
"facing": "south"
}
},
{
- "id": 12529,
+ "id": 12670,
"properties": {
"facing": "west"
}
},
{
- "id": 12530,
+ "id": 12671,
"properties": {
"facing": "east"
}
@@ -152537,38 +152888,38 @@
},
"states": [
{
- "id": 12433,
+ "id": 12574,
"properties": {
"facing": "north"
}
},
{
- "id": 12434,
+ "id": 12575,
"properties": {
"facing": "east"
}
},
{
- "id": 12435,
+ "id": 12576,
"properties": {
"facing": "south"
}
},
{
- "id": 12436,
+ "id": 12577,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12437,
+ "id": 12578,
"properties": {
"facing": "up"
}
},
{
- "id": 12438,
+ "id": 12579,
"properties": {
"facing": "down"
}
@@ -152608,7 +152959,7 @@
},
"states": [
{
- "id": 9264,
+ "id": 9404,
"properties": {
"east": "true",
"north": "true",
@@ -152618,7 +152969,7 @@
}
},
{
- "id": 9265,
+ "id": 9405,
"properties": {
"east": "true",
"north": "true",
@@ -152628,7 +152979,7 @@
}
},
{
- "id": 9266,
+ "id": 9406,
"properties": {
"east": "true",
"north": "true",
@@ -152638,7 +152989,7 @@
}
},
{
- "id": 9267,
+ "id": 9407,
"properties": {
"east": "true",
"north": "true",
@@ -152648,7 +152999,7 @@
}
},
{
- "id": 9268,
+ "id": 9408,
"properties": {
"east": "true",
"north": "true",
@@ -152658,7 +153009,7 @@
}
},
{
- "id": 9269,
+ "id": 9409,
"properties": {
"east": "true",
"north": "true",
@@ -152668,7 +153019,7 @@
}
},
{
- "id": 9270,
+ "id": 9410,
"properties": {
"east": "true",
"north": "true",
@@ -152678,7 +153029,7 @@
}
},
{
- "id": 9271,
+ "id": 9411,
"properties": {
"east": "true",
"north": "true",
@@ -152688,7 +153039,7 @@
}
},
{
- "id": 9272,
+ "id": 9412,
"properties": {
"east": "true",
"north": "false",
@@ -152698,7 +153049,7 @@
}
},
{
- "id": 9273,
+ "id": 9413,
"properties": {
"east": "true",
"north": "false",
@@ -152708,7 +153059,7 @@
}
},
{
- "id": 9274,
+ "id": 9414,
"properties": {
"east": "true",
"north": "false",
@@ -152718,7 +153069,7 @@
}
},
{
- "id": 9275,
+ "id": 9415,
"properties": {
"east": "true",
"north": "false",
@@ -152728,7 +153079,7 @@
}
},
{
- "id": 9276,
+ "id": 9416,
"properties": {
"east": "true",
"north": "false",
@@ -152738,7 +153089,7 @@
}
},
{
- "id": 9277,
+ "id": 9417,
"properties": {
"east": "true",
"north": "false",
@@ -152748,7 +153099,7 @@
}
},
{
- "id": 9278,
+ "id": 9418,
"properties": {
"east": "true",
"north": "false",
@@ -152758,7 +153109,7 @@
}
},
{
- "id": 9279,
+ "id": 9419,
"properties": {
"east": "true",
"north": "false",
@@ -152768,7 +153119,7 @@
}
},
{
- "id": 9280,
+ "id": 9420,
"properties": {
"east": "false",
"north": "true",
@@ -152778,7 +153129,7 @@
}
},
{
- "id": 9281,
+ "id": 9421,
"properties": {
"east": "false",
"north": "true",
@@ -152788,7 +153139,7 @@
}
},
{
- "id": 9282,
+ "id": 9422,
"properties": {
"east": "false",
"north": "true",
@@ -152798,7 +153149,7 @@
}
},
{
- "id": 9283,
+ "id": 9423,
"properties": {
"east": "false",
"north": "true",
@@ -152808,7 +153159,7 @@
}
},
{
- "id": 9284,
+ "id": 9424,
"properties": {
"east": "false",
"north": "true",
@@ -152818,7 +153169,7 @@
}
},
{
- "id": 9285,
+ "id": 9425,
"properties": {
"east": "false",
"north": "true",
@@ -152828,7 +153179,7 @@
}
},
{
- "id": 9286,
+ "id": 9426,
"properties": {
"east": "false",
"north": "true",
@@ -152838,7 +153189,7 @@
}
},
{
- "id": 9287,
+ "id": 9427,
"properties": {
"east": "false",
"north": "true",
@@ -152848,7 +153199,7 @@
}
},
{
- "id": 9288,
+ "id": 9428,
"properties": {
"east": "false",
"north": "false",
@@ -152858,7 +153209,7 @@
}
},
{
- "id": 9289,
+ "id": 9429,
"properties": {
"east": "false",
"north": "false",
@@ -152868,7 +153219,7 @@
}
},
{
- "id": 9290,
+ "id": 9430,
"properties": {
"east": "false",
"north": "false",
@@ -152878,7 +153229,7 @@
}
},
{
- "id": 9291,
+ "id": 9431,
"properties": {
"east": "false",
"north": "false",
@@ -152888,7 +153239,7 @@
}
},
{
- "id": 9292,
+ "id": 9432,
"properties": {
"east": "false",
"north": "false",
@@ -152898,7 +153249,7 @@
}
},
{
- "id": 9293,
+ "id": 9433,
"properties": {
"east": "false",
"north": "false",
@@ -152908,7 +153259,7 @@
}
},
{
- "id": 9294,
+ "id": 9434,
"properties": {
"east": "false",
"north": "false",
@@ -152919,7 +153270,7 @@
},
{
"default": true,
- "id": 9295,
+ "id": 9435,
"properties": {
"east": "false",
"north": "false",
@@ -152934,7 +153285,7 @@
"states": [
{
"default": true,
- "id": 9217
+ "id": 9357
}
]
},
@@ -152958,25 +153309,25 @@
"states": [
{
"default": true,
- "id": 10878,
+ "id": 11019,
"properties": {
"facing": "north"
}
},
{
- "id": 10879,
+ "id": 11020,
"properties": {
"facing": "south"
}
},
{
- "id": 10880,
+ "id": 11021,
"properties": {
"facing": "west"
}
},
{
- "id": 10881,
+ "id": 11022,
"properties": {
"facing": "east"
}
@@ -153003,7 +153354,7 @@
"states": [
{
"default": true,
- "id": 21563
+ "id": 21704
}
]
},
@@ -153011,7 +153362,7 @@
"states": [
{
"default": true,
- "id": 21569
+ "id": 21710
}
]
},
@@ -153029,21 +153380,21 @@
},
"states": [
{
- "id": 21893,
+ "id": 22034,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21894,
+ "id": 22035,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21895,
+ "id": 22036,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -153051,21 +153402,21 @@
},
{
"default": true,
- "id": 21896,
+ "id": 22037,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21897,
+ "id": 22038,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21898,
+ "id": 22039,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -153099,7 +153450,7 @@
},
"states": [
{
- "id": 21573,
+ "id": 21714,
"properties": {
"facing": "north",
"half": "top",
@@ -153108,7 +153459,7 @@
}
},
{
- "id": 21574,
+ "id": 21715,
"properties": {
"facing": "north",
"half": "top",
@@ -153117,7 +153468,7 @@
}
},
{
- "id": 21575,
+ "id": 21716,
"properties": {
"facing": "north",
"half": "top",
@@ -153126,7 +153477,7 @@
}
},
{
- "id": 21576,
+ "id": 21717,
"properties": {
"facing": "north",
"half": "top",
@@ -153135,7 +153486,7 @@
}
},
{
- "id": 21577,
+ "id": 21718,
"properties": {
"facing": "north",
"half": "top",
@@ -153144,7 +153495,7 @@
}
},
{
- "id": 21578,
+ "id": 21719,
"properties": {
"facing": "north",
"half": "top",
@@ -153153,7 +153504,7 @@
}
},
{
- "id": 21579,
+ "id": 21720,
"properties": {
"facing": "north",
"half": "top",
@@ -153162,7 +153513,7 @@
}
},
{
- "id": 21580,
+ "id": 21721,
"properties": {
"facing": "north",
"half": "top",
@@ -153171,7 +153522,7 @@
}
},
{
- "id": 21581,
+ "id": 21722,
"properties": {
"facing": "north",
"half": "top",
@@ -153180,7 +153531,7 @@
}
},
{
- "id": 21582,
+ "id": 21723,
"properties": {
"facing": "north",
"half": "top",
@@ -153189,7 +153540,7 @@
}
},
{
- "id": 21583,
+ "id": 21724,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153199,7 +153550,7 @@
},
{
"default": true,
- "id": 21584,
+ "id": 21725,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153208,7 +153559,7 @@
}
},
{
- "id": 21585,
+ "id": 21726,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153217,7 +153568,7 @@
}
},
{
- "id": 21586,
+ "id": 21727,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153226,7 +153577,7 @@
}
},
{
- "id": 21587,
+ "id": 21728,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153235,7 +153586,7 @@
}
},
{
- "id": 21588,
+ "id": 21729,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153244,7 +153595,7 @@
}
},
{
- "id": 21589,
+ "id": 21730,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153253,7 +153604,7 @@
}
},
{
- "id": 21590,
+ "id": 21731,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153262,7 +153613,7 @@
}
},
{
- "id": 21591,
+ "id": 21732,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153271,7 +153622,7 @@
}
},
{
- "id": 21592,
+ "id": 21733,
"properties": {
"facing": "north",
"half": "bottom",
@@ -153280,7 +153631,7 @@
}
},
{
- "id": 21593,
+ "id": 21734,
"properties": {
"facing": "south",
"half": "top",
@@ -153289,7 +153640,7 @@
}
},
{
- "id": 21594,
+ "id": 21735,
"properties": {
"facing": "south",
"half": "top",
@@ -153298,7 +153649,7 @@
}
},
{
- "id": 21595,
+ "id": 21736,
"properties": {
"facing": "south",
"half": "top",
@@ -153307,7 +153658,7 @@
}
},
{
- "id": 21596,
+ "id": 21737,
"properties": {
"facing": "south",
"half": "top",
@@ -153316,7 +153667,7 @@
}
},
{
- "id": 21597,
+ "id": 21738,
"properties": {
"facing": "south",
"half": "top",
@@ -153325,7 +153676,7 @@
}
},
{
- "id": 21598,
+ "id": 21739,
"properties": {
"facing": "south",
"half": "top",
@@ -153334,7 +153685,7 @@
}
},
{
- "id": 21599,
+ "id": 21740,
"properties": {
"facing": "south",
"half": "top",
@@ -153343,7 +153694,7 @@
}
},
{
- "id": 21600,
+ "id": 21741,
"properties": {
"facing": "south",
"half": "top",
@@ -153352,7 +153703,7 @@
}
},
{
- "id": 21601,
+ "id": 21742,
"properties": {
"facing": "south",
"half": "top",
@@ -153361,7 +153712,7 @@
}
},
{
- "id": 21602,
+ "id": 21743,
"properties": {
"facing": "south",
"half": "top",
@@ -153370,7 +153721,7 @@
}
},
{
- "id": 21603,
+ "id": 21744,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153379,7 +153730,7 @@
}
},
{
- "id": 21604,
+ "id": 21745,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153388,7 +153739,7 @@
}
},
{
- "id": 21605,
+ "id": 21746,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153397,7 +153748,7 @@
}
},
{
- "id": 21606,
+ "id": 21747,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153406,7 +153757,7 @@
}
},
{
- "id": 21607,
+ "id": 21748,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153415,7 +153766,7 @@
}
},
{
- "id": 21608,
+ "id": 21749,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153424,7 +153775,7 @@
}
},
{
- "id": 21609,
+ "id": 21750,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153433,7 +153784,7 @@
}
},
{
- "id": 21610,
+ "id": 21751,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153442,7 +153793,7 @@
}
},
{
- "id": 21611,
+ "id": 21752,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153451,7 +153802,7 @@
}
},
{
- "id": 21612,
+ "id": 21753,
"properties": {
"facing": "south",
"half": "bottom",
@@ -153460,7 +153811,7 @@
}
},
{
- "id": 21613,
+ "id": 21754,
"properties": {
"facing": "west",
"half": "top",
@@ -153469,7 +153820,7 @@
}
},
{
- "id": 21614,
+ "id": 21755,
"properties": {
"facing": "west",
"half": "top",
@@ -153478,7 +153829,7 @@
}
},
{
- "id": 21615,
+ "id": 21756,
"properties": {
"facing": "west",
"half": "top",
@@ -153487,7 +153838,7 @@
}
},
{
- "id": 21616,
+ "id": 21757,
"properties": {
"facing": "west",
"half": "top",
@@ -153496,7 +153847,7 @@
}
},
{
- "id": 21617,
+ "id": 21758,
"properties": {
"facing": "west",
"half": "top",
@@ -153505,7 +153856,7 @@
}
},
{
- "id": 21618,
+ "id": 21759,
"properties": {
"facing": "west",
"half": "top",
@@ -153514,7 +153865,7 @@
}
},
{
- "id": 21619,
+ "id": 21760,
"properties": {
"facing": "west",
"half": "top",
@@ -153523,7 +153874,7 @@
}
},
{
- "id": 21620,
+ "id": 21761,
"properties": {
"facing": "west",
"half": "top",
@@ -153532,7 +153883,7 @@
}
},
{
- "id": 21621,
+ "id": 21762,
"properties": {
"facing": "west",
"half": "top",
@@ -153541,7 +153892,7 @@
}
},
{
- "id": 21622,
+ "id": 21763,
"properties": {
"facing": "west",
"half": "top",
@@ -153550,7 +153901,7 @@
}
},
{
- "id": 21623,
+ "id": 21764,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153559,7 +153910,7 @@
}
},
{
- "id": 21624,
+ "id": 21765,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153568,7 +153919,7 @@
}
},
{
- "id": 21625,
+ "id": 21766,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153577,7 +153928,7 @@
}
},
{
- "id": 21626,
+ "id": 21767,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153586,7 +153937,7 @@
}
},
{
- "id": 21627,
+ "id": 21768,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153595,7 +153946,7 @@
}
},
{
- "id": 21628,
+ "id": 21769,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153604,7 +153955,7 @@
}
},
{
- "id": 21629,
+ "id": 21770,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153613,7 +153964,7 @@
}
},
{
- "id": 21630,
+ "id": 21771,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153622,7 +153973,7 @@
}
},
{
- "id": 21631,
+ "id": 21772,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153631,7 +153982,7 @@
}
},
{
- "id": 21632,
+ "id": 21773,
"properties": {
"facing": "west",
"half": "bottom",
@@ -153640,7 +153991,7 @@
}
},
{
- "id": 21633,
+ "id": 21774,
"properties": {
"facing": "east",
"half": "top",
@@ -153649,7 +154000,7 @@
}
},
{
- "id": 21634,
+ "id": 21775,
"properties": {
"facing": "east",
"half": "top",
@@ -153658,7 +154009,7 @@
}
},
{
- "id": 21635,
+ "id": 21776,
"properties": {
"facing": "east",
"half": "top",
@@ -153667,7 +154018,7 @@
}
},
{
- "id": 21636,
+ "id": 21777,
"properties": {
"facing": "east",
"half": "top",
@@ -153676,7 +154027,7 @@
}
},
{
- "id": 21637,
+ "id": 21778,
"properties": {
"facing": "east",
"half": "top",
@@ -153685,7 +154036,7 @@
}
},
{
- "id": 21638,
+ "id": 21779,
"properties": {
"facing": "east",
"half": "top",
@@ -153694,7 +154045,7 @@
}
},
{
- "id": 21639,
+ "id": 21780,
"properties": {
"facing": "east",
"half": "top",
@@ -153703,7 +154054,7 @@
}
},
{
- "id": 21640,
+ "id": 21781,
"properties": {
"facing": "east",
"half": "top",
@@ -153712,7 +154063,7 @@
}
},
{
- "id": 21641,
+ "id": 21782,
"properties": {
"facing": "east",
"half": "top",
@@ -153721,7 +154072,7 @@
}
},
{
- "id": 21642,
+ "id": 21783,
"properties": {
"facing": "east",
"half": "top",
@@ -153730,7 +154081,7 @@
}
},
{
- "id": 21643,
+ "id": 21784,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153739,7 +154090,7 @@
}
},
{
- "id": 21644,
+ "id": 21785,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153748,7 +154099,7 @@
}
},
{
- "id": 21645,
+ "id": 21786,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153757,7 +154108,7 @@
}
},
{
- "id": 21646,
+ "id": 21787,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153766,7 +154117,7 @@
}
},
{
- "id": 21647,
+ "id": 21788,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153775,7 +154126,7 @@
}
},
{
- "id": 21648,
+ "id": 21789,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153784,7 +154135,7 @@
}
},
{
- "id": 21649,
+ "id": 21790,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153793,7 +154144,7 @@
}
},
{
- "id": 21650,
+ "id": 21791,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153802,7 +154153,7 @@
}
},
{
- "id": 21651,
+ "id": 21792,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153811,7 +154162,7 @@
}
},
{
- "id": 21652,
+ "id": 21793,
"properties": {
"facing": "east",
"half": "bottom",
@@ -153825,7 +154176,7 @@
"states": [
{
"default": true,
- "id": 10605
+ "id": 10746
}
]
},
@@ -153847,20 +154198,20 @@
},
"states": [
{
- "id": 24114,
+ "id": 24255,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 24115,
+ "id": 24256,
"properties": {
"axis": "y"
}
},
{
- "id": 24116,
+ "id": 24257,
"properties": {
"axis": "z"
}
@@ -153876,14 +154227,14 @@
},
"states": [
{
- "id": 10612,
+ "id": 10753,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10613,
+ "id": 10754,
"properties": {
"half": "lower"
}
@@ -153904,21 +154255,21 @@
},
"states": [
{
- "id": 11105,
+ "id": 11246,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11106,
+ "id": 11247,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11107,
+ "id": 11248,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -153926,21 +154277,21 @@
},
{
"default": true,
- "id": 11108,
+ "id": 11249,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11109,
+ "id": 11250,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11110,
+ "id": 11251,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -153950,6 +154301,10 @@
},
"minecraft:piglin_head": {
"properties": {
+ "powered": [
+ "true",
+ "false"
+ ],
"rotation": [
"0",
"1",
@@ -153971,99 +154326,227 @@
},
"states": [
{
- "default": true,
- "id": 8947,
+ "id": 9067,
"properties": {
+ "powered": "true",
"rotation": "0"
}
},
{
- "id": 8948,
+ "id": 9068,
"properties": {
+ "powered": "true",
"rotation": "1"
}
},
{
- "id": 8949,
+ "id": 9069,
"properties": {
+ "powered": "true",
"rotation": "2"
}
},
{
- "id": 8950,
+ "id": 9070,
"properties": {
+ "powered": "true",
"rotation": "3"
}
},
{
- "id": 8951,
+ "id": 9071,
"properties": {
+ "powered": "true",
"rotation": "4"
}
},
{
- "id": 8952,
+ "id": 9072,
"properties": {
+ "powered": "true",
"rotation": "5"
}
},
{
- "id": 8953,
+ "id": 9073,
"properties": {
+ "powered": "true",
"rotation": "6"
}
},
{
- "id": 8954,
+ "id": 9074,
"properties": {
+ "powered": "true",
"rotation": "7"
}
},
{
- "id": 8955,
+ "id": 9075,
"properties": {
+ "powered": "true",
"rotation": "8"
}
},
{
- "id": 8956,
+ "id": 9076,
"properties": {
+ "powered": "true",
"rotation": "9"
}
},
{
- "id": 8957,
+ "id": 9077,
"properties": {
+ "powered": "true",
"rotation": "10"
}
},
{
- "id": 8958,
+ "id": 9078,
"properties": {
+ "powered": "true",
"rotation": "11"
}
},
{
- "id": 8959,
+ "id": 9079,
"properties": {
+ "powered": "true",
"rotation": "12"
}
},
{
- "id": 8960,
+ "id": 9080,
"properties": {
+ "powered": "true",
"rotation": "13"
}
},
{
- "id": 8961,
+ "id": 9081,
"properties": {
+ "powered": "true",
"rotation": "14"
}
},
{
- "id": 8962,
+ "id": 9082,
"properties": {
+ "powered": "true",
+ "rotation": "15"
+ }
+ },
+ {
+ "default": true,
+ "id": 9083,
+ "properties": {
+ "powered": "false",
+ "rotation": "0"
+ }
+ },
+ {
+ "id": 9084,
+ "properties": {
+ "powered": "false",
+ "rotation": "1"
+ }
+ },
+ {
+ "id": 9085,
+ "properties": {
+ "powered": "false",
+ "rotation": "2"
+ }
+ },
+ {
+ "id": 9086,
+ "properties": {
+ "powered": "false",
+ "rotation": "3"
+ }
+ },
+ {
+ "id": 9087,
+ "properties": {
+ "powered": "false",
+ "rotation": "4"
+ }
+ },
+ {
+ "id": 9088,
+ "properties": {
+ "powered": "false",
+ "rotation": "5"
+ }
+ },
+ {
+ "id": 9089,
+ "properties": {
+ "powered": "false",
+ "rotation": "6"
+ }
+ },
+ {
+ "id": 9090,
+ "properties": {
+ "powered": "false",
+ "rotation": "7"
+ }
+ },
+ {
+ "id": 9091,
+ "properties": {
+ "powered": "false",
+ "rotation": "8"
+ }
+ },
+ {
+ "id": 9092,
+ "properties": {
+ "powered": "false",
+ "rotation": "9"
+ }
+ },
+ {
+ "id": 9093,
+ "properties": {
+ "powered": "false",
+ "rotation": "10"
+ }
+ },
+ {
+ "id": 9094,
+ "properties": {
+ "powered": "false",
+ "rotation": "11"
+ }
+ },
+ {
+ "id": 9095,
+ "properties": {
+ "powered": "false",
+ "rotation": "12"
+ }
+ },
+ {
+ "id": 9096,
+ "properties": {
+ "powered": "false",
+ "rotation": "13"
+ }
+ },
+ {
+ "id": 9097,
+ "properties": {
+ "powered": "false",
+ "rotation": "14"
+ }
+ },
+ {
+ "id": 9098,
+ "properties": {
+ "powered": "false",
"rotation": "15"
}
}
@@ -154076,32 +154559,68 @@
"south",
"west",
"east"
+ ],
+ "powered": [
+ "true",
+ "false"
]
},
"states": [
+ {
+ "id": 9099,
+ "properties": {
+ "facing": "north",
+ "powered": "true"
+ }
+ },
{
"default": true,
- "id": 8963,
+ "id": 9100,
"properties": {
- "facing": "north"
+ "facing": "north",
+ "powered": "false"
}
},
{
- "id": 8964,
+ "id": 9101,
"properties": {
- "facing": "south"
+ "facing": "south",
+ "powered": "true"
}
},
{
- "id": 8965,
+ "id": 9102,
"properties": {
- "facing": "west"
+ "facing": "south",
+ "powered": "false"
}
},
{
- "id": 8966,
+ "id": 9103,
"properties": {
- "facing": "east"
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9104,
+ "properties": {
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 9105,
+ "properties": {
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 9106,
+ "properties": {
+ "facing": "east",
+ "powered": "false"
}
}
]
@@ -154130,97 +154649,97 @@
"states": [
{
"default": true,
- "id": 10714,
+ "id": 10855,
"properties": {
"rotation": "0"
}
},
{
- "id": 10715,
+ "id": 10856,
"properties": {
"rotation": "1"
}
},
{
- "id": 10716,
+ "id": 10857,
"properties": {
"rotation": "2"
}
},
{
- "id": 10717,
+ "id": 10858,
"properties": {
"rotation": "3"
}
},
{
- "id": 10718,
+ "id": 10859,
"properties": {
"rotation": "4"
}
},
{
- "id": 10719,
+ "id": 10860,
"properties": {
"rotation": "5"
}
},
{
- "id": 10720,
+ "id": 10861,
"properties": {
"rotation": "6"
}
},
{
- "id": 10721,
+ "id": 10862,
"properties": {
"rotation": "7"
}
},
{
- "id": 10722,
+ "id": 10863,
"properties": {
"rotation": "8"
}
},
{
- "id": 10723,
+ "id": 10864,
"properties": {
"rotation": "9"
}
},
{
- "id": 10724,
+ "id": 10865,
"properties": {
"rotation": "10"
}
},
{
- "id": 10725,
+ "id": 10866,
"properties": {
"rotation": "11"
}
},
{
- "id": 10726,
+ "id": 10867,
"properties": {
"rotation": "12"
}
},
{
- "id": 10727,
+ "id": 10868,
"properties": {
"rotation": "13"
}
},
{
- "id": 10728,
+ "id": 10869,
"properties": {
"rotation": "14"
}
},
{
- "id": 10729,
+ "id": 10870,
"properties": {
"rotation": "15"
}
@@ -154395,7 +154914,7 @@
},
"states": [
{
- "id": 20696,
+ "id": 20837,
"properties": {
"candles": "1",
"lit": "true",
@@ -154403,7 +154922,7 @@
}
},
{
- "id": 20697,
+ "id": 20838,
"properties": {
"candles": "1",
"lit": "true",
@@ -154411,7 +154930,7 @@
}
},
{
- "id": 20698,
+ "id": 20839,
"properties": {
"candles": "1",
"lit": "false",
@@ -154420,7 +154939,7 @@
},
{
"default": true,
- "id": 20699,
+ "id": 20840,
"properties": {
"candles": "1",
"lit": "false",
@@ -154428,7 +154947,7 @@
}
},
{
- "id": 20700,
+ "id": 20841,
"properties": {
"candles": "2",
"lit": "true",
@@ -154436,7 +154955,7 @@
}
},
{
- "id": 20701,
+ "id": 20842,
"properties": {
"candles": "2",
"lit": "true",
@@ -154444,7 +154963,7 @@
}
},
{
- "id": 20702,
+ "id": 20843,
"properties": {
"candles": "2",
"lit": "false",
@@ -154452,7 +154971,7 @@
}
},
{
- "id": 20703,
+ "id": 20844,
"properties": {
"candles": "2",
"lit": "false",
@@ -154460,7 +154979,7 @@
}
},
{
- "id": 20704,
+ "id": 20845,
"properties": {
"candles": "3",
"lit": "true",
@@ -154468,7 +154987,7 @@
}
},
{
- "id": 20705,
+ "id": 20846,
"properties": {
"candles": "3",
"lit": "true",
@@ -154476,7 +154995,7 @@
}
},
{
- "id": 20706,
+ "id": 20847,
"properties": {
"candles": "3",
"lit": "false",
@@ -154484,7 +155003,7 @@
}
},
{
- "id": 20707,
+ "id": 20848,
"properties": {
"candles": "3",
"lit": "false",
@@ -154492,7 +155011,7 @@
}
},
{
- "id": 20708,
+ "id": 20849,
"properties": {
"candles": "4",
"lit": "true",
@@ -154500,7 +155019,7 @@
}
},
{
- "id": 20709,
+ "id": 20850,
"properties": {
"candles": "4",
"lit": "true",
@@ -154508,7 +155027,7 @@
}
},
{
- "id": 20710,
+ "id": 20851,
"properties": {
"candles": "4",
"lit": "false",
@@ -154516,7 +155035,7 @@
}
},
{
- "id": 20711,
+ "id": 20852,
"properties": {
"candles": "4",
"lit": "false",
@@ -154534,14 +155053,14 @@
},
"states": [
{
- "id": 20870,
+ "id": 21011,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20871,
+ "id": 21012,
"properties": {
"lit": "false"
}
@@ -154552,7 +155071,7 @@
"states": [
{
"default": true,
- "id": 10593
+ "id": 10734
}
]
},
@@ -154560,7 +155079,7 @@
"states": [
{
"default": true,
- "id": 12593
+ "id": 12734
}
]
},
@@ -154568,7 +155087,7 @@
"states": [
{
"default": true,
- "id": 12609
+ "id": 12750
}
]
},
@@ -154584,25 +155103,25 @@
"states": [
{
"default": true,
- "id": 12547,
+ "id": 12688,
"properties": {
"facing": "north"
}
},
{
- "id": 12548,
+ "id": 12689,
"properties": {
"facing": "south"
}
},
{
- "id": 12549,
+ "id": 12690,
"properties": {
"facing": "west"
}
},
{
- "id": 12550,
+ "id": 12691,
"properties": {
"facing": "east"
}
@@ -154627,112 +155146,112 @@
"states": [
{
"default": true,
- "id": 22372,
+ "id": 22513,
"properties": {
"facing": "north",
"flower_amount": "1"
}
},
{
- "id": 22373,
+ "id": 22514,
"properties": {
"facing": "north",
"flower_amount": "2"
}
},
{
- "id": 22374,
+ "id": 22515,
"properties": {
"facing": "north",
"flower_amount": "3"
}
},
{
- "id": 22375,
+ "id": 22516,
"properties": {
"facing": "north",
"flower_amount": "4"
}
},
{
- "id": 22376,
+ "id": 22517,
"properties": {
"facing": "south",
"flower_amount": "1"
}
},
{
- "id": 22377,
+ "id": 22518,
"properties": {
"facing": "south",
"flower_amount": "2"
}
},
{
- "id": 22378,
+ "id": 22519,
"properties": {
"facing": "south",
"flower_amount": "3"
}
},
{
- "id": 22379,
+ "id": 22520,
"properties": {
"facing": "south",
"flower_amount": "4"
}
},
{
- "id": 22380,
+ "id": 22521,
"properties": {
"facing": "west",
"flower_amount": "1"
}
},
{
- "id": 22381,
+ "id": 22522,
"properties": {
"facing": "west",
"flower_amount": "2"
}
},
{
- "id": 22382,
+ "id": 22523,
"properties": {
"facing": "west",
"flower_amount": "3"
}
},
{
- "id": 22383,
+ "id": 22524,
"properties": {
"facing": "west",
"flower_amount": "4"
}
},
{
- "id": 22384,
+ "id": 22525,
"properties": {
"facing": "east",
"flower_amount": "1"
}
},
{
- "id": 22385,
+ "id": 22526,
"properties": {
"facing": "east",
"flower_amount": "2"
}
},
{
- "id": 22386,
+ "id": 22527,
"properties": {
"facing": "east",
"flower_amount": "3"
}
},
{
- "id": 22387,
+ "id": 22528,
"properties": {
"facing": "east",
"flower_amount": "4"
@@ -154753,38 +155272,38 @@
},
"states": [
{
- "id": 12463,
+ "id": 12604,
"properties": {
"facing": "north"
}
},
{
- "id": 12464,
+ "id": 12605,
"properties": {
"facing": "east"
}
},
{
- "id": 12465,
+ "id": 12606,
"properties": {
"facing": "south"
}
},
{
- "id": 12466,
+ "id": 12607,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12467,
+ "id": 12608,
"properties": {
"facing": "up"
}
},
{
- "id": 12468,
+ "id": 12609,
"properties": {
"facing": "down"
}
@@ -154824,7 +155343,7 @@
},
"states": [
{
- "id": 9424,
+ "id": 9564,
"properties": {
"east": "true",
"north": "true",
@@ -154834,7 +155353,7 @@
}
},
{
- "id": 9425,
+ "id": 9565,
"properties": {
"east": "true",
"north": "true",
@@ -154844,7 +155363,7 @@
}
},
{
- "id": 9426,
+ "id": 9566,
"properties": {
"east": "true",
"north": "true",
@@ -154854,7 +155373,7 @@
}
},
{
- "id": 9427,
+ "id": 9567,
"properties": {
"east": "true",
"north": "true",
@@ -154864,7 +155383,7 @@
}
},
{
- "id": 9428,
+ "id": 9568,
"properties": {
"east": "true",
"north": "true",
@@ -154874,7 +155393,7 @@
}
},
{
- "id": 9429,
+ "id": 9569,
"properties": {
"east": "true",
"north": "true",
@@ -154884,7 +155403,7 @@
}
},
{
- "id": 9430,
+ "id": 9570,
"properties": {
"east": "true",
"north": "true",
@@ -154894,7 +155413,7 @@
}
},
{
- "id": 9431,
+ "id": 9571,
"properties": {
"east": "true",
"north": "true",
@@ -154904,7 +155423,7 @@
}
},
{
- "id": 9432,
+ "id": 9572,
"properties": {
"east": "true",
"north": "false",
@@ -154914,7 +155433,7 @@
}
},
{
- "id": 9433,
+ "id": 9573,
"properties": {
"east": "true",
"north": "false",
@@ -154924,7 +155443,7 @@
}
},
{
- "id": 9434,
+ "id": 9574,
"properties": {
"east": "true",
"north": "false",
@@ -154934,7 +155453,7 @@
}
},
{
- "id": 9435,
+ "id": 9575,
"properties": {
"east": "true",
"north": "false",
@@ -154944,7 +155463,7 @@
}
},
{
- "id": 9436,
+ "id": 9576,
"properties": {
"east": "true",
"north": "false",
@@ -154954,7 +155473,7 @@
}
},
{
- "id": 9437,
+ "id": 9577,
"properties": {
"east": "true",
"north": "false",
@@ -154964,7 +155483,7 @@
}
},
{
- "id": 9438,
+ "id": 9578,
"properties": {
"east": "true",
"north": "false",
@@ -154974,7 +155493,7 @@
}
},
{
- "id": 9439,
+ "id": 9579,
"properties": {
"east": "true",
"north": "false",
@@ -154984,7 +155503,7 @@
}
},
{
- "id": 9440,
+ "id": 9580,
"properties": {
"east": "false",
"north": "true",
@@ -154994,7 +155513,7 @@
}
},
{
- "id": 9441,
+ "id": 9581,
"properties": {
"east": "false",
"north": "true",
@@ -155004,7 +155523,7 @@
}
},
{
- "id": 9442,
+ "id": 9582,
"properties": {
"east": "false",
"north": "true",
@@ -155014,7 +155533,7 @@
}
},
{
- "id": 9443,
+ "id": 9583,
"properties": {
"east": "false",
"north": "true",
@@ -155024,7 +155543,7 @@
}
},
{
- "id": 9444,
+ "id": 9584,
"properties": {
"east": "false",
"north": "true",
@@ -155034,7 +155553,7 @@
}
},
{
- "id": 9445,
+ "id": 9585,
"properties": {
"east": "false",
"north": "true",
@@ -155044,7 +155563,7 @@
}
},
{
- "id": 9446,
+ "id": 9586,
"properties": {
"east": "false",
"north": "true",
@@ -155054,7 +155573,7 @@
}
},
{
- "id": 9447,
+ "id": 9587,
"properties": {
"east": "false",
"north": "true",
@@ -155064,7 +155583,7 @@
}
},
{
- "id": 9448,
+ "id": 9588,
"properties": {
"east": "false",
"north": "false",
@@ -155074,7 +155593,7 @@
}
},
{
- "id": 9449,
+ "id": 9589,
"properties": {
"east": "false",
"north": "false",
@@ -155084,7 +155603,7 @@
}
},
{
- "id": 9450,
+ "id": 9590,
"properties": {
"east": "false",
"north": "false",
@@ -155094,7 +155613,7 @@
}
},
{
- "id": 9451,
+ "id": 9591,
"properties": {
"east": "false",
"north": "false",
@@ -155104,7 +155623,7 @@
}
},
{
- "id": 9452,
+ "id": 9592,
"properties": {
"east": "false",
"north": "false",
@@ -155114,7 +155633,7 @@
}
},
{
- "id": 9453,
+ "id": 9593,
"properties": {
"east": "false",
"north": "false",
@@ -155124,7 +155643,7 @@
}
},
{
- "id": 9454,
+ "id": 9594,
"properties": {
"east": "false",
"north": "false",
@@ -155135,7 +155654,7 @@
},
{
"default": true,
- "id": 9455,
+ "id": 9595,
"properties": {
"east": "false",
"north": "false",
@@ -155150,7 +155669,7 @@
"states": [
{
"default": true,
- "id": 9222
+ "id": 9362
}
]
},
@@ -155174,25 +155693,25 @@
"states": [
{
"default": true,
- "id": 10898,
+ "id": 11039,
"properties": {
"facing": "north"
}
},
{
- "id": 10899,
+ "id": 11040,
"properties": {
"facing": "south"
}
},
{
- "id": 10900,
+ "id": 11041,
"properties": {
"facing": "west"
}
},
{
- "id": 10901,
+ "id": 11042,
"properties": {
"facing": "east"
}
@@ -155541,7 +156060,7 @@
},
"states": [
{
- "id": 12356,
+ "id": 12497,
"properties": {
"age": "0",
"half": "upper"
@@ -155549,63 +156068,63 @@
},
{
"default": true,
- "id": 12357,
+ "id": 12498,
"properties": {
"age": "0",
"half": "lower"
}
},
{
- "id": 12358,
+ "id": 12499,
"properties": {
"age": "1",
"half": "upper"
}
},
{
- "id": 12359,
+ "id": 12500,
"properties": {
"age": "1",
"half": "lower"
}
},
{
- "id": 12360,
+ "id": 12501,
"properties": {
"age": "2",
"half": "upper"
}
},
{
- "id": 12361,
+ "id": 12502,
"properties": {
"age": "2",
"half": "lower"
}
},
{
- "id": 12362,
+ "id": 12503,
"properties": {
"age": "3",
"half": "upper"
}
},
{
- "id": 12363,
+ "id": 12504,
"properties": {
"age": "3",
"half": "lower"
}
},
{
- "id": 12364,
+ "id": 12505,
"properties": {
"age": "4",
"half": "upper"
}
},
{
- "id": 12365,
+ "id": 12506,
"properties": {
"age": "4",
"half": "lower"
@@ -155622,14 +156141,14 @@
},
"states": [
{
- "id": 12366,
+ "id": 12507,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 12367,
+ "id": 12508,
"properties": {
"half": "lower"
}
@@ -155638,6 +156157,10 @@
},
"minecraft:player_head": {
"properties": {
+ "powered": [
+ "true",
+ "false"
+ ],
"rotation": [
"0",
"1",
@@ -155659,99 +156182,227 @@
},
"states": [
{
- "default": true,
- "id": 8887,
+ "id": 8947,
"properties": {
+ "powered": "true",
"rotation": "0"
}
},
{
- "id": 8888,
+ "id": 8948,
"properties": {
+ "powered": "true",
"rotation": "1"
}
},
{
- "id": 8889,
+ "id": 8949,
"properties": {
+ "powered": "true",
"rotation": "2"
}
},
{
- "id": 8890,
+ "id": 8950,
"properties": {
+ "powered": "true",
"rotation": "3"
}
},
{
- "id": 8891,
+ "id": 8951,
"properties": {
+ "powered": "true",
"rotation": "4"
}
},
{
- "id": 8892,
+ "id": 8952,
"properties": {
+ "powered": "true",
"rotation": "5"
}
},
{
- "id": 8893,
+ "id": 8953,
"properties": {
+ "powered": "true",
"rotation": "6"
}
},
{
- "id": 8894,
+ "id": 8954,
"properties": {
+ "powered": "true",
"rotation": "7"
}
},
{
- "id": 8895,
+ "id": 8955,
"properties": {
+ "powered": "true",
"rotation": "8"
}
},
{
- "id": 8896,
+ "id": 8956,
"properties": {
+ "powered": "true",
"rotation": "9"
}
},
{
- "id": 8897,
+ "id": 8957,
"properties": {
+ "powered": "true",
"rotation": "10"
}
},
{
- "id": 8898,
+ "id": 8958,
"properties": {
+ "powered": "true",
"rotation": "11"
}
},
{
- "id": 8899,
+ "id": 8959,
"properties": {
+ "powered": "true",
"rotation": "12"
}
},
{
- "id": 8900,
+ "id": 8960,
"properties": {
+ "powered": "true",
"rotation": "13"
}
},
{
- "id": 8901,
+ "id": 8961,
"properties": {
+ "powered": "true",
"rotation": "14"
}
},
{
- "id": 8902,
+ "id": 8962,
"properties": {
+ "powered": "true",
+ "rotation": "15"
+ }
+ },
+ {
+ "default": true,
+ "id": 8963,
+ "properties": {
+ "powered": "false",
+ "rotation": "0"
+ }
+ },
+ {
+ "id": 8964,
+ "properties": {
+ "powered": "false",
+ "rotation": "1"
+ }
+ },
+ {
+ "id": 8965,
+ "properties": {
+ "powered": "false",
+ "rotation": "2"
+ }
+ },
+ {
+ "id": 8966,
+ "properties": {
+ "powered": "false",
+ "rotation": "3"
+ }
+ },
+ {
+ "id": 8967,
+ "properties": {
+ "powered": "false",
+ "rotation": "4"
+ }
+ },
+ {
+ "id": 8968,
+ "properties": {
+ "powered": "false",
+ "rotation": "5"
+ }
+ },
+ {
+ "id": 8969,
+ "properties": {
+ "powered": "false",
+ "rotation": "6"
+ }
+ },
+ {
+ "id": 8970,
+ "properties": {
+ "powered": "false",
+ "rotation": "7"
+ }
+ },
+ {
+ "id": 8971,
+ "properties": {
+ "powered": "false",
+ "rotation": "8"
+ }
+ },
+ {
+ "id": 8972,
+ "properties": {
+ "powered": "false",
+ "rotation": "9"
+ }
+ },
+ {
+ "id": 8973,
+ "properties": {
+ "powered": "false",
+ "rotation": "10"
+ }
+ },
+ {
+ "id": 8974,
+ "properties": {
+ "powered": "false",
+ "rotation": "11"
+ }
+ },
+ {
+ "id": 8975,
+ "properties": {
+ "powered": "false",
+ "rotation": "12"
+ }
+ },
+ {
+ "id": 8976,
+ "properties": {
+ "powered": "false",
+ "rotation": "13"
+ }
+ },
+ {
+ "id": 8977,
+ "properties": {
+ "powered": "false",
+ "rotation": "14"
+ }
+ },
+ {
+ "id": 8978,
+ "properties": {
+ "powered": "false",
"rotation": "15"
}
}
@@ -155764,32 +156415,68 @@
"south",
"west",
"east"
+ ],
+ "powered": [
+ "true",
+ "false"
]
},
"states": [
+ {
+ "id": 8979,
+ "properties": {
+ "facing": "north",
+ "powered": "true"
+ }
+ },
{
"default": true,
- "id": 8903,
+ "id": 8980,
"properties": {
- "facing": "north"
+ "facing": "north",
+ "powered": "false"
}
},
{
- "id": 8904,
+ "id": 8981,
"properties": {
- "facing": "south"
+ "facing": "south",
+ "powered": "true"
}
},
{
- "id": 8905,
+ "id": 8982,
"properties": {
- "facing": "west"
+ "facing": "south",
+ "powered": "false"
}
},
{
- "id": 8906,
+ "id": 8983,
"properties": {
- "facing": "east"
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8984,
+ "properties": {
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 8985,
+ "properties": {
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8986,
+ "properties": {
+ "facing": "east",
+ "powered": "false"
}
}
]
@@ -155837,7 +156524,7 @@
},
"states": [
{
- "id": 22293,
+ "id": 22434,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "up",
@@ -155845,7 +156532,7 @@
}
},
{
- "id": 22294,
+ "id": 22435,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "up",
@@ -155853,7 +156540,7 @@
}
},
{
- "id": 22295,
+ "id": 22436,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "down",
@@ -155861,7 +156548,7 @@
}
},
{
- "id": 22296,
+ "id": 22437,
"properties": {
"thickness": "tip_merge",
"vertical_direction": "down",
@@ -155869,7 +156556,7 @@
}
},
{
- "id": 22297,
+ "id": 22438,
"properties": {
"thickness": "tip",
"vertical_direction": "up",
@@ -155878,7 +156565,7 @@
},
{
"default": true,
- "id": 22298,
+ "id": 22439,
"properties": {
"thickness": "tip",
"vertical_direction": "up",
@@ -155886,7 +156573,7 @@
}
},
{
- "id": 22299,
+ "id": 22440,
"properties": {
"thickness": "tip",
"vertical_direction": "down",
@@ -155894,7 +156581,7 @@
}
},
{
- "id": 22300,
+ "id": 22441,
"properties": {
"thickness": "tip",
"vertical_direction": "down",
@@ -155902,7 +156589,7 @@
}
},
{
- "id": 22301,
+ "id": 22442,
"properties": {
"thickness": "frustum",
"vertical_direction": "up",
@@ -155910,7 +156597,7 @@
}
},
{
- "id": 22302,
+ "id": 22443,
"properties": {
"thickness": "frustum",
"vertical_direction": "up",
@@ -155918,7 +156605,7 @@
}
},
{
- "id": 22303,
+ "id": 22444,
"properties": {
"thickness": "frustum",
"vertical_direction": "down",
@@ -155926,7 +156613,7 @@
}
},
{
- "id": 22304,
+ "id": 22445,
"properties": {
"thickness": "frustum",
"vertical_direction": "down",
@@ -155934,7 +156621,7 @@
}
},
{
- "id": 22305,
+ "id": 22446,
"properties": {
"thickness": "middle",
"vertical_direction": "up",
@@ -155942,7 +156629,7 @@
}
},
{
- "id": 22306,
+ "id": 22447,
"properties": {
"thickness": "middle",
"vertical_direction": "up",
@@ -155950,7 +156637,7 @@
}
},
{
- "id": 22307,
+ "id": 22448,
"properties": {
"thickness": "middle",
"vertical_direction": "down",
@@ -155958,7 +156645,7 @@
}
},
{
- "id": 22308,
+ "id": 22449,
"properties": {
"thickness": "middle",
"vertical_direction": "down",
@@ -155966,7 +156653,7 @@
}
},
{
- "id": 22309,
+ "id": 22450,
"properties": {
"thickness": "base",
"vertical_direction": "up",
@@ -155974,7 +156661,7 @@
}
},
{
- "id": 22310,
+ "id": 22451,
"properties": {
"thickness": "base",
"vertical_direction": "up",
@@ -155982,7 +156669,7 @@
}
},
{
- "id": 22311,
+ "id": 22452,
"properties": {
"thickness": "base",
"vertical_direction": "down",
@@ -155990,7 +156677,7 @@
}
},
{
- "id": 22312,
+ "id": 22453,
"properties": {
"thickness": "base",
"vertical_direction": "down",
@@ -156021,21 +156708,21 @@
},
"states": [
{
- "id": 14007,
+ "id": 14148,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14008,
+ "id": 14149,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14009,
+ "id": 14150,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -156043,21 +156730,21 @@
},
{
"default": true,
- "id": 14010,
+ "id": 14151,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14011,
+ "id": 14152,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14012,
+ "id": 14153,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -156091,7 +156778,7 @@
},
"states": [
{
- "id": 13781,
+ "id": 13922,
"properties": {
"facing": "north",
"half": "top",
@@ -156100,7 +156787,7 @@
}
},
{
- "id": 13782,
+ "id": 13923,
"properties": {
"facing": "north",
"half": "top",
@@ -156109,7 +156796,7 @@
}
},
{
- "id": 13783,
+ "id": 13924,
"properties": {
"facing": "north",
"half": "top",
@@ -156118,7 +156805,7 @@
}
},
{
- "id": 13784,
+ "id": 13925,
"properties": {
"facing": "north",
"half": "top",
@@ -156127,7 +156814,7 @@
}
},
{
- "id": 13785,
+ "id": 13926,
"properties": {
"facing": "north",
"half": "top",
@@ -156136,7 +156823,7 @@
}
},
{
- "id": 13786,
+ "id": 13927,
"properties": {
"facing": "north",
"half": "top",
@@ -156145,7 +156832,7 @@
}
},
{
- "id": 13787,
+ "id": 13928,
"properties": {
"facing": "north",
"half": "top",
@@ -156154,7 +156841,7 @@
}
},
{
- "id": 13788,
+ "id": 13929,
"properties": {
"facing": "north",
"half": "top",
@@ -156163,7 +156850,7 @@
}
},
{
- "id": 13789,
+ "id": 13930,
"properties": {
"facing": "north",
"half": "top",
@@ -156172,7 +156859,7 @@
}
},
{
- "id": 13790,
+ "id": 13931,
"properties": {
"facing": "north",
"half": "top",
@@ -156181,7 +156868,7 @@
}
},
{
- "id": 13791,
+ "id": 13932,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156191,7 +156878,7 @@
},
{
"default": true,
- "id": 13792,
+ "id": 13933,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156200,7 +156887,7 @@
}
},
{
- "id": 13793,
+ "id": 13934,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156209,7 +156896,7 @@
}
},
{
- "id": 13794,
+ "id": 13935,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156218,7 +156905,7 @@
}
},
{
- "id": 13795,
+ "id": 13936,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156227,7 +156914,7 @@
}
},
{
- "id": 13796,
+ "id": 13937,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156236,7 +156923,7 @@
}
},
{
- "id": 13797,
+ "id": 13938,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156245,7 +156932,7 @@
}
},
{
- "id": 13798,
+ "id": 13939,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156254,7 +156941,7 @@
}
},
{
- "id": 13799,
+ "id": 13940,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156263,7 +156950,7 @@
}
},
{
- "id": 13800,
+ "id": 13941,
"properties": {
"facing": "north",
"half": "bottom",
@@ -156272,7 +156959,7 @@
}
},
{
- "id": 13801,
+ "id": 13942,
"properties": {
"facing": "south",
"half": "top",
@@ -156281,7 +156968,7 @@
}
},
{
- "id": 13802,
+ "id": 13943,
"properties": {
"facing": "south",
"half": "top",
@@ -156290,7 +156977,7 @@
}
},
{
- "id": 13803,
+ "id": 13944,
"properties": {
"facing": "south",
"half": "top",
@@ -156299,7 +156986,7 @@
}
},
{
- "id": 13804,
+ "id": 13945,
"properties": {
"facing": "south",
"half": "top",
@@ -156308,7 +156995,7 @@
}
},
{
- "id": 13805,
+ "id": 13946,
"properties": {
"facing": "south",
"half": "top",
@@ -156317,7 +157004,7 @@
}
},
{
- "id": 13806,
+ "id": 13947,
"properties": {
"facing": "south",
"half": "top",
@@ -156326,7 +157013,7 @@
}
},
{
- "id": 13807,
+ "id": 13948,
"properties": {
"facing": "south",
"half": "top",
@@ -156335,7 +157022,7 @@
}
},
{
- "id": 13808,
+ "id": 13949,
"properties": {
"facing": "south",
"half": "top",
@@ -156344,7 +157031,7 @@
}
},
{
- "id": 13809,
+ "id": 13950,
"properties": {
"facing": "south",
"half": "top",
@@ -156353,7 +157040,7 @@
}
},
{
- "id": 13810,
+ "id": 13951,
"properties": {
"facing": "south",
"half": "top",
@@ -156362,7 +157049,7 @@
}
},
{
- "id": 13811,
+ "id": 13952,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156371,7 +157058,7 @@
}
},
{
- "id": 13812,
+ "id": 13953,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156380,7 +157067,7 @@
}
},
{
- "id": 13813,
+ "id": 13954,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156389,7 +157076,7 @@
}
},
{
- "id": 13814,
+ "id": 13955,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156398,7 +157085,7 @@
}
},
{
- "id": 13815,
+ "id": 13956,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156407,7 +157094,7 @@
}
},
{
- "id": 13816,
+ "id": 13957,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156416,7 +157103,7 @@
}
},
{
- "id": 13817,
+ "id": 13958,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156425,7 +157112,7 @@
}
},
{
- "id": 13818,
+ "id": 13959,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156434,7 +157121,7 @@
}
},
{
- "id": 13819,
+ "id": 13960,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156443,7 +157130,7 @@
}
},
{
- "id": 13820,
+ "id": 13961,
"properties": {
"facing": "south",
"half": "bottom",
@@ -156452,7 +157139,7 @@
}
},
{
- "id": 13821,
+ "id": 13962,
"properties": {
"facing": "west",
"half": "top",
@@ -156461,7 +157148,7 @@
}
},
{
- "id": 13822,
+ "id": 13963,
"properties": {
"facing": "west",
"half": "top",
@@ -156470,7 +157157,7 @@
}
},
{
- "id": 13823,
+ "id": 13964,
"properties": {
"facing": "west",
"half": "top",
@@ -156479,7 +157166,7 @@
}
},
{
- "id": 13824,
+ "id": 13965,
"properties": {
"facing": "west",
"half": "top",
@@ -156488,7 +157175,7 @@
}
},
{
- "id": 13825,
+ "id": 13966,
"properties": {
"facing": "west",
"half": "top",
@@ -156497,7 +157184,7 @@
}
},
{
- "id": 13826,
+ "id": 13967,
"properties": {
"facing": "west",
"half": "top",
@@ -156506,7 +157193,7 @@
}
},
{
- "id": 13827,
+ "id": 13968,
"properties": {
"facing": "west",
"half": "top",
@@ -156515,7 +157202,7 @@
}
},
{
- "id": 13828,
+ "id": 13969,
"properties": {
"facing": "west",
"half": "top",
@@ -156524,7 +157211,7 @@
}
},
{
- "id": 13829,
+ "id": 13970,
"properties": {
"facing": "west",
"half": "top",
@@ -156533,7 +157220,7 @@
}
},
{
- "id": 13830,
+ "id": 13971,
"properties": {
"facing": "west",
"half": "top",
@@ -156542,7 +157229,7 @@
}
},
{
- "id": 13831,
+ "id": 13972,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156551,7 +157238,7 @@
}
},
{
- "id": 13832,
+ "id": 13973,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156560,7 +157247,7 @@
}
},
{
- "id": 13833,
+ "id": 13974,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156569,7 +157256,7 @@
}
},
{
- "id": 13834,
+ "id": 13975,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156578,7 +157265,7 @@
}
},
{
- "id": 13835,
+ "id": 13976,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156587,7 +157274,7 @@
}
},
{
- "id": 13836,
+ "id": 13977,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156596,7 +157283,7 @@
}
},
{
- "id": 13837,
+ "id": 13978,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156605,7 +157292,7 @@
}
},
{
- "id": 13838,
+ "id": 13979,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156614,7 +157301,7 @@
}
},
{
- "id": 13839,
+ "id": 13980,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156623,7 +157310,7 @@
}
},
{
- "id": 13840,
+ "id": 13981,
"properties": {
"facing": "west",
"half": "bottom",
@@ -156632,7 +157319,7 @@
}
},
{
- "id": 13841,
+ "id": 13982,
"properties": {
"facing": "east",
"half": "top",
@@ -156641,7 +157328,7 @@
}
},
{
- "id": 13842,
+ "id": 13983,
"properties": {
"facing": "east",
"half": "top",
@@ -156650,7 +157337,7 @@
}
},
{
- "id": 13843,
+ "id": 13984,
"properties": {
"facing": "east",
"half": "top",
@@ -156659,7 +157346,7 @@
}
},
{
- "id": 13844,
+ "id": 13985,
"properties": {
"facing": "east",
"half": "top",
@@ -156668,7 +157355,7 @@
}
},
{
- "id": 13845,
+ "id": 13986,
"properties": {
"facing": "east",
"half": "top",
@@ -156677,7 +157364,7 @@
}
},
{
- "id": 13846,
+ "id": 13987,
"properties": {
"facing": "east",
"half": "top",
@@ -156686,7 +157373,7 @@
}
},
{
- "id": 13847,
+ "id": 13988,
"properties": {
"facing": "east",
"half": "top",
@@ -156695,7 +157382,7 @@
}
},
{
- "id": 13848,
+ "id": 13989,
"properties": {
"facing": "east",
"half": "top",
@@ -156704,7 +157391,7 @@
}
},
{
- "id": 13849,
+ "id": 13990,
"properties": {
"facing": "east",
"half": "top",
@@ -156713,7 +157400,7 @@
}
},
{
- "id": 13850,
+ "id": 13991,
"properties": {
"facing": "east",
"half": "top",
@@ -156722,7 +157409,7 @@
}
},
{
- "id": 13851,
+ "id": 13992,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156731,7 +157418,7 @@
}
},
{
- "id": 13852,
+ "id": 13993,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156740,7 +157427,7 @@
}
},
{
- "id": 13853,
+ "id": 13994,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156749,7 +157436,7 @@
}
},
{
- "id": 13854,
+ "id": 13995,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156758,7 +157445,7 @@
}
},
{
- "id": 13855,
+ "id": 13996,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156767,7 +157454,7 @@
}
},
{
- "id": 13856,
+ "id": 13997,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156776,7 +157463,7 @@
}
},
{
- "id": 13857,
+ "id": 13998,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156785,7 +157472,7 @@
}
},
{
- "id": 13858,
+ "id": 13999,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156794,7 +157481,7 @@
}
},
{
- "id": 13859,
+ "id": 14000,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156803,7 +157490,7 @@
}
},
{
- "id": 13860,
+ "id": 14001,
"properties": {
"facing": "east",
"half": "bottom",
@@ -156847,7 +157534,7 @@
"states": [
{
"default": true,
- "id": 19730
+ "id": 19871
}
]
},
@@ -156865,21 +157552,21 @@
},
"states": [
{
- "id": 19734,
+ "id": 19875,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 19735,
+ "id": 19876,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 19736,
+ "id": 19877,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -156887,21 +157574,21 @@
},
{
"default": true,
- "id": 19737,
+ "id": 19878,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 19738,
+ "id": 19879,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 19739,
+ "id": 19880,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -156935,7 +157622,7 @@
},
"states": [
{
- "id": 19740,
+ "id": 19881,
"properties": {
"facing": "north",
"half": "top",
@@ -156944,7 +157631,7 @@
}
},
{
- "id": 19741,
+ "id": 19882,
"properties": {
"facing": "north",
"half": "top",
@@ -156953,7 +157640,7 @@
}
},
{
- "id": 19742,
+ "id": 19883,
"properties": {
"facing": "north",
"half": "top",
@@ -156962,7 +157649,7 @@
}
},
{
- "id": 19743,
+ "id": 19884,
"properties": {
"facing": "north",
"half": "top",
@@ -156971,7 +157658,7 @@
}
},
{
- "id": 19744,
+ "id": 19885,
"properties": {
"facing": "north",
"half": "top",
@@ -156980,7 +157667,7 @@
}
},
{
- "id": 19745,
+ "id": 19886,
"properties": {
"facing": "north",
"half": "top",
@@ -156989,7 +157676,7 @@
}
},
{
- "id": 19746,
+ "id": 19887,
"properties": {
"facing": "north",
"half": "top",
@@ -156998,7 +157685,7 @@
}
},
{
- "id": 19747,
+ "id": 19888,
"properties": {
"facing": "north",
"half": "top",
@@ -157007,7 +157694,7 @@
}
},
{
- "id": 19748,
+ "id": 19889,
"properties": {
"facing": "north",
"half": "top",
@@ -157016,7 +157703,7 @@
}
},
{
- "id": 19749,
+ "id": 19890,
"properties": {
"facing": "north",
"half": "top",
@@ -157025,7 +157712,7 @@
}
},
{
- "id": 19750,
+ "id": 19891,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157035,7 +157722,7 @@
},
{
"default": true,
- "id": 19751,
+ "id": 19892,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157044,7 +157731,7 @@
}
},
{
- "id": 19752,
+ "id": 19893,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157053,7 +157740,7 @@
}
},
{
- "id": 19753,
+ "id": 19894,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157062,7 +157749,7 @@
}
},
{
- "id": 19754,
+ "id": 19895,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157071,7 +157758,7 @@
}
},
{
- "id": 19755,
+ "id": 19896,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157080,7 +157767,7 @@
}
},
{
- "id": 19756,
+ "id": 19897,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157089,7 +157776,7 @@
}
},
{
- "id": 19757,
+ "id": 19898,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157098,7 +157785,7 @@
}
},
{
- "id": 19758,
+ "id": 19899,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157107,7 +157794,7 @@
}
},
{
- "id": 19759,
+ "id": 19900,
"properties": {
"facing": "north",
"half": "bottom",
@@ -157116,7 +157803,7 @@
}
},
{
- "id": 19760,
+ "id": 19901,
"properties": {
"facing": "south",
"half": "top",
@@ -157125,7 +157812,7 @@
}
},
{
- "id": 19761,
+ "id": 19902,
"properties": {
"facing": "south",
"half": "top",
@@ -157134,7 +157821,7 @@
}
},
{
- "id": 19762,
+ "id": 19903,
"properties": {
"facing": "south",
"half": "top",
@@ -157143,7 +157830,7 @@
}
},
{
- "id": 19763,
+ "id": 19904,
"properties": {
"facing": "south",
"half": "top",
@@ -157152,7 +157839,7 @@
}
},
{
- "id": 19764,
+ "id": 19905,
"properties": {
"facing": "south",
"half": "top",
@@ -157161,7 +157848,7 @@
}
},
{
- "id": 19765,
+ "id": 19906,
"properties": {
"facing": "south",
"half": "top",
@@ -157170,7 +157857,7 @@
}
},
{
- "id": 19766,
+ "id": 19907,
"properties": {
"facing": "south",
"half": "top",
@@ -157179,7 +157866,7 @@
}
},
{
- "id": 19767,
+ "id": 19908,
"properties": {
"facing": "south",
"half": "top",
@@ -157188,7 +157875,7 @@
}
},
{
- "id": 19768,
+ "id": 19909,
"properties": {
"facing": "south",
"half": "top",
@@ -157197,7 +157884,7 @@
}
},
{
- "id": 19769,
+ "id": 19910,
"properties": {
"facing": "south",
"half": "top",
@@ -157206,7 +157893,7 @@
}
},
{
- "id": 19770,
+ "id": 19911,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157215,7 +157902,7 @@
}
},
{
- "id": 19771,
+ "id": 19912,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157224,7 +157911,7 @@
}
},
{
- "id": 19772,
+ "id": 19913,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157233,7 +157920,7 @@
}
},
{
- "id": 19773,
+ "id": 19914,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157242,7 +157929,7 @@
}
},
{
- "id": 19774,
+ "id": 19915,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157251,7 +157938,7 @@
}
},
{
- "id": 19775,
+ "id": 19916,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157260,7 +157947,7 @@
}
},
{
- "id": 19776,
+ "id": 19917,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157269,7 +157956,7 @@
}
},
{
- "id": 19777,
+ "id": 19918,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157278,7 +157965,7 @@
}
},
{
- "id": 19778,
+ "id": 19919,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157287,7 +157974,7 @@
}
},
{
- "id": 19779,
+ "id": 19920,
"properties": {
"facing": "south",
"half": "bottom",
@@ -157296,7 +157983,7 @@
}
},
{
- "id": 19780,
+ "id": 19921,
"properties": {
"facing": "west",
"half": "top",
@@ -157305,7 +157992,7 @@
}
},
{
- "id": 19781,
+ "id": 19922,
"properties": {
"facing": "west",
"half": "top",
@@ -157314,7 +158001,7 @@
}
},
{
- "id": 19782,
+ "id": 19923,
"properties": {
"facing": "west",
"half": "top",
@@ -157323,7 +158010,7 @@
}
},
{
- "id": 19783,
+ "id": 19924,
"properties": {
"facing": "west",
"half": "top",
@@ -157332,7 +158019,7 @@
}
},
{
- "id": 19784,
+ "id": 19925,
"properties": {
"facing": "west",
"half": "top",
@@ -157341,7 +158028,7 @@
}
},
{
- "id": 19785,
+ "id": 19926,
"properties": {
"facing": "west",
"half": "top",
@@ -157350,7 +158037,7 @@
}
},
{
- "id": 19786,
+ "id": 19927,
"properties": {
"facing": "west",
"half": "top",
@@ -157359,7 +158046,7 @@
}
},
{
- "id": 19787,
+ "id": 19928,
"properties": {
"facing": "west",
"half": "top",
@@ -157368,7 +158055,7 @@
}
},
{
- "id": 19788,
+ "id": 19929,
"properties": {
"facing": "west",
"half": "top",
@@ -157377,7 +158064,7 @@
}
},
{
- "id": 19789,
+ "id": 19930,
"properties": {
"facing": "west",
"half": "top",
@@ -157386,7 +158073,7 @@
}
},
{
- "id": 19790,
+ "id": 19931,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157395,7 +158082,7 @@
}
},
{
- "id": 19791,
+ "id": 19932,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157404,7 +158091,7 @@
}
},
{
- "id": 19792,
+ "id": 19933,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157413,7 +158100,7 @@
}
},
{
- "id": 19793,
+ "id": 19934,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157422,7 +158109,7 @@
}
},
{
- "id": 19794,
+ "id": 19935,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157431,7 +158118,7 @@
}
},
{
- "id": 19795,
+ "id": 19936,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157440,7 +158127,7 @@
}
},
{
- "id": 19796,
+ "id": 19937,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157449,7 +158136,7 @@
}
},
{
- "id": 19797,
+ "id": 19938,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157458,7 +158145,7 @@
}
},
{
- "id": 19798,
+ "id": 19939,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157467,7 +158154,7 @@
}
},
{
- "id": 19799,
+ "id": 19940,
"properties": {
"facing": "west",
"half": "bottom",
@@ -157476,7 +158163,7 @@
}
},
{
- "id": 19800,
+ "id": 19941,
"properties": {
"facing": "east",
"half": "top",
@@ -157485,7 +158172,7 @@
}
},
{
- "id": 19801,
+ "id": 19942,
"properties": {
"facing": "east",
"half": "top",
@@ -157494,7 +158181,7 @@
}
},
{
- "id": 19802,
+ "id": 19943,
"properties": {
"facing": "east",
"half": "top",
@@ -157503,7 +158190,7 @@
}
},
{
- "id": 19803,
+ "id": 19944,
"properties": {
"facing": "east",
"half": "top",
@@ -157512,7 +158199,7 @@
}
},
{
- "id": 19804,
+ "id": 19945,
"properties": {
"facing": "east",
"half": "top",
@@ -157521,7 +158208,7 @@
}
},
{
- "id": 19805,
+ "id": 19946,
"properties": {
"facing": "east",
"half": "top",
@@ -157530,7 +158217,7 @@
}
},
{
- "id": 19806,
+ "id": 19947,
"properties": {
"facing": "east",
"half": "top",
@@ -157539,7 +158226,7 @@
}
},
{
- "id": 19807,
+ "id": 19948,
"properties": {
"facing": "east",
"half": "top",
@@ -157548,7 +158235,7 @@
}
},
{
- "id": 19808,
+ "id": 19949,
"properties": {
"facing": "east",
"half": "top",
@@ -157557,7 +158244,7 @@
}
},
{
- "id": 19809,
+ "id": 19950,
"properties": {
"facing": "east",
"half": "top",
@@ -157566,7 +158253,7 @@
}
},
{
- "id": 19810,
+ "id": 19951,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157575,7 +158262,7 @@
}
},
{
- "id": 19811,
+ "id": 19952,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157584,7 +158271,7 @@
}
},
{
- "id": 19812,
+ "id": 19953,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157593,7 +158280,7 @@
}
},
{
- "id": 19813,
+ "id": 19954,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157602,7 +158289,7 @@
}
},
{
- "id": 19814,
+ "id": 19955,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157611,7 +158298,7 @@
}
},
{
- "id": 19815,
+ "id": 19956,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157620,7 +158307,7 @@
}
},
{
- "id": 19816,
+ "id": 19957,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157629,7 +158316,7 @@
}
},
{
- "id": 19817,
+ "id": 19958,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157638,7 +158325,7 @@
}
},
{
- "id": 19818,
+ "id": 19959,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157647,7 +158334,7 @@
}
},
{
- "id": 19819,
+ "id": 19960,
"properties": {
"facing": "east",
"half": "bottom",
@@ -157690,7 +158377,7 @@
},
"states": [
{
- "id": 19820,
+ "id": 19961,
"properties": {
"east": "none",
"north": "none",
@@ -157701,7 +158388,7 @@
}
},
{
- "id": 19821,
+ "id": 19962,
"properties": {
"east": "none",
"north": "none",
@@ -157712,7 +158399,7 @@
}
},
{
- "id": 19822,
+ "id": 19963,
"properties": {
"east": "none",
"north": "none",
@@ -157724,2339 +158411,2339 @@
},
{
"default": true,
- "id": 19823,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19824,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19825,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19826,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19827,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19828,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19829,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19830,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19831,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19832,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19833,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19834,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19835,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19836,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19837,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19838,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19839,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19840,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19841,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19842,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19843,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19844,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19845,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19846,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19847,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19848,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19849,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19850,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19851,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19852,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19853,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19854,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19855,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19856,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19857,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19858,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19859,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19860,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19861,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19862,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19863,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19864,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19865,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19866,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19867,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19868,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19869,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19870,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19871,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19872,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19873,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19874,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19875,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19876,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19877,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19878,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19879,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19880,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19881,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19882,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19883,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19884,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19885,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19886,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19887,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19888,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19889,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19890,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19891,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19892,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19893,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19894,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19895,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19896,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19897,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19898,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19899,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19900,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19901,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19902,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19903,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19904,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19905,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19906,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19907,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19908,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19909,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19910,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19911,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19912,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19913,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19914,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19915,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19916,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19917,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19918,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19919,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19920,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19921,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19922,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19923,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19924,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19925,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19926,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19927,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19928,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19929,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19930,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19931,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19932,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19933,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19934,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19935,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19936,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19937,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19938,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19939,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19940,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19941,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19942,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19943,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19944,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19945,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19946,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19947,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19948,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19949,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19950,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19951,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19952,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19953,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19954,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19955,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19956,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19957,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 19958,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 19959,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 19960,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 19961,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 19962,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 19963,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 19964,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19965,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19966,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19967,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19968,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19969,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19970,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19971,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19972,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19973,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19974,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19975,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19976,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19977,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19978,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19979,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19980,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19981,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19982,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19983,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19984,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19985,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19986,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19987,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19988,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19989,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19990,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19991,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19992,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19993,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 19994,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 19995,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 19996,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 19997,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 19998,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 19999,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20000,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20001,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20002,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20003,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20004,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20005,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20006,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20007,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20008,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20009,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20010,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20011,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20012,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20013,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20014,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20015,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20016,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20017,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20018,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20019,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20020,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20021,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20022,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20023,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20024,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20025,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20026,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20027,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20028,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20029,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20030,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20031,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20032,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20033,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20034,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20035,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20036,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20037,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20038,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20039,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20040,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20041,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20042,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20043,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20044,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20045,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20046,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20047,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20048,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20049,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20050,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20051,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20052,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20053,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20054,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20055,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20056,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20057,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20058,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20059,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20060,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20061,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20062,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20063,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20064,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20065,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20066,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20067,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20068,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20069,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20070,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20071,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20072,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20073,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20074,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20075,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20076,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20077,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20078,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20079,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20080,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20081,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20082,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20083,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20084,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20085,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20086,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20087,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20088,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20089,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20090,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20091,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20092,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20093,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20094,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20095,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20096,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20097,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20098,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20099,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20100,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20101,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20102,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20103,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20104,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20105,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20106,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20107,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20108,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20109,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20110,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20111,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20112,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20113,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20114,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20115,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20116,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20117,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20118,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20119,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20120,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20121,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20122,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20123,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20124,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20125,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20126,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20127,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20128,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20129,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20130,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20131,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20132,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20133,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20134,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20135,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20136,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20137,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20138,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20139,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20140,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20141,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20142,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20143,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20144,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20145,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20146,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20147,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20148,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20149,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20150,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20151,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20152,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20153,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20154,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20155,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20156,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20157,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20158,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20159,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20160,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20161,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20162,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20163,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20164,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20165,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20166,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20167,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20168,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20169,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20170,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20171,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20172,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20173,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20174,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20175,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20176,
"properties": {
"east": "low",
"north": "tall",
@@ -160067,7 +160754,7 @@
}
},
{
- "id": 20036,
+ "id": 20177,
"properties": {
"east": "tall",
"north": "none",
@@ -160078,7 +160765,7 @@
}
},
{
- "id": 20037,
+ "id": 20178,
"properties": {
"east": "tall",
"north": "none",
@@ -160089,7 +160776,7 @@
}
},
{
- "id": 20038,
+ "id": 20179,
"properties": {
"east": "tall",
"north": "none",
@@ -160100,7 +160787,7 @@
}
},
{
- "id": 20039,
+ "id": 20180,
"properties": {
"east": "tall",
"north": "none",
@@ -160111,7 +160798,7 @@
}
},
{
- "id": 20040,
+ "id": 20181,
"properties": {
"east": "tall",
"north": "none",
@@ -160122,7 +160809,7 @@
}
},
{
- "id": 20041,
+ "id": 20182,
"properties": {
"east": "tall",
"north": "none",
@@ -160133,7 +160820,7 @@
}
},
{
- "id": 20042,
+ "id": 20183,
"properties": {
"east": "tall",
"north": "none",
@@ -160144,7 +160831,7 @@
}
},
{
- "id": 20043,
+ "id": 20184,
"properties": {
"east": "tall",
"north": "none",
@@ -160155,7 +160842,7 @@
}
},
{
- "id": 20044,
+ "id": 20185,
"properties": {
"east": "tall",
"north": "none",
@@ -160166,7 +160853,7 @@
}
},
{
- "id": 20045,
+ "id": 20186,
"properties": {
"east": "tall",
"north": "none",
@@ -160177,7 +160864,7 @@
}
},
{
- "id": 20046,
+ "id": 20187,
"properties": {
"east": "tall",
"north": "none",
@@ -160188,7 +160875,7 @@
}
},
{
- "id": 20047,
+ "id": 20188,
"properties": {
"east": "tall",
"north": "none",
@@ -160199,7 +160886,7 @@
}
},
{
- "id": 20048,
+ "id": 20189,
"properties": {
"east": "tall",
"north": "none",
@@ -160210,7 +160897,7 @@
}
},
{
- "id": 20049,
+ "id": 20190,
"properties": {
"east": "tall",
"north": "none",
@@ -160221,7 +160908,7 @@
}
},
{
- "id": 20050,
+ "id": 20191,
"properties": {
"east": "tall",
"north": "none",
@@ -160232,7 +160919,7 @@
}
},
{
- "id": 20051,
+ "id": 20192,
"properties": {
"east": "tall",
"north": "none",
@@ -160243,7 +160930,7 @@
}
},
{
- "id": 20052,
+ "id": 20193,
"properties": {
"east": "tall",
"north": "none",
@@ -160254,7 +160941,7 @@
}
},
{
- "id": 20053,
+ "id": 20194,
"properties": {
"east": "tall",
"north": "none",
@@ -160265,7 +160952,7 @@
}
},
{
- "id": 20054,
+ "id": 20195,
"properties": {
"east": "tall",
"north": "none",
@@ -160276,7 +160963,7 @@
}
},
{
- "id": 20055,
+ "id": 20196,
"properties": {
"east": "tall",
"north": "none",
@@ -160287,7 +160974,7 @@
}
},
{
- "id": 20056,
+ "id": 20197,
"properties": {
"east": "tall",
"north": "none",
@@ -160298,7 +160985,7 @@
}
},
{
- "id": 20057,
+ "id": 20198,
"properties": {
"east": "tall",
"north": "none",
@@ -160309,7 +160996,7 @@
}
},
{
- "id": 20058,
+ "id": 20199,
"properties": {
"east": "tall",
"north": "none",
@@ -160320,7 +161007,7 @@
}
},
{
- "id": 20059,
+ "id": 20200,
"properties": {
"east": "tall",
"north": "none",
@@ -160331,7 +161018,7 @@
}
},
{
- "id": 20060,
+ "id": 20201,
"properties": {
"east": "tall",
"north": "none",
@@ -160342,7 +161029,7 @@
}
},
{
- "id": 20061,
+ "id": 20202,
"properties": {
"east": "tall",
"north": "none",
@@ -160353,7 +161040,7 @@
}
},
{
- "id": 20062,
+ "id": 20203,
"properties": {
"east": "tall",
"north": "none",
@@ -160364,7 +161051,7 @@
}
},
{
- "id": 20063,
+ "id": 20204,
"properties": {
"east": "tall",
"north": "none",
@@ -160375,7 +161062,7 @@
}
},
{
- "id": 20064,
+ "id": 20205,
"properties": {
"east": "tall",
"north": "none",
@@ -160386,7 +161073,7 @@
}
},
{
- "id": 20065,
+ "id": 20206,
"properties": {
"east": "tall",
"north": "none",
@@ -160397,7 +161084,7 @@
}
},
{
- "id": 20066,
+ "id": 20207,
"properties": {
"east": "tall",
"north": "none",
@@ -160408,7 +161095,7 @@
}
},
{
- "id": 20067,
+ "id": 20208,
"properties": {
"east": "tall",
"north": "none",
@@ -160419,7 +161106,7 @@
}
},
{
- "id": 20068,
+ "id": 20209,
"properties": {
"east": "tall",
"north": "none",
@@ -160430,7 +161117,7 @@
}
},
{
- "id": 20069,
+ "id": 20210,
"properties": {
"east": "tall",
"north": "none",
@@ -160441,7 +161128,7 @@
}
},
{
- "id": 20070,
+ "id": 20211,
"properties": {
"east": "tall",
"north": "none",
@@ -160452,7 +161139,7 @@
}
},
{
- "id": 20071,
+ "id": 20212,
"properties": {
"east": "tall",
"north": "none",
@@ -160463,7 +161150,7 @@
}
},
{
- "id": 20072,
+ "id": 20213,
"properties": {
"east": "tall",
"north": "low",
@@ -160474,7 +161161,7 @@
}
},
{
- "id": 20073,
+ "id": 20214,
"properties": {
"east": "tall",
"north": "low",
@@ -160485,7 +161172,7 @@
}
},
{
- "id": 20074,
+ "id": 20215,
"properties": {
"east": "tall",
"north": "low",
@@ -160496,7 +161183,7 @@
}
},
{
- "id": 20075,
+ "id": 20216,
"properties": {
"east": "tall",
"north": "low",
@@ -160507,7 +161194,7 @@
}
},
{
- "id": 20076,
+ "id": 20217,
"properties": {
"east": "tall",
"north": "low",
@@ -160518,7 +161205,7 @@
}
},
{
- "id": 20077,
+ "id": 20218,
"properties": {
"east": "tall",
"north": "low",
@@ -160529,7 +161216,7 @@
}
},
{
- "id": 20078,
+ "id": 20219,
"properties": {
"east": "tall",
"north": "low",
@@ -160540,7 +161227,7 @@
}
},
{
- "id": 20079,
+ "id": 20220,
"properties": {
"east": "tall",
"north": "low",
@@ -160551,7 +161238,7 @@
}
},
{
- "id": 20080,
+ "id": 20221,
"properties": {
"east": "tall",
"north": "low",
@@ -160562,7 +161249,7 @@
}
},
{
- "id": 20081,
+ "id": 20222,
"properties": {
"east": "tall",
"north": "low",
@@ -160573,7 +161260,7 @@
}
},
{
- "id": 20082,
+ "id": 20223,
"properties": {
"east": "tall",
"north": "low",
@@ -160584,7 +161271,7 @@
}
},
{
- "id": 20083,
+ "id": 20224,
"properties": {
"east": "tall",
"north": "low",
@@ -160595,7 +161282,7 @@
}
},
{
- "id": 20084,
+ "id": 20225,
"properties": {
"east": "tall",
"north": "low",
@@ -160606,7 +161293,7 @@
}
},
{
- "id": 20085,
+ "id": 20226,
"properties": {
"east": "tall",
"north": "low",
@@ -160617,7 +161304,7 @@
}
},
{
- "id": 20086,
+ "id": 20227,
"properties": {
"east": "tall",
"north": "low",
@@ -160628,7 +161315,7 @@
}
},
{
- "id": 20087,
+ "id": 20228,
"properties": {
"east": "tall",
"north": "low",
@@ -160639,7 +161326,7 @@
}
},
{
- "id": 20088,
+ "id": 20229,
"properties": {
"east": "tall",
"north": "low",
@@ -160650,7 +161337,7 @@
}
},
{
- "id": 20089,
+ "id": 20230,
"properties": {
"east": "tall",
"north": "low",
@@ -160661,7 +161348,7 @@
}
},
{
- "id": 20090,
+ "id": 20231,
"properties": {
"east": "tall",
"north": "low",
@@ -160672,7 +161359,7 @@
}
},
{
- "id": 20091,
+ "id": 20232,
"properties": {
"east": "tall",
"north": "low",
@@ -160683,7 +161370,7 @@
}
},
{
- "id": 20092,
+ "id": 20233,
"properties": {
"east": "tall",
"north": "low",
@@ -160694,7 +161381,7 @@
}
},
{
- "id": 20093,
+ "id": 20234,
"properties": {
"east": "tall",
"north": "low",
@@ -160705,7 +161392,7 @@
}
},
{
- "id": 20094,
+ "id": 20235,
"properties": {
"east": "tall",
"north": "low",
@@ -160716,7 +161403,7 @@
}
},
{
- "id": 20095,
+ "id": 20236,
"properties": {
"east": "tall",
"north": "low",
@@ -160727,7 +161414,7 @@
}
},
{
- "id": 20096,
+ "id": 20237,
"properties": {
"east": "tall",
"north": "low",
@@ -160738,7 +161425,7 @@
}
},
{
- "id": 20097,
+ "id": 20238,
"properties": {
"east": "tall",
"north": "low",
@@ -160749,7 +161436,7 @@
}
},
{
- "id": 20098,
+ "id": 20239,
"properties": {
"east": "tall",
"north": "low",
@@ -160760,7 +161447,7 @@
}
},
{
- "id": 20099,
+ "id": 20240,
"properties": {
"east": "tall",
"north": "low",
@@ -160771,7 +161458,7 @@
}
},
{
- "id": 20100,
+ "id": 20241,
"properties": {
"east": "tall",
"north": "low",
@@ -160782,7 +161469,7 @@
}
},
{
- "id": 20101,
+ "id": 20242,
"properties": {
"east": "tall",
"north": "low",
@@ -160793,7 +161480,7 @@
}
},
{
- "id": 20102,
+ "id": 20243,
"properties": {
"east": "tall",
"north": "low",
@@ -160804,7 +161491,7 @@
}
},
{
- "id": 20103,
+ "id": 20244,
"properties": {
"east": "tall",
"north": "low",
@@ -160815,7 +161502,7 @@
}
},
{
- "id": 20104,
+ "id": 20245,
"properties": {
"east": "tall",
"north": "low",
@@ -160826,7 +161513,7 @@
}
},
{
- "id": 20105,
+ "id": 20246,
"properties": {
"east": "tall",
"north": "low",
@@ -160837,7 +161524,7 @@
}
},
{
- "id": 20106,
+ "id": 20247,
"properties": {
"east": "tall",
"north": "low",
@@ -160848,7 +161535,7 @@
}
},
{
- "id": 20107,
+ "id": 20248,
"properties": {
"east": "tall",
"north": "low",
@@ -160859,7 +161546,7 @@
}
},
{
- "id": 20108,
+ "id": 20249,
"properties": {
"east": "tall",
"north": "tall",
@@ -160870,7 +161557,7 @@
}
},
{
- "id": 20109,
+ "id": 20250,
"properties": {
"east": "tall",
"north": "tall",
@@ -160881,7 +161568,7 @@
}
},
{
- "id": 20110,
+ "id": 20251,
"properties": {
"east": "tall",
"north": "tall",
@@ -160892,7 +161579,7 @@
}
},
{
- "id": 20111,
+ "id": 20252,
"properties": {
"east": "tall",
"north": "tall",
@@ -160903,7 +161590,7 @@
}
},
{
- "id": 20112,
+ "id": 20253,
"properties": {
"east": "tall",
"north": "tall",
@@ -160914,7 +161601,7 @@
}
},
{
- "id": 20113,
+ "id": 20254,
"properties": {
"east": "tall",
"north": "tall",
@@ -160925,7 +161612,7 @@
}
},
{
- "id": 20114,
+ "id": 20255,
"properties": {
"east": "tall",
"north": "tall",
@@ -160936,7 +161623,7 @@
}
},
{
- "id": 20115,
+ "id": 20256,
"properties": {
"east": "tall",
"north": "tall",
@@ -160947,7 +161634,7 @@
}
},
{
- "id": 20116,
+ "id": 20257,
"properties": {
"east": "tall",
"north": "tall",
@@ -160958,7 +161645,7 @@
}
},
{
- "id": 20117,
+ "id": 20258,
"properties": {
"east": "tall",
"north": "tall",
@@ -160969,7 +161656,7 @@
}
},
{
- "id": 20118,
+ "id": 20259,
"properties": {
"east": "tall",
"north": "tall",
@@ -160980,7 +161667,7 @@
}
},
{
- "id": 20119,
+ "id": 20260,
"properties": {
"east": "tall",
"north": "tall",
@@ -160991,7 +161678,7 @@
}
},
{
- "id": 20120,
+ "id": 20261,
"properties": {
"east": "tall",
"north": "tall",
@@ -161002,7 +161689,7 @@
}
},
{
- "id": 20121,
+ "id": 20262,
"properties": {
"east": "tall",
"north": "tall",
@@ -161013,7 +161700,7 @@
}
},
{
- "id": 20122,
+ "id": 20263,
"properties": {
"east": "tall",
"north": "tall",
@@ -161024,7 +161711,7 @@
}
},
{
- "id": 20123,
+ "id": 20264,
"properties": {
"east": "tall",
"north": "tall",
@@ -161035,7 +161722,7 @@
}
},
{
- "id": 20124,
+ "id": 20265,
"properties": {
"east": "tall",
"north": "tall",
@@ -161046,7 +161733,7 @@
}
},
{
- "id": 20125,
+ "id": 20266,
"properties": {
"east": "tall",
"north": "tall",
@@ -161057,7 +161744,7 @@
}
},
{
- "id": 20126,
+ "id": 20267,
"properties": {
"east": "tall",
"north": "tall",
@@ -161068,7 +161755,7 @@
}
},
{
- "id": 20127,
+ "id": 20268,
"properties": {
"east": "tall",
"north": "tall",
@@ -161079,7 +161766,7 @@
}
},
{
- "id": 20128,
+ "id": 20269,
"properties": {
"east": "tall",
"north": "tall",
@@ -161090,7 +161777,7 @@
}
},
{
- "id": 20129,
+ "id": 20270,
"properties": {
"east": "tall",
"north": "tall",
@@ -161101,7 +161788,7 @@
}
},
{
- "id": 20130,
+ "id": 20271,
"properties": {
"east": "tall",
"north": "tall",
@@ -161112,7 +161799,7 @@
}
},
{
- "id": 20131,
+ "id": 20272,
"properties": {
"east": "tall",
"north": "tall",
@@ -161123,7 +161810,7 @@
}
},
{
- "id": 20132,
+ "id": 20273,
"properties": {
"east": "tall",
"north": "tall",
@@ -161134,7 +161821,7 @@
}
},
{
- "id": 20133,
+ "id": 20274,
"properties": {
"east": "tall",
"north": "tall",
@@ -161145,7 +161832,7 @@
}
},
{
- "id": 20134,
+ "id": 20275,
"properties": {
"east": "tall",
"north": "tall",
@@ -161156,7 +161843,7 @@
}
},
{
- "id": 20135,
+ "id": 20276,
"properties": {
"east": "tall",
"north": "tall",
@@ -161167,7 +161854,7 @@
}
},
{
- "id": 20136,
+ "id": 20277,
"properties": {
"east": "tall",
"north": "tall",
@@ -161178,7 +161865,7 @@
}
},
{
- "id": 20137,
+ "id": 20278,
"properties": {
"east": "tall",
"north": "tall",
@@ -161189,7 +161876,7 @@
}
},
{
- "id": 20138,
+ "id": 20279,
"properties": {
"east": "tall",
"north": "tall",
@@ -161200,7 +161887,7 @@
}
},
{
- "id": 20139,
+ "id": 20280,
"properties": {
"east": "tall",
"north": "tall",
@@ -161211,7 +161898,7 @@
}
},
{
- "id": 20140,
+ "id": 20281,
"properties": {
"east": "tall",
"north": "tall",
@@ -161222,7 +161909,7 @@
}
},
{
- "id": 20141,
+ "id": 20282,
"properties": {
"east": "tall",
"north": "tall",
@@ -161233,7 +161920,7 @@
}
},
{
- "id": 20142,
+ "id": 20283,
"properties": {
"east": "tall",
"north": "tall",
@@ -161244,7 +161931,7 @@
}
},
{
- "id": 20143,
+ "id": 20284,
"properties": {
"east": "tall",
"north": "tall",
@@ -161260,7 +161947,7 @@
"states": [
{
"default": true,
- "id": 19731
+ "id": 19872
}
]
},
@@ -161284,7 +161971,7 @@
},
"states": [
{
- "id": 20233,
+ "id": 20374,
"properties": {
"face": "floor",
"facing": "north",
@@ -161292,7 +161979,7 @@
}
},
{
- "id": 20234,
+ "id": 20375,
"properties": {
"face": "floor",
"facing": "north",
@@ -161300,7 +161987,7 @@
}
},
{
- "id": 20235,
+ "id": 20376,
"properties": {
"face": "floor",
"facing": "south",
@@ -161308,7 +161995,7 @@
}
},
{
- "id": 20236,
+ "id": 20377,
"properties": {
"face": "floor",
"facing": "south",
@@ -161316,7 +162003,7 @@
}
},
{
- "id": 20237,
+ "id": 20378,
"properties": {
"face": "floor",
"facing": "west",
@@ -161324,7 +162011,7 @@
}
},
{
- "id": 20238,
+ "id": 20379,
"properties": {
"face": "floor",
"facing": "west",
@@ -161332,7 +162019,7 @@
}
},
{
- "id": 20239,
+ "id": 20380,
"properties": {
"face": "floor",
"facing": "east",
@@ -161340,7 +162027,7 @@
}
},
{
- "id": 20240,
+ "id": 20381,
"properties": {
"face": "floor",
"facing": "east",
@@ -161348,7 +162035,7 @@
}
},
{
- "id": 20241,
+ "id": 20382,
"properties": {
"face": "wall",
"facing": "north",
@@ -161357,7 +162044,7 @@
},
{
"default": true,
- "id": 20242,
+ "id": 20383,
"properties": {
"face": "wall",
"facing": "north",
@@ -161365,7 +162052,7 @@
}
},
{
- "id": 20243,
+ "id": 20384,
"properties": {
"face": "wall",
"facing": "south",
@@ -161373,7 +162060,7 @@
}
},
{
- "id": 20244,
+ "id": 20385,
"properties": {
"face": "wall",
"facing": "south",
@@ -161381,7 +162068,7 @@
}
},
{
- "id": 20245,
+ "id": 20386,
"properties": {
"face": "wall",
"facing": "west",
@@ -161389,7 +162076,7 @@
}
},
{
- "id": 20246,
+ "id": 20387,
"properties": {
"face": "wall",
"facing": "west",
@@ -161397,7 +162084,7 @@
}
},
{
- "id": 20247,
+ "id": 20388,
"properties": {
"face": "wall",
"facing": "east",
@@ -161405,7 +162092,7 @@
}
},
{
- "id": 20248,
+ "id": 20389,
"properties": {
"face": "wall",
"facing": "east",
@@ -161413,7 +162100,7 @@
}
},
{
- "id": 20249,
+ "id": 20390,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -161421,7 +162108,7 @@
}
},
{
- "id": 20250,
+ "id": 20391,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -161429,7 +162116,7 @@
}
},
{
- "id": 20251,
+ "id": 20392,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -161437,7 +162124,7 @@
}
},
{
- "id": 20252,
+ "id": 20393,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -161445,7 +162132,7 @@
}
},
{
- "id": 20253,
+ "id": 20394,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -161453,7 +162140,7 @@
}
},
{
- "id": 20254,
+ "id": 20395,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -161461,7 +162148,7 @@
}
},
{
- "id": 20255,
+ "id": 20396,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -161469,7 +162156,7 @@
}
},
{
- "id": 20256,
+ "id": 20397,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -161487,14 +162174,14 @@
},
"states": [
{
- "id": 20231,
+ "id": 20372,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 20232,
+ "id": 20373,
"properties": {
"powered": "false"
}
@@ -161515,21 +162202,21 @@
},
"states": [
{
- "id": 20225,
+ "id": 20366,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 20226,
+ "id": 20367,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 20227,
+ "id": 20368,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -161537,21 +162224,21 @@
},
{
"default": true,
- "id": 20228,
+ "id": 20369,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 20229,
+ "id": 20370,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 20230,
+ "id": 20371,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -161585,7 +162272,7 @@
},
"states": [
{
- "id": 20145,
+ "id": 20286,
"properties": {
"facing": "north",
"half": "top",
@@ -161594,7 +162281,7 @@
}
},
{
- "id": 20146,
+ "id": 20287,
"properties": {
"facing": "north",
"half": "top",
@@ -161603,7 +162290,7 @@
}
},
{
- "id": 20147,
+ "id": 20288,
"properties": {
"facing": "north",
"half": "top",
@@ -161612,7 +162299,7 @@
}
},
{
- "id": 20148,
+ "id": 20289,
"properties": {
"facing": "north",
"half": "top",
@@ -161621,7 +162308,7 @@
}
},
{
- "id": 20149,
+ "id": 20290,
"properties": {
"facing": "north",
"half": "top",
@@ -161630,7 +162317,7 @@
}
},
{
- "id": 20150,
+ "id": 20291,
"properties": {
"facing": "north",
"half": "top",
@@ -161639,7 +162326,7 @@
}
},
{
- "id": 20151,
+ "id": 20292,
"properties": {
"facing": "north",
"half": "top",
@@ -161648,7 +162335,7 @@
}
},
{
- "id": 20152,
+ "id": 20293,
"properties": {
"facing": "north",
"half": "top",
@@ -161657,7 +162344,7 @@
}
},
{
- "id": 20153,
+ "id": 20294,
"properties": {
"facing": "north",
"half": "top",
@@ -161666,7 +162353,7 @@
}
},
{
- "id": 20154,
+ "id": 20295,
"properties": {
"facing": "north",
"half": "top",
@@ -161675,7 +162362,7 @@
}
},
{
- "id": 20155,
+ "id": 20296,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161685,7 +162372,7 @@
},
{
"default": true,
- "id": 20156,
+ "id": 20297,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161694,7 +162381,7 @@
}
},
{
- "id": 20157,
+ "id": 20298,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161703,7 +162390,7 @@
}
},
{
- "id": 20158,
+ "id": 20299,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161712,7 +162399,7 @@
}
},
{
- "id": 20159,
+ "id": 20300,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161721,7 +162408,7 @@
}
},
{
- "id": 20160,
+ "id": 20301,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161730,7 +162417,7 @@
}
},
{
- "id": 20161,
+ "id": 20302,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161739,7 +162426,7 @@
}
},
{
- "id": 20162,
+ "id": 20303,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161748,7 +162435,7 @@
}
},
{
- "id": 20163,
+ "id": 20304,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161757,7 +162444,7 @@
}
},
{
- "id": 20164,
+ "id": 20305,
"properties": {
"facing": "north",
"half": "bottom",
@@ -161766,7 +162453,7 @@
}
},
{
- "id": 20165,
+ "id": 20306,
"properties": {
"facing": "south",
"half": "top",
@@ -161775,7 +162462,7 @@
}
},
{
- "id": 20166,
+ "id": 20307,
"properties": {
"facing": "south",
"half": "top",
@@ -161784,7 +162471,7 @@
}
},
{
- "id": 20167,
+ "id": 20308,
"properties": {
"facing": "south",
"half": "top",
@@ -161793,7 +162480,7 @@
}
},
{
- "id": 20168,
+ "id": 20309,
"properties": {
"facing": "south",
"half": "top",
@@ -161802,7 +162489,7 @@
}
},
{
- "id": 20169,
+ "id": 20310,
"properties": {
"facing": "south",
"half": "top",
@@ -161811,7 +162498,7 @@
}
},
{
- "id": 20170,
+ "id": 20311,
"properties": {
"facing": "south",
"half": "top",
@@ -161820,7 +162507,7 @@
}
},
{
- "id": 20171,
+ "id": 20312,
"properties": {
"facing": "south",
"half": "top",
@@ -161829,7 +162516,7 @@
}
},
{
- "id": 20172,
+ "id": 20313,
"properties": {
"facing": "south",
"half": "top",
@@ -161838,7 +162525,7 @@
}
},
{
- "id": 20173,
+ "id": 20314,
"properties": {
"facing": "south",
"half": "top",
@@ -161847,7 +162534,7 @@
}
},
{
- "id": 20174,
+ "id": 20315,
"properties": {
"facing": "south",
"half": "top",
@@ -161856,7 +162543,7 @@
}
},
{
- "id": 20175,
+ "id": 20316,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161865,7 +162552,7 @@
}
},
{
- "id": 20176,
+ "id": 20317,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161874,7 +162561,7 @@
}
},
{
- "id": 20177,
+ "id": 20318,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161883,7 +162570,7 @@
}
},
{
- "id": 20178,
+ "id": 20319,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161892,7 +162579,7 @@
}
},
{
- "id": 20179,
+ "id": 20320,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161901,7 +162588,7 @@
}
},
{
- "id": 20180,
+ "id": 20321,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161910,7 +162597,7 @@
}
},
{
- "id": 20181,
+ "id": 20322,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161919,7 +162606,7 @@
}
},
{
- "id": 20182,
+ "id": 20323,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161928,7 +162615,7 @@
}
},
{
- "id": 20183,
+ "id": 20324,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161937,7 +162624,7 @@
}
},
{
- "id": 20184,
+ "id": 20325,
"properties": {
"facing": "south",
"half": "bottom",
@@ -161946,7 +162633,7 @@
}
},
{
- "id": 20185,
+ "id": 20326,
"properties": {
"facing": "west",
"half": "top",
@@ -161955,7 +162642,7 @@
}
},
{
- "id": 20186,
+ "id": 20327,
"properties": {
"facing": "west",
"half": "top",
@@ -161964,7 +162651,7 @@
}
},
{
- "id": 20187,
+ "id": 20328,
"properties": {
"facing": "west",
"half": "top",
@@ -161973,7 +162660,7 @@
}
},
{
- "id": 20188,
+ "id": 20329,
"properties": {
"facing": "west",
"half": "top",
@@ -161982,7 +162669,7 @@
}
},
{
- "id": 20189,
+ "id": 20330,
"properties": {
"facing": "west",
"half": "top",
@@ -161991,7 +162678,7 @@
}
},
{
- "id": 20190,
+ "id": 20331,
"properties": {
"facing": "west",
"half": "top",
@@ -162000,7 +162687,7 @@
}
},
{
- "id": 20191,
+ "id": 20332,
"properties": {
"facing": "west",
"half": "top",
@@ -162009,7 +162696,7 @@
}
},
{
- "id": 20192,
+ "id": 20333,
"properties": {
"facing": "west",
"half": "top",
@@ -162018,7 +162705,7 @@
}
},
{
- "id": 20193,
+ "id": 20334,
"properties": {
"facing": "west",
"half": "top",
@@ -162027,7 +162714,7 @@
}
},
{
- "id": 20194,
+ "id": 20335,
"properties": {
"facing": "west",
"half": "top",
@@ -162036,7 +162723,7 @@
}
},
{
- "id": 20195,
+ "id": 20336,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162045,7 +162732,7 @@
}
},
{
- "id": 20196,
+ "id": 20337,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162054,7 +162741,7 @@
}
},
{
- "id": 20197,
+ "id": 20338,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162063,7 +162750,7 @@
}
},
{
- "id": 20198,
+ "id": 20339,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162072,7 +162759,7 @@
}
},
{
- "id": 20199,
+ "id": 20340,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162081,7 +162768,7 @@
}
},
{
- "id": 20200,
+ "id": 20341,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162090,7 +162777,7 @@
}
},
{
- "id": 20201,
+ "id": 20342,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162099,7 +162786,7 @@
}
},
{
- "id": 20202,
+ "id": 20343,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162108,7 +162795,7 @@
}
},
{
- "id": 20203,
+ "id": 20344,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162117,7 +162804,7 @@
}
},
{
- "id": 20204,
+ "id": 20345,
"properties": {
"facing": "west",
"half": "bottom",
@@ -162126,7 +162813,7 @@
}
},
{
- "id": 20205,
+ "id": 20346,
"properties": {
"facing": "east",
"half": "top",
@@ -162135,7 +162822,7 @@
}
},
{
- "id": 20206,
+ "id": 20347,
"properties": {
"facing": "east",
"half": "top",
@@ -162144,7 +162831,7 @@
}
},
{
- "id": 20207,
+ "id": 20348,
"properties": {
"facing": "east",
"half": "top",
@@ -162153,7 +162840,7 @@
}
},
{
- "id": 20208,
+ "id": 20349,
"properties": {
"facing": "east",
"half": "top",
@@ -162162,7 +162849,7 @@
}
},
{
- "id": 20209,
+ "id": 20350,
"properties": {
"facing": "east",
"half": "top",
@@ -162171,7 +162858,7 @@
}
},
{
- "id": 20210,
+ "id": 20351,
"properties": {
"facing": "east",
"half": "top",
@@ -162180,7 +162867,7 @@
}
},
{
- "id": 20211,
+ "id": 20352,
"properties": {
"facing": "east",
"half": "top",
@@ -162189,7 +162876,7 @@
}
},
{
- "id": 20212,
+ "id": 20353,
"properties": {
"facing": "east",
"half": "top",
@@ -162198,7 +162885,7 @@
}
},
{
- "id": 20213,
+ "id": 20354,
"properties": {
"facing": "east",
"half": "top",
@@ -162207,7 +162894,7 @@
}
},
{
- "id": 20214,
+ "id": 20355,
"properties": {
"facing": "east",
"half": "top",
@@ -162216,7 +162903,7 @@
}
},
{
- "id": 20215,
+ "id": 20356,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162225,7 +162912,7 @@
}
},
{
- "id": 20216,
+ "id": 20357,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162234,7 +162921,7 @@
}
},
{
- "id": 20217,
+ "id": 20358,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162243,7 +162930,7 @@
}
},
{
- "id": 20218,
+ "id": 20359,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162252,7 +162939,7 @@
}
},
{
- "id": 20219,
+ "id": 20360,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162261,7 +162948,7 @@
}
},
{
- "id": 20220,
+ "id": 20361,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162270,7 +162957,7 @@
}
},
{
- "id": 20221,
+ "id": 20362,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162279,7 +162966,7 @@
}
},
{
- "id": 20222,
+ "id": 20363,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162288,7 +162975,7 @@
}
},
{
- "id": 20223,
+ "id": 20364,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162297,7 +162984,7 @@
}
},
{
- "id": 20224,
+ "id": 20365,
"properties": {
"facing": "east",
"half": "bottom",
@@ -162340,7 +163027,7 @@
},
"states": [
{
- "id": 20257,
+ "id": 20398,
"properties": {
"east": "none",
"north": "none",
@@ -162351,7 +163038,7 @@
}
},
{
- "id": 20258,
+ "id": 20399,
"properties": {
"east": "none",
"north": "none",
@@ -162362,7 +163049,7 @@
}
},
{
- "id": 20259,
+ "id": 20400,
"properties": {
"east": "none",
"north": "none",
@@ -162374,2339 +163061,2339 @@
},
{
"default": true,
- "id": 20260,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20261,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20262,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20263,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20264,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20265,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20266,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20267,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20268,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20269,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20270,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20271,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20272,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20273,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20274,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20275,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20276,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20277,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20278,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20279,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20280,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20281,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20282,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20283,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20284,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20285,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20286,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20287,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20288,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20289,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20290,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20291,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20292,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20293,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20294,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20295,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20296,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20297,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20298,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20299,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20300,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20301,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20302,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20303,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20304,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20305,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20306,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20307,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20308,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20309,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20310,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20311,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20312,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20313,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20314,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20315,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20316,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20317,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20318,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20319,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20320,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20321,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20322,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20323,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20324,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20325,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20326,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20327,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20328,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20329,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20330,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20331,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20332,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20333,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20334,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20335,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20336,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20337,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20338,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20339,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20340,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20341,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20342,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20343,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20344,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20345,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20346,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20347,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20348,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20349,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20350,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20351,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20352,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20353,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20354,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20355,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20356,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20357,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20358,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20359,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20360,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20361,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20362,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20363,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20364,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20365,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20366,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20367,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20368,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20369,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20370,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20371,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20372,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20373,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20374,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20375,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20376,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20377,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20378,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20379,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20380,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20381,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20382,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20383,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20384,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20385,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20386,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20387,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20388,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20389,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20390,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20391,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20392,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20393,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20394,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 20395,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 20396,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 20397,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 20398,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 20399,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 20400,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 20401,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20402,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20403,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20404,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20405,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20406,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20407,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20408,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20409,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20410,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20411,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20412,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20413,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20414,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20415,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20416,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20417,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20418,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20419,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20420,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20421,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20422,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20423,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20424,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20425,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20426,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20427,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20428,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20429,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20430,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20431,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20432,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20433,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20434,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20435,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20436,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20437,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20438,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20439,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20440,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20441,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20442,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20443,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20444,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20445,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20446,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20447,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20448,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20449,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20450,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20451,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20452,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20453,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20454,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20455,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20456,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20457,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20458,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20459,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20460,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20461,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20462,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20463,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20464,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20465,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20466,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 20467,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 20468,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 20469,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 20470,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 20471,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 20472,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20473,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20474,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20475,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20476,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20477,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20478,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20479,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20480,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20481,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20482,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20483,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20484,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20485,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20486,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20487,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20488,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20489,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20490,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20491,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20492,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20493,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20494,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20495,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20496,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20497,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20498,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20499,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20500,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20501,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20502,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20503,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20504,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20505,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20506,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20507,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20508,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20509,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20510,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20511,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20512,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20513,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20514,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20515,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20516,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20517,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20518,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20519,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20520,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20521,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20522,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20523,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20524,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20525,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20526,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20527,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20528,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20529,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20530,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20531,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20532,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20533,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20534,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20535,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20536,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20537,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20538,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20539,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20540,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20541,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20542,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20543,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20544,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20545,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20546,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20547,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20548,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20549,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20550,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20551,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20552,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20553,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20554,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20555,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20556,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20557,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20558,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20559,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20560,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20561,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20562,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20563,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20564,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20565,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20566,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20567,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20568,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20569,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20570,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20571,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20572,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20573,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20574,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20575,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20576,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20577,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20578,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20579,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20580,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20581,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20582,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20583,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20584,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20585,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20586,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20587,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20588,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20589,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20590,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20591,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20592,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20593,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20594,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20595,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20596,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20597,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20598,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20599,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20600,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20601,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20602,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20603,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20604,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20605,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20606,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20607,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20608,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20609,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20610,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 20611,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 20612,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 20613,
"properties": {
"east": "low",
"north": "tall",
@@ -164717,7 +165404,7 @@
}
},
{
- "id": 20473,
+ "id": 20614,
"properties": {
"east": "tall",
"north": "none",
@@ -164728,7 +165415,7 @@
}
},
{
- "id": 20474,
+ "id": 20615,
"properties": {
"east": "tall",
"north": "none",
@@ -164739,7 +165426,7 @@
}
},
{
- "id": 20475,
+ "id": 20616,
"properties": {
"east": "tall",
"north": "none",
@@ -164750,7 +165437,7 @@
}
},
{
- "id": 20476,
+ "id": 20617,
"properties": {
"east": "tall",
"north": "none",
@@ -164761,7 +165448,7 @@
}
},
{
- "id": 20477,
+ "id": 20618,
"properties": {
"east": "tall",
"north": "none",
@@ -164772,7 +165459,7 @@
}
},
{
- "id": 20478,
+ "id": 20619,
"properties": {
"east": "tall",
"north": "none",
@@ -164783,7 +165470,7 @@
}
},
{
- "id": 20479,
+ "id": 20620,
"properties": {
"east": "tall",
"north": "none",
@@ -164794,7 +165481,7 @@
}
},
{
- "id": 20480,
+ "id": 20621,
"properties": {
"east": "tall",
"north": "none",
@@ -164805,7 +165492,7 @@
}
},
{
- "id": 20481,
+ "id": 20622,
"properties": {
"east": "tall",
"north": "none",
@@ -164816,7 +165503,7 @@
}
},
{
- "id": 20482,
+ "id": 20623,
"properties": {
"east": "tall",
"north": "none",
@@ -164827,7 +165514,7 @@
}
},
{
- "id": 20483,
+ "id": 20624,
"properties": {
"east": "tall",
"north": "none",
@@ -164838,7 +165525,7 @@
}
},
{
- "id": 20484,
+ "id": 20625,
"properties": {
"east": "tall",
"north": "none",
@@ -164849,7 +165536,7 @@
}
},
{
- "id": 20485,
+ "id": 20626,
"properties": {
"east": "tall",
"north": "none",
@@ -164860,7 +165547,7 @@
}
},
{
- "id": 20486,
+ "id": 20627,
"properties": {
"east": "tall",
"north": "none",
@@ -164871,7 +165558,7 @@
}
},
{
- "id": 20487,
+ "id": 20628,
"properties": {
"east": "tall",
"north": "none",
@@ -164882,7 +165569,7 @@
}
},
{
- "id": 20488,
+ "id": 20629,
"properties": {
"east": "tall",
"north": "none",
@@ -164893,7 +165580,7 @@
}
},
{
- "id": 20489,
+ "id": 20630,
"properties": {
"east": "tall",
"north": "none",
@@ -164904,7 +165591,7 @@
}
},
{
- "id": 20490,
+ "id": 20631,
"properties": {
"east": "tall",
"north": "none",
@@ -164915,7 +165602,7 @@
}
},
{
- "id": 20491,
+ "id": 20632,
"properties": {
"east": "tall",
"north": "none",
@@ -164926,7 +165613,7 @@
}
},
{
- "id": 20492,
+ "id": 20633,
"properties": {
"east": "tall",
"north": "none",
@@ -164937,7 +165624,7 @@
}
},
{
- "id": 20493,
+ "id": 20634,
"properties": {
"east": "tall",
"north": "none",
@@ -164948,7 +165635,7 @@
}
},
{
- "id": 20494,
+ "id": 20635,
"properties": {
"east": "tall",
"north": "none",
@@ -164959,7 +165646,7 @@
}
},
{
- "id": 20495,
+ "id": 20636,
"properties": {
"east": "tall",
"north": "none",
@@ -164970,7 +165657,7 @@
}
},
{
- "id": 20496,
+ "id": 20637,
"properties": {
"east": "tall",
"north": "none",
@@ -164981,7 +165668,7 @@
}
},
{
- "id": 20497,
+ "id": 20638,
"properties": {
"east": "tall",
"north": "none",
@@ -164992,7 +165679,7 @@
}
},
{
- "id": 20498,
+ "id": 20639,
"properties": {
"east": "tall",
"north": "none",
@@ -165003,7 +165690,7 @@
}
},
{
- "id": 20499,
+ "id": 20640,
"properties": {
"east": "tall",
"north": "none",
@@ -165014,7 +165701,7 @@
}
},
{
- "id": 20500,
+ "id": 20641,
"properties": {
"east": "tall",
"north": "none",
@@ -165025,7 +165712,7 @@
}
},
{
- "id": 20501,
+ "id": 20642,
"properties": {
"east": "tall",
"north": "none",
@@ -165036,7 +165723,7 @@
}
},
{
- "id": 20502,
+ "id": 20643,
"properties": {
"east": "tall",
"north": "none",
@@ -165047,7 +165734,7 @@
}
},
{
- "id": 20503,
+ "id": 20644,
"properties": {
"east": "tall",
"north": "none",
@@ -165058,7 +165745,7 @@
}
},
{
- "id": 20504,
+ "id": 20645,
"properties": {
"east": "tall",
"north": "none",
@@ -165069,7 +165756,7 @@
}
},
{
- "id": 20505,
+ "id": 20646,
"properties": {
"east": "tall",
"north": "none",
@@ -165080,7 +165767,7 @@
}
},
{
- "id": 20506,
+ "id": 20647,
"properties": {
"east": "tall",
"north": "none",
@@ -165091,7 +165778,7 @@
}
},
{
- "id": 20507,
+ "id": 20648,
"properties": {
"east": "tall",
"north": "none",
@@ -165102,7 +165789,7 @@
}
},
{
- "id": 20508,
+ "id": 20649,
"properties": {
"east": "tall",
"north": "none",
@@ -165113,7 +165800,7 @@
}
},
{
- "id": 20509,
+ "id": 20650,
"properties": {
"east": "tall",
"north": "low",
@@ -165124,7 +165811,7 @@
}
},
{
- "id": 20510,
+ "id": 20651,
"properties": {
"east": "tall",
"north": "low",
@@ -165135,7 +165822,7 @@
}
},
{
- "id": 20511,
+ "id": 20652,
"properties": {
"east": "tall",
"north": "low",
@@ -165146,7 +165833,7 @@
}
},
{
- "id": 20512,
+ "id": 20653,
"properties": {
"east": "tall",
"north": "low",
@@ -165157,7 +165844,7 @@
}
},
{
- "id": 20513,
+ "id": 20654,
"properties": {
"east": "tall",
"north": "low",
@@ -165168,7 +165855,7 @@
}
},
{
- "id": 20514,
+ "id": 20655,
"properties": {
"east": "tall",
"north": "low",
@@ -165179,7 +165866,7 @@
}
},
{
- "id": 20515,
+ "id": 20656,
"properties": {
"east": "tall",
"north": "low",
@@ -165190,7 +165877,7 @@
}
},
{
- "id": 20516,
+ "id": 20657,
"properties": {
"east": "tall",
"north": "low",
@@ -165201,7 +165888,7 @@
}
},
{
- "id": 20517,
+ "id": 20658,
"properties": {
"east": "tall",
"north": "low",
@@ -165212,7 +165899,7 @@
}
},
{
- "id": 20518,
+ "id": 20659,
"properties": {
"east": "tall",
"north": "low",
@@ -165223,7 +165910,7 @@
}
},
{
- "id": 20519,
+ "id": 20660,
"properties": {
"east": "tall",
"north": "low",
@@ -165234,7 +165921,7 @@
}
},
{
- "id": 20520,
+ "id": 20661,
"properties": {
"east": "tall",
"north": "low",
@@ -165245,7 +165932,7 @@
}
},
{
- "id": 20521,
+ "id": 20662,
"properties": {
"east": "tall",
"north": "low",
@@ -165256,7 +165943,7 @@
}
},
{
- "id": 20522,
+ "id": 20663,
"properties": {
"east": "tall",
"north": "low",
@@ -165267,7 +165954,7 @@
}
},
{
- "id": 20523,
+ "id": 20664,
"properties": {
"east": "tall",
"north": "low",
@@ -165278,7 +165965,7 @@
}
},
{
- "id": 20524,
+ "id": 20665,
"properties": {
"east": "tall",
"north": "low",
@@ -165289,7 +165976,7 @@
}
},
{
- "id": 20525,
+ "id": 20666,
"properties": {
"east": "tall",
"north": "low",
@@ -165300,7 +165987,7 @@
}
},
{
- "id": 20526,
+ "id": 20667,
"properties": {
"east": "tall",
"north": "low",
@@ -165311,7 +165998,7 @@
}
},
{
- "id": 20527,
+ "id": 20668,
"properties": {
"east": "tall",
"north": "low",
@@ -165322,7 +166009,7 @@
}
},
{
- "id": 20528,
+ "id": 20669,
"properties": {
"east": "tall",
"north": "low",
@@ -165333,7 +166020,7 @@
}
},
{
- "id": 20529,
+ "id": 20670,
"properties": {
"east": "tall",
"north": "low",
@@ -165344,7 +166031,7 @@
}
},
{
- "id": 20530,
+ "id": 20671,
"properties": {
"east": "tall",
"north": "low",
@@ -165355,7 +166042,7 @@
}
},
{
- "id": 20531,
+ "id": 20672,
"properties": {
"east": "tall",
"north": "low",
@@ -165366,7 +166053,7 @@
}
},
{
- "id": 20532,
+ "id": 20673,
"properties": {
"east": "tall",
"north": "low",
@@ -165377,7 +166064,7 @@
}
},
{
- "id": 20533,
+ "id": 20674,
"properties": {
"east": "tall",
"north": "low",
@@ -165388,7 +166075,7 @@
}
},
{
- "id": 20534,
+ "id": 20675,
"properties": {
"east": "tall",
"north": "low",
@@ -165399,7 +166086,7 @@
}
},
{
- "id": 20535,
+ "id": 20676,
"properties": {
"east": "tall",
"north": "low",
@@ -165410,7 +166097,7 @@
}
},
{
- "id": 20536,
+ "id": 20677,
"properties": {
"east": "tall",
"north": "low",
@@ -165421,7 +166108,7 @@
}
},
{
- "id": 20537,
+ "id": 20678,
"properties": {
"east": "tall",
"north": "low",
@@ -165432,7 +166119,7 @@
}
},
{
- "id": 20538,
+ "id": 20679,
"properties": {
"east": "tall",
"north": "low",
@@ -165443,7 +166130,7 @@
}
},
{
- "id": 20539,
+ "id": 20680,
"properties": {
"east": "tall",
"north": "low",
@@ -165454,7 +166141,7 @@
}
},
{
- "id": 20540,
+ "id": 20681,
"properties": {
"east": "tall",
"north": "low",
@@ -165465,7 +166152,7 @@
}
},
{
- "id": 20541,
+ "id": 20682,
"properties": {
"east": "tall",
"north": "low",
@@ -165476,7 +166163,7 @@
}
},
{
- "id": 20542,
+ "id": 20683,
"properties": {
"east": "tall",
"north": "low",
@@ -165487,7 +166174,7 @@
}
},
{
- "id": 20543,
+ "id": 20684,
"properties": {
"east": "tall",
"north": "low",
@@ -165498,7 +166185,7 @@
}
},
{
- "id": 20544,
+ "id": 20685,
"properties": {
"east": "tall",
"north": "low",
@@ -165509,7 +166196,7 @@
}
},
{
- "id": 20545,
+ "id": 20686,
"properties": {
"east": "tall",
"north": "tall",
@@ -165520,7 +166207,7 @@
}
},
{
- "id": 20546,
+ "id": 20687,
"properties": {
"east": "tall",
"north": "tall",
@@ -165531,7 +166218,7 @@
}
},
{
- "id": 20547,
+ "id": 20688,
"properties": {
"east": "tall",
"north": "tall",
@@ -165542,7 +166229,7 @@
}
},
{
- "id": 20548,
+ "id": 20689,
"properties": {
"east": "tall",
"north": "tall",
@@ -165553,7 +166240,7 @@
}
},
{
- "id": 20549,
+ "id": 20690,
"properties": {
"east": "tall",
"north": "tall",
@@ -165564,7 +166251,7 @@
}
},
{
- "id": 20550,
+ "id": 20691,
"properties": {
"east": "tall",
"north": "tall",
@@ -165575,7 +166262,7 @@
}
},
{
- "id": 20551,
+ "id": 20692,
"properties": {
"east": "tall",
"north": "tall",
@@ -165586,7 +166273,7 @@
}
},
{
- "id": 20552,
+ "id": 20693,
"properties": {
"east": "tall",
"north": "tall",
@@ -165597,7 +166284,7 @@
}
},
{
- "id": 20553,
+ "id": 20694,
"properties": {
"east": "tall",
"north": "tall",
@@ -165608,7 +166295,7 @@
}
},
{
- "id": 20554,
+ "id": 20695,
"properties": {
"east": "tall",
"north": "tall",
@@ -165619,7 +166306,7 @@
}
},
{
- "id": 20555,
+ "id": 20696,
"properties": {
"east": "tall",
"north": "tall",
@@ -165630,7 +166317,7 @@
}
},
{
- "id": 20556,
+ "id": 20697,
"properties": {
"east": "tall",
"north": "tall",
@@ -165641,7 +166328,7 @@
}
},
{
- "id": 20557,
+ "id": 20698,
"properties": {
"east": "tall",
"north": "tall",
@@ -165652,7 +166339,7 @@
}
},
{
- "id": 20558,
+ "id": 20699,
"properties": {
"east": "tall",
"north": "tall",
@@ -165663,7 +166350,7 @@
}
},
{
- "id": 20559,
+ "id": 20700,
"properties": {
"east": "tall",
"north": "tall",
@@ -165674,7 +166361,7 @@
}
},
{
- "id": 20560,
+ "id": 20701,
"properties": {
"east": "tall",
"north": "tall",
@@ -165685,7 +166372,7 @@
}
},
{
- "id": 20561,
+ "id": 20702,
"properties": {
"east": "tall",
"north": "tall",
@@ -165696,7 +166383,7 @@
}
},
{
- "id": 20562,
+ "id": 20703,
"properties": {
"east": "tall",
"north": "tall",
@@ -165707,7 +166394,7 @@
}
},
{
- "id": 20563,
+ "id": 20704,
"properties": {
"east": "tall",
"north": "tall",
@@ -165718,7 +166405,7 @@
}
},
{
- "id": 20564,
+ "id": 20705,
"properties": {
"east": "tall",
"north": "tall",
@@ -165729,7 +166416,7 @@
}
},
{
- "id": 20565,
+ "id": 20706,
"properties": {
"east": "tall",
"north": "tall",
@@ -165740,7 +166427,7 @@
}
},
{
- "id": 20566,
+ "id": 20707,
"properties": {
"east": "tall",
"north": "tall",
@@ -165751,7 +166438,7 @@
}
},
{
- "id": 20567,
+ "id": 20708,
"properties": {
"east": "tall",
"north": "tall",
@@ -165762,7 +166449,7 @@
}
},
{
- "id": 20568,
+ "id": 20709,
"properties": {
"east": "tall",
"north": "tall",
@@ -165773,7 +166460,7 @@
}
},
{
- "id": 20569,
+ "id": 20710,
"properties": {
"east": "tall",
"north": "tall",
@@ -165784,7 +166471,7 @@
}
},
{
- "id": 20570,
+ "id": 20711,
"properties": {
"east": "tall",
"north": "tall",
@@ -165795,7 +166482,7 @@
}
},
{
- "id": 20571,
+ "id": 20712,
"properties": {
"east": "tall",
"north": "tall",
@@ -165806,7 +166493,7 @@
}
},
{
- "id": 20572,
+ "id": 20713,
"properties": {
"east": "tall",
"north": "tall",
@@ -165817,7 +166504,7 @@
}
},
{
- "id": 20573,
+ "id": 20714,
"properties": {
"east": "tall",
"north": "tall",
@@ -165828,7 +166515,7 @@
}
},
{
- "id": 20574,
+ "id": 20715,
"properties": {
"east": "tall",
"north": "tall",
@@ -165839,7 +166526,7 @@
}
},
{
- "id": 20575,
+ "id": 20716,
"properties": {
"east": "tall",
"north": "tall",
@@ -165850,7 +166537,7 @@
}
},
{
- "id": 20576,
+ "id": 20717,
"properties": {
"east": "tall",
"north": "tall",
@@ -165861,7 +166548,7 @@
}
},
{
- "id": 20577,
+ "id": 20718,
"properties": {
"east": "tall",
"north": "tall",
@@ -165872,7 +166559,7 @@
}
},
{
- "id": 20578,
+ "id": 20719,
"properties": {
"east": "tall",
"north": "tall",
@@ -165883,7 +166570,7 @@
}
},
{
- "id": 20579,
+ "id": 20720,
"properties": {
"east": "tall",
"north": "tall",
@@ -165894,7 +166581,7 @@
}
},
{
- "id": 20580,
+ "id": 20721,
"properties": {
"east": "tall",
"north": "tall",
@@ -165910,7 +166597,7 @@
"states": [
{
"default": true,
- "id": 22863
+ "id": 23004
}
]
},
@@ -165928,21 +166615,21 @@
},
"states": [
{
- "id": 22944,
+ "id": 23085,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22945,
+ "id": 23086,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22946,
+ "id": 23087,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -165950,21 +166637,21 @@
},
{
"default": true,
- "id": 22947,
+ "id": 23088,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22948,
+ "id": 23089,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22949,
+ "id": 23090,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -165998,7 +166685,7 @@
},
"states": [
{
- "id": 22864,
+ "id": 23005,
"properties": {
"facing": "north",
"half": "top",
@@ -166007,7 +166694,7 @@
}
},
{
- "id": 22865,
+ "id": 23006,
"properties": {
"facing": "north",
"half": "top",
@@ -166016,7 +166703,7 @@
}
},
{
- "id": 22866,
+ "id": 23007,
"properties": {
"facing": "north",
"half": "top",
@@ -166025,7 +166712,7 @@
}
},
{
- "id": 22867,
+ "id": 23008,
"properties": {
"facing": "north",
"half": "top",
@@ -166034,7 +166721,7 @@
}
},
{
- "id": 22868,
+ "id": 23009,
"properties": {
"facing": "north",
"half": "top",
@@ -166043,7 +166730,7 @@
}
},
{
- "id": 22869,
+ "id": 23010,
"properties": {
"facing": "north",
"half": "top",
@@ -166052,7 +166739,7 @@
}
},
{
- "id": 22870,
+ "id": 23011,
"properties": {
"facing": "north",
"half": "top",
@@ -166061,7 +166748,7 @@
}
},
{
- "id": 22871,
+ "id": 23012,
"properties": {
"facing": "north",
"half": "top",
@@ -166070,7 +166757,7 @@
}
},
{
- "id": 22872,
+ "id": 23013,
"properties": {
"facing": "north",
"half": "top",
@@ -166079,7 +166766,7 @@
}
},
{
- "id": 22873,
+ "id": 23014,
"properties": {
"facing": "north",
"half": "top",
@@ -166088,7 +166775,7 @@
}
},
{
- "id": 22874,
+ "id": 23015,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166098,7 +166785,7 @@
},
{
"default": true,
- "id": 22875,
+ "id": 23016,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166107,7 +166794,7 @@
}
},
{
- "id": 22876,
+ "id": 23017,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166116,7 +166803,7 @@
}
},
{
- "id": 22877,
+ "id": 23018,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166125,7 +166812,7 @@
}
},
{
- "id": 22878,
+ "id": 23019,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166134,7 +166821,7 @@
}
},
{
- "id": 22879,
+ "id": 23020,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166143,7 +166830,7 @@
}
},
{
- "id": 22880,
+ "id": 23021,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166152,7 +166839,7 @@
}
},
{
- "id": 22881,
+ "id": 23022,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166161,7 +166848,7 @@
}
},
{
- "id": 22882,
+ "id": 23023,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166170,7 +166857,7 @@
}
},
{
- "id": 22883,
+ "id": 23024,
"properties": {
"facing": "north",
"half": "bottom",
@@ -166179,7 +166866,7 @@
}
},
{
- "id": 22884,
+ "id": 23025,
"properties": {
"facing": "south",
"half": "top",
@@ -166188,7 +166875,7 @@
}
},
{
- "id": 22885,
+ "id": 23026,
"properties": {
"facing": "south",
"half": "top",
@@ -166197,7 +166884,7 @@
}
},
{
- "id": 22886,
+ "id": 23027,
"properties": {
"facing": "south",
"half": "top",
@@ -166206,7 +166893,7 @@
}
},
{
- "id": 22887,
+ "id": 23028,
"properties": {
"facing": "south",
"half": "top",
@@ -166215,7 +166902,7 @@
}
},
{
- "id": 22888,
+ "id": 23029,
"properties": {
"facing": "south",
"half": "top",
@@ -166224,7 +166911,7 @@
}
},
{
- "id": 22889,
+ "id": 23030,
"properties": {
"facing": "south",
"half": "top",
@@ -166233,7 +166920,7 @@
}
},
{
- "id": 22890,
+ "id": 23031,
"properties": {
"facing": "south",
"half": "top",
@@ -166242,7 +166929,7 @@
}
},
{
- "id": 22891,
+ "id": 23032,
"properties": {
"facing": "south",
"half": "top",
@@ -166251,7 +166938,7 @@
}
},
{
- "id": 22892,
+ "id": 23033,
"properties": {
"facing": "south",
"half": "top",
@@ -166260,7 +166947,7 @@
}
},
{
- "id": 22893,
+ "id": 23034,
"properties": {
"facing": "south",
"half": "top",
@@ -166269,7 +166956,7 @@
}
},
{
- "id": 22894,
+ "id": 23035,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166278,7 +166965,7 @@
}
},
{
- "id": 22895,
+ "id": 23036,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166287,7 +166974,7 @@
}
},
{
- "id": 22896,
+ "id": 23037,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166296,7 +166983,7 @@
}
},
{
- "id": 22897,
+ "id": 23038,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166305,7 +166992,7 @@
}
},
{
- "id": 22898,
+ "id": 23039,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166314,7 +167001,7 @@
}
},
{
- "id": 22899,
+ "id": 23040,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166323,7 +167010,7 @@
}
},
{
- "id": 22900,
+ "id": 23041,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166332,7 +167019,7 @@
}
},
{
- "id": 22901,
+ "id": 23042,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166341,7 +167028,7 @@
}
},
{
- "id": 22902,
+ "id": 23043,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166350,7 +167037,7 @@
}
},
{
- "id": 22903,
+ "id": 23044,
"properties": {
"facing": "south",
"half": "bottom",
@@ -166359,7 +167046,7 @@
}
},
{
- "id": 22904,
+ "id": 23045,
"properties": {
"facing": "west",
"half": "top",
@@ -166368,7 +167055,7 @@
}
},
{
- "id": 22905,
+ "id": 23046,
"properties": {
"facing": "west",
"half": "top",
@@ -166377,7 +167064,7 @@
}
},
{
- "id": 22906,
+ "id": 23047,
"properties": {
"facing": "west",
"half": "top",
@@ -166386,7 +167073,7 @@
}
},
{
- "id": 22907,
+ "id": 23048,
"properties": {
"facing": "west",
"half": "top",
@@ -166395,7 +167082,7 @@
}
},
{
- "id": 22908,
+ "id": 23049,
"properties": {
"facing": "west",
"half": "top",
@@ -166404,7 +167091,7 @@
}
},
{
- "id": 22909,
+ "id": 23050,
"properties": {
"facing": "west",
"half": "top",
@@ -166413,7 +167100,7 @@
}
},
{
- "id": 22910,
+ "id": 23051,
"properties": {
"facing": "west",
"half": "top",
@@ -166422,7 +167109,7 @@
}
},
{
- "id": 22911,
+ "id": 23052,
"properties": {
"facing": "west",
"half": "top",
@@ -166431,7 +167118,7 @@
}
},
{
- "id": 22912,
+ "id": 23053,
"properties": {
"facing": "west",
"half": "top",
@@ -166440,7 +167127,7 @@
}
},
{
- "id": 22913,
+ "id": 23054,
"properties": {
"facing": "west",
"half": "top",
@@ -166449,7 +167136,7 @@
}
},
{
- "id": 22914,
+ "id": 23055,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166458,7 +167145,7 @@
}
},
{
- "id": 22915,
+ "id": 23056,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166467,7 +167154,7 @@
}
},
{
- "id": 22916,
+ "id": 23057,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166476,7 +167163,7 @@
}
},
{
- "id": 22917,
+ "id": 23058,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166485,7 +167172,7 @@
}
},
{
- "id": 22918,
+ "id": 23059,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166494,7 +167181,7 @@
}
},
{
- "id": 22919,
+ "id": 23060,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166503,7 +167190,7 @@
}
},
{
- "id": 22920,
+ "id": 23061,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166512,7 +167199,7 @@
}
},
{
- "id": 22921,
+ "id": 23062,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166521,7 +167208,7 @@
}
},
{
- "id": 22922,
+ "id": 23063,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166530,7 +167217,7 @@
}
},
{
- "id": 22923,
+ "id": 23064,
"properties": {
"facing": "west",
"half": "bottom",
@@ -166539,7 +167226,7 @@
}
},
{
- "id": 22924,
+ "id": 23065,
"properties": {
"facing": "east",
"half": "top",
@@ -166548,7 +167235,7 @@
}
},
{
- "id": 22925,
+ "id": 23066,
"properties": {
"facing": "east",
"half": "top",
@@ -166557,7 +167244,7 @@
}
},
{
- "id": 22926,
+ "id": 23067,
"properties": {
"facing": "east",
"half": "top",
@@ -166566,7 +167253,7 @@
}
},
{
- "id": 22927,
+ "id": 23068,
"properties": {
"facing": "east",
"half": "top",
@@ -166575,7 +167262,7 @@
}
},
{
- "id": 22928,
+ "id": 23069,
"properties": {
"facing": "east",
"half": "top",
@@ -166584,7 +167271,7 @@
}
},
{
- "id": 22929,
+ "id": 23070,
"properties": {
"facing": "east",
"half": "top",
@@ -166593,7 +167280,7 @@
}
},
{
- "id": 22930,
+ "id": 23071,
"properties": {
"facing": "east",
"half": "top",
@@ -166602,7 +167289,7 @@
}
},
{
- "id": 22931,
+ "id": 23072,
"properties": {
"facing": "east",
"half": "top",
@@ -166611,7 +167298,7 @@
}
},
{
- "id": 22932,
+ "id": 23073,
"properties": {
"facing": "east",
"half": "top",
@@ -166620,7 +167307,7 @@
}
},
{
- "id": 22933,
+ "id": 23074,
"properties": {
"facing": "east",
"half": "top",
@@ -166629,7 +167316,7 @@
}
},
{
- "id": 22934,
+ "id": 23075,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166638,7 +167325,7 @@
}
},
{
- "id": 22935,
+ "id": 23076,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166647,7 +167334,7 @@
}
},
{
- "id": 22936,
+ "id": 23077,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166656,7 +167343,7 @@
}
},
{
- "id": 22937,
+ "id": 23078,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166665,7 +167352,7 @@
}
},
{
- "id": 22938,
+ "id": 23079,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166674,7 +167361,7 @@
}
},
{
- "id": 22939,
+ "id": 23080,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166683,7 +167370,7 @@
}
},
{
- "id": 22940,
+ "id": 23081,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166692,7 +167379,7 @@
}
},
{
- "id": 22941,
+ "id": 23082,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166701,7 +167388,7 @@
}
},
{
- "id": 22942,
+ "id": 23083,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166710,7 +167397,7 @@
}
},
{
- "id": 22943,
+ "id": 23084,
"properties": {
"facing": "east",
"half": "bottom",
@@ -166753,7 +167440,7 @@
},
"states": [
{
- "id": 22950,
+ "id": 23091,
"properties": {
"east": "none",
"north": "none",
@@ -166764,7 +167451,7 @@
}
},
{
- "id": 22951,
+ "id": 23092,
"properties": {
"east": "none",
"north": "none",
@@ -166775,7 +167462,7 @@
}
},
{
- "id": 22952,
+ "id": 23093,
"properties": {
"east": "none",
"north": "none",
@@ -166787,2339 +167474,2339 @@
},
{
"default": true,
- "id": 22953,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22954,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22955,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22956,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22957,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22958,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22959,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22960,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22961,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22962,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22963,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22964,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22965,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22966,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22967,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22968,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22969,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22970,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22971,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22972,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22973,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22974,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22975,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22976,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22977,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22978,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22979,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22980,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22981,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22982,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22983,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22984,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22985,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22986,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22987,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22988,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22989,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22990,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22991,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22992,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22993,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 22994,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 22995,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 22996,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 22997,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 22998,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 22999,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23000,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23001,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23002,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23003,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23004,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23005,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23006,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23007,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23008,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23009,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23010,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23011,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23012,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23013,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23014,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23015,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23016,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23017,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23018,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23019,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23020,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23021,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23022,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23023,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23024,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23025,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23026,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23027,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23028,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23029,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23030,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23031,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23032,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23033,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23034,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23035,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23036,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23037,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23038,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23039,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23040,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23041,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23042,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23043,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23044,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23045,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23046,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23047,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23048,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23049,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23050,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23051,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23052,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23053,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23054,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23055,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23056,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23057,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23058,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23059,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23060,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23061,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23062,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23063,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23064,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23065,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23066,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23067,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23068,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23069,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23070,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23071,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23072,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23073,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23074,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23075,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23076,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23077,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23078,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23079,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23080,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23081,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23082,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23083,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23084,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23085,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23086,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23087,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 23088,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 23089,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 23090,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 23091,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 23092,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 23093,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 23094,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23095,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23096,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23097,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23098,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23099,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23100,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23101,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23102,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23103,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23104,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23105,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23106,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23107,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23108,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23109,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23110,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23111,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23112,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23113,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23114,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23115,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23116,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23117,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23118,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23119,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23120,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23121,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23122,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23123,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23124,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23125,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23126,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23127,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23128,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23129,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23130,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23131,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23132,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23133,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23134,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23135,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23136,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23137,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23138,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23139,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23140,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23141,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23142,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23143,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23144,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23145,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23146,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23147,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23148,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23149,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23150,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23151,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23152,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23153,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23154,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23155,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23156,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23157,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23158,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23159,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 23160,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 23161,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 23162,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 23163,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 23164,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 23165,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23166,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23167,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23168,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23169,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23170,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23171,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23172,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23173,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23174,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23175,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23176,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23177,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23178,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23179,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23180,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23181,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23182,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23183,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23184,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23185,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23186,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23187,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23188,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23189,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23190,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23191,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23192,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23193,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23194,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23195,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23196,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23197,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23198,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23199,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23200,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23201,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23202,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23203,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23204,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23205,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23206,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23207,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23208,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23209,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23210,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23211,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23212,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23213,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23214,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23215,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23216,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23217,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23218,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23219,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23220,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23221,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23222,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23223,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23224,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23225,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23226,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23227,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23228,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23229,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23230,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23231,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23232,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23233,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23234,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23235,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23236,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23237,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23238,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23239,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23240,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23241,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23242,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23243,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23244,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23245,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23246,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23247,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23248,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23249,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23250,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23251,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23252,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23253,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23254,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23255,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23256,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23257,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23258,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23259,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23260,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23261,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23262,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23263,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23264,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23265,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23266,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23267,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23268,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23269,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23270,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23271,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23272,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23273,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23274,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23275,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23276,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23277,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23278,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23279,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23280,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23281,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23282,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23283,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23284,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23285,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23286,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23287,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23288,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23289,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23290,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23291,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23292,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23293,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23294,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23295,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23296,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23297,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23298,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23299,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23300,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23301,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23302,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23303,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 23304,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 23305,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 23306,
"properties": {
"east": "low",
"north": "tall",
@@ -169130,7 +169817,7 @@
}
},
{
- "id": 23166,
+ "id": 23307,
"properties": {
"east": "tall",
"north": "none",
@@ -169141,7 +169828,7 @@
}
},
{
- "id": 23167,
+ "id": 23308,
"properties": {
"east": "tall",
"north": "none",
@@ -169152,7 +169839,7 @@
}
},
{
- "id": 23168,
+ "id": 23309,
"properties": {
"east": "tall",
"north": "none",
@@ -169163,7 +169850,7 @@
}
},
{
- "id": 23169,
+ "id": 23310,
"properties": {
"east": "tall",
"north": "none",
@@ -169174,7 +169861,7 @@
}
},
{
- "id": 23170,
+ "id": 23311,
"properties": {
"east": "tall",
"north": "none",
@@ -169185,7 +169872,7 @@
}
},
{
- "id": 23171,
+ "id": 23312,
"properties": {
"east": "tall",
"north": "none",
@@ -169196,7 +169883,7 @@
}
},
{
- "id": 23172,
+ "id": 23313,
"properties": {
"east": "tall",
"north": "none",
@@ -169207,7 +169894,7 @@
}
},
{
- "id": 23173,
+ "id": 23314,
"properties": {
"east": "tall",
"north": "none",
@@ -169218,7 +169905,7 @@
}
},
{
- "id": 23174,
+ "id": 23315,
"properties": {
"east": "tall",
"north": "none",
@@ -169229,7 +169916,7 @@
}
},
{
- "id": 23175,
+ "id": 23316,
"properties": {
"east": "tall",
"north": "none",
@@ -169240,7 +169927,7 @@
}
},
{
- "id": 23176,
+ "id": 23317,
"properties": {
"east": "tall",
"north": "none",
@@ -169251,7 +169938,7 @@
}
},
{
- "id": 23177,
+ "id": 23318,
"properties": {
"east": "tall",
"north": "none",
@@ -169262,7 +169949,7 @@
}
},
{
- "id": 23178,
+ "id": 23319,
"properties": {
"east": "tall",
"north": "none",
@@ -169273,7 +169960,7 @@
}
},
{
- "id": 23179,
+ "id": 23320,
"properties": {
"east": "tall",
"north": "none",
@@ -169284,7 +169971,7 @@
}
},
{
- "id": 23180,
+ "id": 23321,
"properties": {
"east": "tall",
"north": "none",
@@ -169295,7 +169982,7 @@
}
},
{
- "id": 23181,
+ "id": 23322,
"properties": {
"east": "tall",
"north": "none",
@@ -169306,7 +169993,7 @@
}
},
{
- "id": 23182,
+ "id": 23323,
"properties": {
"east": "tall",
"north": "none",
@@ -169317,7 +170004,7 @@
}
},
{
- "id": 23183,
+ "id": 23324,
"properties": {
"east": "tall",
"north": "none",
@@ -169328,7 +170015,7 @@
}
},
{
- "id": 23184,
+ "id": 23325,
"properties": {
"east": "tall",
"north": "none",
@@ -169339,7 +170026,7 @@
}
},
{
- "id": 23185,
+ "id": 23326,
"properties": {
"east": "tall",
"north": "none",
@@ -169350,7 +170037,7 @@
}
},
{
- "id": 23186,
+ "id": 23327,
"properties": {
"east": "tall",
"north": "none",
@@ -169361,7 +170048,7 @@
}
},
{
- "id": 23187,
+ "id": 23328,
"properties": {
"east": "tall",
"north": "none",
@@ -169372,7 +170059,7 @@
}
},
{
- "id": 23188,
+ "id": 23329,
"properties": {
"east": "tall",
"north": "none",
@@ -169383,7 +170070,7 @@
}
},
{
- "id": 23189,
+ "id": 23330,
"properties": {
"east": "tall",
"north": "none",
@@ -169394,7 +170081,7 @@
}
},
{
- "id": 23190,
+ "id": 23331,
"properties": {
"east": "tall",
"north": "none",
@@ -169405,7 +170092,7 @@
}
},
{
- "id": 23191,
+ "id": 23332,
"properties": {
"east": "tall",
"north": "none",
@@ -169416,7 +170103,7 @@
}
},
{
- "id": 23192,
+ "id": 23333,
"properties": {
"east": "tall",
"north": "none",
@@ -169427,7 +170114,7 @@
}
},
{
- "id": 23193,
+ "id": 23334,
"properties": {
"east": "tall",
"north": "none",
@@ -169438,7 +170125,7 @@
}
},
{
- "id": 23194,
+ "id": 23335,
"properties": {
"east": "tall",
"north": "none",
@@ -169449,7 +170136,7 @@
}
},
{
- "id": 23195,
+ "id": 23336,
"properties": {
"east": "tall",
"north": "none",
@@ -169460,7 +170147,7 @@
}
},
{
- "id": 23196,
+ "id": 23337,
"properties": {
"east": "tall",
"north": "none",
@@ -169471,7 +170158,7 @@
}
},
{
- "id": 23197,
+ "id": 23338,
"properties": {
"east": "tall",
"north": "none",
@@ -169482,7 +170169,7 @@
}
},
{
- "id": 23198,
+ "id": 23339,
"properties": {
"east": "tall",
"north": "none",
@@ -169493,7 +170180,7 @@
}
},
{
- "id": 23199,
+ "id": 23340,
"properties": {
"east": "tall",
"north": "none",
@@ -169504,7 +170191,7 @@
}
},
{
- "id": 23200,
+ "id": 23341,
"properties": {
"east": "tall",
"north": "none",
@@ -169515,7 +170202,7 @@
}
},
{
- "id": 23201,
+ "id": 23342,
"properties": {
"east": "tall",
"north": "none",
@@ -169526,7 +170213,7 @@
}
},
{
- "id": 23202,
+ "id": 23343,
"properties": {
"east": "tall",
"north": "low",
@@ -169537,7 +170224,7 @@
}
},
{
- "id": 23203,
+ "id": 23344,
"properties": {
"east": "tall",
"north": "low",
@@ -169548,7 +170235,7 @@
}
},
{
- "id": 23204,
+ "id": 23345,
"properties": {
"east": "tall",
"north": "low",
@@ -169559,7 +170246,7 @@
}
},
{
- "id": 23205,
+ "id": 23346,
"properties": {
"east": "tall",
"north": "low",
@@ -169570,7 +170257,7 @@
}
},
{
- "id": 23206,
+ "id": 23347,
"properties": {
"east": "tall",
"north": "low",
@@ -169581,7 +170268,7 @@
}
},
{
- "id": 23207,
+ "id": 23348,
"properties": {
"east": "tall",
"north": "low",
@@ -169592,7 +170279,7 @@
}
},
{
- "id": 23208,
+ "id": 23349,
"properties": {
"east": "tall",
"north": "low",
@@ -169603,7 +170290,7 @@
}
},
{
- "id": 23209,
+ "id": 23350,
"properties": {
"east": "tall",
"north": "low",
@@ -169614,7 +170301,7 @@
}
},
{
- "id": 23210,
+ "id": 23351,
"properties": {
"east": "tall",
"north": "low",
@@ -169625,7 +170312,7 @@
}
},
{
- "id": 23211,
+ "id": 23352,
"properties": {
"east": "tall",
"north": "low",
@@ -169636,7 +170323,7 @@
}
},
{
- "id": 23212,
+ "id": 23353,
"properties": {
"east": "tall",
"north": "low",
@@ -169647,7 +170334,7 @@
}
},
{
- "id": 23213,
+ "id": 23354,
"properties": {
"east": "tall",
"north": "low",
@@ -169658,7 +170345,7 @@
}
},
{
- "id": 23214,
+ "id": 23355,
"properties": {
"east": "tall",
"north": "low",
@@ -169669,7 +170356,7 @@
}
},
{
- "id": 23215,
+ "id": 23356,
"properties": {
"east": "tall",
"north": "low",
@@ -169680,7 +170367,7 @@
}
},
{
- "id": 23216,
+ "id": 23357,
"properties": {
"east": "tall",
"north": "low",
@@ -169691,7 +170378,7 @@
}
},
{
- "id": 23217,
+ "id": 23358,
"properties": {
"east": "tall",
"north": "low",
@@ -169702,7 +170389,7 @@
}
},
{
- "id": 23218,
+ "id": 23359,
"properties": {
"east": "tall",
"north": "low",
@@ -169713,7 +170400,7 @@
}
},
{
- "id": 23219,
+ "id": 23360,
"properties": {
"east": "tall",
"north": "low",
@@ -169724,7 +170411,7 @@
}
},
{
- "id": 23220,
+ "id": 23361,
"properties": {
"east": "tall",
"north": "low",
@@ -169735,7 +170422,7 @@
}
},
{
- "id": 23221,
+ "id": 23362,
"properties": {
"east": "tall",
"north": "low",
@@ -169746,7 +170433,7 @@
}
},
{
- "id": 23222,
+ "id": 23363,
"properties": {
"east": "tall",
"north": "low",
@@ -169757,7 +170444,7 @@
}
},
{
- "id": 23223,
+ "id": 23364,
"properties": {
"east": "tall",
"north": "low",
@@ -169768,7 +170455,7 @@
}
},
{
- "id": 23224,
+ "id": 23365,
"properties": {
"east": "tall",
"north": "low",
@@ -169779,7 +170466,7 @@
}
},
{
- "id": 23225,
+ "id": 23366,
"properties": {
"east": "tall",
"north": "low",
@@ -169790,7 +170477,7 @@
}
},
{
- "id": 23226,
+ "id": 23367,
"properties": {
"east": "tall",
"north": "low",
@@ -169801,7 +170488,7 @@
}
},
{
- "id": 23227,
+ "id": 23368,
"properties": {
"east": "tall",
"north": "low",
@@ -169812,7 +170499,7 @@
}
},
{
- "id": 23228,
+ "id": 23369,
"properties": {
"east": "tall",
"north": "low",
@@ -169823,7 +170510,7 @@
}
},
{
- "id": 23229,
+ "id": 23370,
"properties": {
"east": "tall",
"north": "low",
@@ -169834,7 +170521,7 @@
}
},
{
- "id": 23230,
+ "id": 23371,
"properties": {
"east": "tall",
"north": "low",
@@ -169845,7 +170532,7 @@
}
},
{
- "id": 23231,
+ "id": 23372,
"properties": {
"east": "tall",
"north": "low",
@@ -169856,7 +170543,7 @@
}
},
{
- "id": 23232,
+ "id": 23373,
"properties": {
"east": "tall",
"north": "low",
@@ -169867,7 +170554,7 @@
}
},
{
- "id": 23233,
+ "id": 23374,
"properties": {
"east": "tall",
"north": "low",
@@ -169878,7 +170565,7 @@
}
},
{
- "id": 23234,
+ "id": 23375,
"properties": {
"east": "tall",
"north": "low",
@@ -169889,7 +170576,7 @@
}
},
{
- "id": 23235,
+ "id": 23376,
"properties": {
"east": "tall",
"north": "low",
@@ -169900,7 +170587,7 @@
}
},
{
- "id": 23236,
+ "id": 23377,
"properties": {
"east": "tall",
"north": "low",
@@ -169911,7 +170598,7 @@
}
},
{
- "id": 23237,
+ "id": 23378,
"properties": {
"east": "tall",
"north": "low",
@@ -169922,7 +170609,7 @@
}
},
{
- "id": 23238,
+ "id": 23379,
"properties": {
"east": "tall",
"north": "tall",
@@ -169933,7 +170620,7 @@
}
},
{
- "id": 23239,
+ "id": 23380,
"properties": {
"east": "tall",
"north": "tall",
@@ -169944,7 +170631,7 @@
}
},
{
- "id": 23240,
+ "id": 23381,
"properties": {
"east": "tall",
"north": "tall",
@@ -169955,7 +170642,7 @@
}
},
{
- "id": 23241,
+ "id": 23382,
"properties": {
"east": "tall",
"north": "tall",
@@ -169966,7 +170653,7 @@
}
},
{
- "id": 23242,
+ "id": 23383,
"properties": {
"east": "tall",
"north": "tall",
@@ -169977,7 +170664,7 @@
}
},
{
- "id": 23243,
+ "id": 23384,
"properties": {
"east": "tall",
"north": "tall",
@@ -169988,7 +170675,7 @@
}
},
{
- "id": 23244,
+ "id": 23385,
"properties": {
"east": "tall",
"north": "tall",
@@ -169999,7 +170686,7 @@
}
},
{
- "id": 23245,
+ "id": 23386,
"properties": {
"east": "tall",
"north": "tall",
@@ -170010,7 +170697,7 @@
}
},
{
- "id": 23246,
+ "id": 23387,
"properties": {
"east": "tall",
"north": "tall",
@@ -170021,7 +170708,7 @@
}
},
{
- "id": 23247,
+ "id": 23388,
"properties": {
"east": "tall",
"north": "tall",
@@ -170032,7 +170719,7 @@
}
},
{
- "id": 23248,
+ "id": 23389,
"properties": {
"east": "tall",
"north": "tall",
@@ -170043,7 +170730,7 @@
}
},
{
- "id": 23249,
+ "id": 23390,
"properties": {
"east": "tall",
"north": "tall",
@@ -170054,7 +170741,7 @@
}
},
{
- "id": 23250,
+ "id": 23391,
"properties": {
"east": "tall",
"north": "tall",
@@ -170065,7 +170752,7 @@
}
},
{
- "id": 23251,
+ "id": 23392,
"properties": {
"east": "tall",
"north": "tall",
@@ -170076,7 +170763,7 @@
}
},
{
- "id": 23252,
+ "id": 23393,
"properties": {
"east": "tall",
"north": "tall",
@@ -170087,7 +170774,7 @@
}
},
{
- "id": 23253,
+ "id": 23394,
"properties": {
"east": "tall",
"north": "tall",
@@ -170098,7 +170785,7 @@
}
},
{
- "id": 23254,
+ "id": 23395,
"properties": {
"east": "tall",
"north": "tall",
@@ -170109,7 +170796,7 @@
}
},
{
- "id": 23255,
+ "id": 23396,
"properties": {
"east": "tall",
"north": "tall",
@@ -170120,7 +170807,7 @@
}
},
{
- "id": 23256,
+ "id": 23397,
"properties": {
"east": "tall",
"north": "tall",
@@ -170131,7 +170818,7 @@
}
},
{
- "id": 23257,
+ "id": 23398,
"properties": {
"east": "tall",
"north": "tall",
@@ -170142,7 +170829,7 @@
}
},
{
- "id": 23258,
+ "id": 23399,
"properties": {
"east": "tall",
"north": "tall",
@@ -170153,7 +170840,7 @@
}
},
{
- "id": 23259,
+ "id": 23400,
"properties": {
"east": "tall",
"north": "tall",
@@ -170164,7 +170851,7 @@
}
},
{
- "id": 23260,
+ "id": 23401,
"properties": {
"east": "tall",
"north": "tall",
@@ -170175,7 +170862,7 @@
}
},
{
- "id": 23261,
+ "id": 23402,
"properties": {
"east": "tall",
"north": "tall",
@@ -170186,7 +170873,7 @@
}
},
{
- "id": 23262,
+ "id": 23403,
"properties": {
"east": "tall",
"north": "tall",
@@ -170197,7 +170884,7 @@
}
},
{
- "id": 23263,
+ "id": 23404,
"properties": {
"east": "tall",
"north": "tall",
@@ -170208,7 +170895,7 @@
}
},
{
- "id": 23264,
+ "id": 23405,
"properties": {
"east": "tall",
"north": "tall",
@@ -170219,7 +170906,7 @@
}
},
{
- "id": 23265,
+ "id": 23406,
"properties": {
"east": "tall",
"north": "tall",
@@ -170230,7 +170917,7 @@
}
},
{
- "id": 23266,
+ "id": 23407,
"properties": {
"east": "tall",
"north": "tall",
@@ -170241,7 +170928,7 @@
}
},
{
- "id": 23267,
+ "id": 23408,
"properties": {
"east": "tall",
"north": "tall",
@@ -170252,7 +170939,7 @@
}
},
{
- "id": 23268,
+ "id": 23409,
"properties": {
"east": "tall",
"north": "tall",
@@ -170263,7 +170950,7 @@
}
},
{
- "id": 23269,
+ "id": 23410,
"properties": {
"east": "tall",
"north": "tall",
@@ -170274,7 +170961,7 @@
}
},
{
- "id": 23270,
+ "id": 23411,
"properties": {
"east": "tall",
"north": "tall",
@@ -170285,7 +170972,7 @@
}
},
{
- "id": 23271,
+ "id": 23412,
"properties": {
"east": "tall",
"north": "tall",
@@ -170296,7 +170983,7 @@
}
},
{
- "id": 23272,
+ "id": 23413,
"properties": {
"east": "tall",
"north": "tall",
@@ -170307,7 +170994,7 @@
}
},
{
- "id": 23273,
+ "id": 23414,
"properties": {
"east": "tall",
"north": "tall",
@@ -170341,21 +171028,21 @@
},
"states": [
{
- "id": 13959,
+ "id": 14100,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13960,
+ "id": 14101,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13961,
+ "id": 14102,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -170363,21 +171050,21 @@
},
{
"default": true,
- "id": 13962,
+ "id": 14103,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13963,
+ "id": 14104,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13964,
+ "id": 14105,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -170411,7 +171098,7 @@
},
"states": [
{
- "id": 13061,
+ "id": 13202,
"properties": {
"facing": "north",
"half": "top",
@@ -170420,7 +171107,7 @@
}
},
{
- "id": 13062,
+ "id": 13203,
"properties": {
"facing": "north",
"half": "top",
@@ -170429,7 +171116,7 @@
}
},
{
- "id": 13063,
+ "id": 13204,
"properties": {
"facing": "north",
"half": "top",
@@ -170438,7 +171125,7 @@
}
},
{
- "id": 13064,
+ "id": 13205,
"properties": {
"facing": "north",
"half": "top",
@@ -170447,7 +171134,7 @@
}
},
{
- "id": 13065,
+ "id": 13206,
"properties": {
"facing": "north",
"half": "top",
@@ -170456,7 +171143,7 @@
}
},
{
- "id": 13066,
+ "id": 13207,
"properties": {
"facing": "north",
"half": "top",
@@ -170465,7 +171152,7 @@
}
},
{
- "id": 13067,
+ "id": 13208,
"properties": {
"facing": "north",
"half": "top",
@@ -170474,7 +171161,7 @@
}
},
{
- "id": 13068,
+ "id": 13209,
"properties": {
"facing": "north",
"half": "top",
@@ -170483,7 +171170,7 @@
}
},
{
- "id": 13069,
+ "id": 13210,
"properties": {
"facing": "north",
"half": "top",
@@ -170492,7 +171179,7 @@
}
},
{
- "id": 13070,
+ "id": 13211,
"properties": {
"facing": "north",
"half": "top",
@@ -170501,7 +171188,7 @@
}
},
{
- "id": 13071,
+ "id": 13212,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170511,7 +171198,7 @@
},
{
"default": true,
- "id": 13072,
+ "id": 13213,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170520,7 +171207,7 @@
}
},
{
- "id": 13073,
+ "id": 13214,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170529,7 +171216,7 @@
}
},
{
- "id": 13074,
+ "id": 13215,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170538,7 +171225,7 @@
}
},
{
- "id": 13075,
+ "id": 13216,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170547,7 +171234,7 @@
}
},
{
- "id": 13076,
+ "id": 13217,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170556,7 +171243,7 @@
}
},
{
- "id": 13077,
+ "id": 13218,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170565,7 +171252,7 @@
}
},
{
- "id": 13078,
+ "id": 13219,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170574,7 +171261,7 @@
}
},
{
- "id": 13079,
+ "id": 13220,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170583,7 +171270,7 @@
}
},
{
- "id": 13080,
+ "id": 13221,
"properties": {
"facing": "north",
"half": "bottom",
@@ -170592,7 +171279,7 @@
}
},
{
- "id": 13081,
+ "id": 13222,
"properties": {
"facing": "south",
"half": "top",
@@ -170601,7 +171288,7 @@
}
},
{
- "id": 13082,
+ "id": 13223,
"properties": {
"facing": "south",
"half": "top",
@@ -170610,7 +171297,7 @@
}
},
{
- "id": 13083,
+ "id": 13224,
"properties": {
"facing": "south",
"half": "top",
@@ -170619,7 +171306,7 @@
}
},
{
- "id": 13084,
+ "id": 13225,
"properties": {
"facing": "south",
"half": "top",
@@ -170628,7 +171315,7 @@
}
},
{
- "id": 13085,
+ "id": 13226,
"properties": {
"facing": "south",
"half": "top",
@@ -170637,7 +171324,7 @@
}
},
{
- "id": 13086,
+ "id": 13227,
"properties": {
"facing": "south",
"half": "top",
@@ -170646,7 +171333,7 @@
}
},
{
- "id": 13087,
+ "id": 13228,
"properties": {
"facing": "south",
"half": "top",
@@ -170655,7 +171342,7 @@
}
},
{
- "id": 13088,
+ "id": 13229,
"properties": {
"facing": "south",
"half": "top",
@@ -170664,7 +171351,7 @@
}
},
{
- "id": 13089,
+ "id": 13230,
"properties": {
"facing": "south",
"half": "top",
@@ -170673,7 +171360,7 @@
}
},
{
- "id": 13090,
+ "id": 13231,
"properties": {
"facing": "south",
"half": "top",
@@ -170682,7 +171369,7 @@
}
},
{
- "id": 13091,
+ "id": 13232,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170691,7 +171378,7 @@
}
},
{
- "id": 13092,
+ "id": 13233,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170700,7 +171387,7 @@
}
},
{
- "id": 13093,
+ "id": 13234,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170709,7 +171396,7 @@
}
},
{
- "id": 13094,
+ "id": 13235,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170718,7 +171405,7 @@
}
},
{
- "id": 13095,
+ "id": 13236,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170727,7 +171414,7 @@
}
},
{
- "id": 13096,
+ "id": 13237,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170736,7 +171423,7 @@
}
},
{
- "id": 13097,
+ "id": 13238,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170745,7 +171432,7 @@
}
},
{
- "id": 13098,
+ "id": 13239,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170754,7 +171441,7 @@
}
},
{
- "id": 13099,
+ "id": 13240,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170763,7 +171450,7 @@
}
},
{
- "id": 13100,
+ "id": 13241,
"properties": {
"facing": "south",
"half": "bottom",
@@ -170772,7 +171459,7 @@
}
},
{
- "id": 13101,
+ "id": 13242,
"properties": {
"facing": "west",
"half": "top",
@@ -170781,7 +171468,7 @@
}
},
{
- "id": 13102,
+ "id": 13243,
"properties": {
"facing": "west",
"half": "top",
@@ -170790,7 +171477,7 @@
}
},
{
- "id": 13103,
+ "id": 13244,
"properties": {
"facing": "west",
"half": "top",
@@ -170799,7 +171486,7 @@
}
},
{
- "id": 13104,
+ "id": 13245,
"properties": {
"facing": "west",
"half": "top",
@@ -170808,7 +171495,7 @@
}
},
{
- "id": 13105,
+ "id": 13246,
"properties": {
"facing": "west",
"half": "top",
@@ -170817,7 +171504,7 @@
}
},
{
- "id": 13106,
+ "id": 13247,
"properties": {
"facing": "west",
"half": "top",
@@ -170826,7 +171513,7 @@
}
},
{
- "id": 13107,
+ "id": 13248,
"properties": {
"facing": "west",
"half": "top",
@@ -170835,7 +171522,7 @@
}
},
{
- "id": 13108,
+ "id": 13249,
"properties": {
"facing": "west",
"half": "top",
@@ -170844,7 +171531,7 @@
}
},
{
- "id": 13109,
+ "id": 13250,
"properties": {
"facing": "west",
"half": "top",
@@ -170853,7 +171540,7 @@
}
},
{
- "id": 13110,
+ "id": 13251,
"properties": {
"facing": "west",
"half": "top",
@@ -170862,7 +171549,7 @@
}
},
{
- "id": 13111,
+ "id": 13252,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170871,7 +171558,7 @@
}
},
{
- "id": 13112,
+ "id": 13253,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170880,7 +171567,7 @@
}
},
{
- "id": 13113,
+ "id": 13254,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170889,7 +171576,7 @@
}
},
{
- "id": 13114,
+ "id": 13255,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170898,7 +171585,7 @@
}
},
{
- "id": 13115,
+ "id": 13256,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170907,7 +171594,7 @@
}
},
{
- "id": 13116,
+ "id": 13257,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170916,7 +171603,7 @@
}
},
{
- "id": 13117,
+ "id": 13258,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170925,7 +171612,7 @@
}
},
{
- "id": 13118,
+ "id": 13259,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170934,7 +171621,7 @@
}
},
{
- "id": 13119,
+ "id": 13260,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170943,7 +171630,7 @@
}
},
{
- "id": 13120,
+ "id": 13261,
"properties": {
"facing": "west",
"half": "bottom",
@@ -170952,7 +171639,7 @@
}
},
{
- "id": 13121,
+ "id": 13262,
"properties": {
"facing": "east",
"half": "top",
@@ -170961,7 +171648,7 @@
}
},
{
- "id": 13122,
+ "id": 13263,
"properties": {
"facing": "east",
"half": "top",
@@ -170970,7 +171657,7 @@
}
},
{
- "id": 13123,
+ "id": 13264,
"properties": {
"facing": "east",
"half": "top",
@@ -170979,7 +171666,7 @@
}
},
{
- "id": 13124,
+ "id": 13265,
"properties": {
"facing": "east",
"half": "top",
@@ -170988,7 +171675,7 @@
}
},
{
- "id": 13125,
+ "id": 13266,
"properties": {
"facing": "east",
"half": "top",
@@ -170997,7 +171684,7 @@
}
},
{
- "id": 13126,
+ "id": 13267,
"properties": {
"facing": "east",
"half": "top",
@@ -171006,7 +171693,7 @@
}
},
{
- "id": 13127,
+ "id": 13268,
"properties": {
"facing": "east",
"half": "top",
@@ -171015,7 +171702,7 @@
}
},
{
- "id": 13128,
+ "id": 13269,
"properties": {
"facing": "east",
"half": "top",
@@ -171024,7 +171711,7 @@
}
},
{
- "id": 13129,
+ "id": 13270,
"properties": {
"facing": "east",
"half": "top",
@@ -171033,7 +171720,7 @@
}
},
{
- "id": 13130,
+ "id": 13271,
"properties": {
"facing": "east",
"half": "top",
@@ -171042,7 +171729,7 @@
}
},
{
- "id": 13131,
+ "id": 13272,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171051,7 +171738,7 @@
}
},
{
- "id": 13132,
+ "id": 13273,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171060,7 +171747,7 @@
}
},
{
- "id": 13133,
+ "id": 13274,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171069,7 +171756,7 @@
}
},
{
- "id": 13134,
+ "id": 13275,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171078,7 +171765,7 @@
}
},
{
- "id": 13135,
+ "id": 13276,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171087,7 +171774,7 @@
}
},
{
- "id": 13136,
+ "id": 13277,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171096,7 +171783,7 @@
}
},
{
- "id": 13137,
+ "id": 13278,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171105,7 +171792,7 @@
}
},
{
- "id": 13138,
+ "id": 13279,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171114,7 +171801,7 @@
}
},
{
- "id": 13139,
+ "id": 13280,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171123,7 +171810,7 @@
}
},
{
- "id": 13140,
+ "id": 13281,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171155,21 +171842,21 @@
},
"states": [
{
- "id": 13941,
+ "id": 14082,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13942,
+ "id": 14083,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13943,
+ "id": 14084,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -171177,21 +171864,21 @@
},
{
"default": true,
- "id": 13944,
+ "id": 14085,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13945,
+ "id": 14086,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13946,
+ "id": 14087,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -171225,7 +171912,7 @@
},
"states": [
{
- "id": 12821,
+ "id": 12962,
"properties": {
"facing": "north",
"half": "top",
@@ -171234,7 +171921,7 @@
}
},
{
- "id": 12822,
+ "id": 12963,
"properties": {
"facing": "north",
"half": "top",
@@ -171243,7 +171930,7 @@
}
},
{
- "id": 12823,
+ "id": 12964,
"properties": {
"facing": "north",
"half": "top",
@@ -171252,7 +171939,7 @@
}
},
{
- "id": 12824,
+ "id": 12965,
"properties": {
"facing": "north",
"half": "top",
@@ -171261,7 +171948,7 @@
}
},
{
- "id": 12825,
+ "id": 12966,
"properties": {
"facing": "north",
"half": "top",
@@ -171270,7 +171957,7 @@
}
},
{
- "id": 12826,
+ "id": 12967,
"properties": {
"facing": "north",
"half": "top",
@@ -171279,7 +171966,7 @@
}
},
{
- "id": 12827,
+ "id": 12968,
"properties": {
"facing": "north",
"half": "top",
@@ -171288,7 +171975,7 @@
}
},
{
- "id": 12828,
+ "id": 12969,
"properties": {
"facing": "north",
"half": "top",
@@ -171297,7 +171984,7 @@
}
},
{
- "id": 12829,
+ "id": 12970,
"properties": {
"facing": "north",
"half": "top",
@@ -171306,7 +171993,7 @@
}
},
{
- "id": 12830,
+ "id": 12971,
"properties": {
"facing": "north",
"half": "top",
@@ -171315,7 +172002,7 @@
}
},
{
- "id": 12831,
+ "id": 12972,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171325,7 +172012,7 @@
},
{
"default": true,
- "id": 12832,
+ "id": 12973,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171334,7 +172021,7 @@
}
},
{
- "id": 12833,
+ "id": 12974,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171343,7 +172030,7 @@
}
},
{
- "id": 12834,
+ "id": 12975,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171352,7 +172039,7 @@
}
},
{
- "id": 12835,
+ "id": 12976,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171361,7 +172048,7 @@
}
},
{
- "id": 12836,
+ "id": 12977,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171370,7 +172057,7 @@
}
},
{
- "id": 12837,
+ "id": 12978,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171379,7 +172066,7 @@
}
},
{
- "id": 12838,
+ "id": 12979,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171388,7 +172075,7 @@
}
},
{
- "id": 12839,
+ "id": 12980,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171397,7 +172084,7 @@
}
},
{
- "id": 12840,
+ "id": 12981,
"properties": {
"facing": "north",
"half": "bottom",
@@ -171406,7 +172093,7 @@
}
},
{
- "id": 12841,
+ "id": 12982,
"properties": {
"facing": "south",
"half": "top",
@@ -171415,7 +172102,7 @@
}
},
{
- "id": 12842,
+ "id": 12983,
"properties": {
"facing": "south",
"half": "top",
@@ -171424,7 +172111,7 @@
}
},
{
- "id": 12843,
+ "id": 12984,
"properties": {
"facing": "south",
"half": "top",
@@ -171433,7 +172120,7 @@
}
},
{
- "id": 12844,
+ "id": 12985,
"properties": {
"facing": "south",
"half": "top",
@@ -171442,7 +172129,7 @@
}
},
{
- "id": 12845,
+ "id": 12986,
"properties": {
"facing": "south",
"half": "top",
@@ -171451,7 +172138,7 @@
}
},
{
- "id": 12846,
+ "id": 12987,
"properties": {
"facing": "south",
"half": "top",
@@ -171460,7 +172147,7 @@
}
},
{
- "id": 12847,
+ "id": 12988,
"properties": {
"facing": "south",
"half": "top",
@@ -171469,7 +172156,7 @@
}
},
{
- "id": 12848,
+ "id": 12989,
"properties": {
"facing": "south",
"half": "top",
@@ -171478,7 +172165,7 @@
}
},
{
- "id": 12849,
+ "id": 12990,
"properties": {
"facing": "south",
"half": "top",
@@ -171487,7 +172174,7 @@
}
},
{
- "id": 12850,
+ "id": 12991,
"properties": {
"facing": "south",
"half": "top",
@@ -171496,7 +172183,7 @@
}
},
{
- "id": 12851,
+ "id": 12992,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171505,7 +172192,7 @@
}
},
{
- "id": 12852,
+ "id": 12993,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171514,7 +172201,7 @@
}
},
{
- "id": 12853,
+ "id": 12994,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171523,7 +172210,7 @@
}
},
{
- "id": 12854,
+ "id": 12995,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171532,7 +172219,7 @@
}
},
{
- "id": 12855,
+ "id": 12996,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171541,7 +172228,7 @@
}
},
{
- "id": 12856,
+ "id": 12997,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171550,7 +172237,7 @@
}
},
{
- "id": 12857,
+ "id": 12998,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171559,7 +172246,7 @@
}
},
{
- "id": 12858,
+ "id": 12999,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171568,7 +172255,7 @@
}
},
{
- "id": 12859,
+ "id": 13000,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171577,7 +172264,7 @@
}
},
{
- "id": 12860,
+ "id": 13001,
"properties": {
"facing": "south",
"half": "bottom",
@@ -171586,7 +172273,7 @@
}
},
{
- "id": 12861,
+ "id": 13002,
"properties": {
"facing": "west",
"half": "top",
@@ -171595,7 +172282,7 @@
}
},
{
- "id": 12862,
+ "id": 13003,
"properties": {
"facing": "west",
"half": "top",
@@ -171604,7 +172291,7 @@
}
},
{
- "id": 12863,
+ "id": 13004,
"properties": {
"facing": "west",
"half": "top",
@@ -171613,7 +172300,7 @@
}
},
{
- "id": 12864,
+ "id": 13005,
"properties": {
"facing": "west",
"half": "top",
@@ -171622,7 +172309,7 @@
}
},
{
- "id": 12865,
+ "id": 13006,
"properties": {
"facing": "west",
"half": "top",
@@ -171631,7 +172318,7 @@
}
},
{
- "id": 12866,
+ "id": 13007,
"properties": {
"facing": "west",
"half": "top",
@@ -171640,7 +172327,7 @@
}
},
{
- "id": 12867,
+ "id": 13008,
"properties": {
"facing": "west",
"half": "top",
@@ -171649,7 +172336,7 @@
}
},
{
- "id": 12868,
+ "id": 13009,
"properties": {
"facing": "west",
"half": "top",
@@ -171658,7 +172345,7 @@
}
},
{
- "id": 12869,
+ "id": 13010,
"properties": {
"facing": "west",
"half": "top",
@@ -171667,7 +172354,7 @@
}
},
{
- "id": 12870,
+ "id": 13011,
"properties": {
"facing": "west",
"half": "top",
@@ -171676,7 +172363,7 @@
}
},
{
- "id": 12871,
+ "id": 13012,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171685,7 +172372,7 @@
}
},
{
- "id": 12872,
+ "id": 13013,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171694,7 +172381,7 @@
}
},
{
- "id": 12873,
+ "id": 13014,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171703,7 +172390,7 @@
}
},
{
- "id": 12874,
+ "id": 13015,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171712,7 +172399,7 @@
}
},
{
- "id": 12875,
+ "id": 13016,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171721,7 +172408,7 @@
}
},
{
- "id": 12876,
+ "id": 13017,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171730,7 +172417,7 @@
}
},
{
- "id": 12877,
+ "id": 13018,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171739,7 +172426,7 @@
}
},
{
- "id": 12878,
+ "id": 13019,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171748,7 +172435,7 @@
}
},
{
- "id": 12879,
+ "id": 13020,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171757,7 +172444,7 @@
}
},
{
- "id": 12880,
+ "id": 13021,
"properties": {
"facing": "west",
"half": "bottom",
@@ -171766,7 +172453,7 @@
}
},
{
- "id": 12881,
+ "id": 13022,
"properties": {
"facing": "east",
"half": "top",
@@ -171775,7 +172462,7 @@
}
},
{
- "id": 12882,
+ "id": 13023,
"properties": {
"facing": "east",
"half": "top",
@@ -171784,7 +172471,7 @@
}
},
{
- "id": 12883,
+ "id": 13024,
"properties": {
"facing": "east",
"half": "top",
@@ -171793,7 +172480,7 @@
}
},
{
- "id": 12884,
+ "id": 13025,
"properties": {
"facing": "east",
"half": "top",
@@ -171802,7 +172489,7 @@
}
},
{
- "id": 12885,
+ "id": 13026,
"properties": {
"facing": "east",
"half": "top",
@@ -171811,7 +172498,7 @@
}
},
{
- "id": 12886,
+ "id": 13027,
"properties": {
"facing": "east",
"half": "top",
@@ -171820,7 +172507,7 @@
}
},
{
- "id": 12887,
+ "id": 13028,
"properties": {
"facing": "east",
"half": "top",
@@ -171829,7 +172516,7 @@
}
},
{
- "id": 12888,
+ "id": 13029,
"properties": {
"facing": "east",
"half": "top",
@@ -171838,7 +172525,7 @@
}
},
{
- "id": 12889,
+ "id": 13030,
"properties": {
"facing": "east",
"half": "top",
@@ -171847,7 +172534,7 @@
}
},
{
- "id": 12890,
+ "id": 13031,
"properties": {
"facing": "east",
"half": "top",
@@ -171856,7 +172543,7 @@
}
},
{
- "id": 12891,
+ "id": 13032,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171865,7 +172552,7 @@
}
},
{
- "id": 12892,
+ "id": 13033,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171874,7 +172561,7 @@
}
},
{
- "id": 12893,
+ "id": 13034,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171883,7 +172570,7 @@
}
},
{
- "id": 12894,
+ "id": 13035,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171892,7 +172579,7 @@
}
},
{
- "id": 12895,
+ "id": 13036,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171901,7 +172588,7 @@
}
},
{
- "id": 12896,
+ "id": 13037,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171910,7 +172597,7 @@
}
},
{
- "id": 12897,
+ "id": 13038,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171919,7 +172606,7 @@
}
},
{
- "id": 12898,
+ "id": 13039,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171928,7 +172615,7 @@
}
},
{
- "id": 12899,
+ "id": 13040,
"properties": {
"facing": "east",
"half": "bottom",
@@ -171937,7 +172624,7 @@
}
},
{
- "id": 12900,
+ "id": 13041,
"properties": {
"facing": "east",
"half": "bottom",
@@ -172040,7 +172727,7 @@
"states": [
{
"default": true,
- "id": 24106
+ "id": 24247
}
]
},
@@ -172056,7 +172743,7 @@
"states": [
{
"default": true,
- "id": 12816
+ "id": 12957
}
]
},
@@ -172112,7 +172799,7 @@
"states": [
{
"default": true,
- "id": 19314
+ "id": 19455
}
]
},
@@ -172120,7 +172807,7 @@
"states": [
{
"default": true,
- "id": 19316
+ "id": 19457
}
]
},
@@ -172160,7 +172847,7 @@
"states": [
{
"default": true,
- "id": 24107
+ "id": 24248
}
]
},
@@ -172264,7 +172951,7 @@
"states": [
{
"default": true,
- "id": 19315
+ "id": 19456
}
]
},
@@ -172272,7 +172959,7 @@
"states": [
{
"default": true,
- "id": 19317
+ "id": 19458
}
]
},
@@ -172296,7 +172983,7 @@
"states": [
{
"default": true,
- "id": 20943
+ "id": 21084
}
]
},
@@ -172549,7 +173236,7 @@
"states": [
{
"default": true,
- "id": 10322
+ "id": 10463
}
]
},
@@ -172567,21 +173254,21 @@
},
"states": [
{
- "id": 10571,
+ "id": 10712,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10572,
+ "id": 10713,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10573,
+ "id": 10714,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -172589,21 +173276,21 @@
},
{
"default": true,
- "id": 10574,
+ "id": 10715,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10575,
+ "id": 10716,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10576,
+ "id": 10717,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -172637,7 +173324,7 @@
},
"states": [
{
- "id": 10405,
+ "id": 10546,
"properties": {
"facing": "north",
"half": "top",
@@ -172646,7 +173333,7 @@
}
},
{
- "id": 10406,
+ "id": 10547,
"properties": {
"facing": "north",
"half": "top",
@@ -172655,7 +173342,7 @@
}
},
{
- "id": 10407,
+ "id": 10548,
"properties": {
"facing": "north",
"half": "top",
@@ -172664,7 +173351,7 @@
}
},
{
- "id": 10408,
+ "id": 10549,
"properties": {
"facing": "north",
"half": "top",
@@ -172673,7 +173360,7 @@
}
},
{
- "id": 10409,
+ "id": 10550,
"properties": {
"facing": "north",
"half": "top",
@@ -172682,7 +173369,7 @@
}
},
{
- "id": 10410,
+ "id": 10551,
"properties": {
"facing": "north",
"half": "top",
@@ -172691,7 +173378,7 @@
}
},
{
- "id": 10411,
+ "id": 10552,
"properties": {
"facing": "north",
"half": "top",
@@ -172700,7 +173387,7 @@
}
},
{
- "id": 10412,
+ "id": 10553,
"properties": {
"facing": "north",
"half": "top",
@@ -172709,7 +173396,7 @@
}
},
{
- "id": 10413,
+ "id": 10554,
"properties": {
"facing": "north",
"half": "top",
@@ -172718,7 +173405,7 @@
}
},
{
- "id": 10414,
+ "id": 10555,
"properties": {
"facing": "north",
"half": "top",
@@ -172727,7 +173414,7 @@
}
},
{
- "id": 10415,
+ "id": 10556,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172737,7 +173424,7 @@
},
{
"default": true,
- "id": 10416,
+ "id": 10557,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172746,7 +173433,7 @@
}
},
{
- "id": 10417,
+ "id": 10558,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172755,7 +173442,7 @@
}
},
{
- "id": 10418,
+ "id": 10559,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172764,7 +173451,7 @@
}
},
{
- "id": 10419,
+ "id": 10560,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172773,7 +173460,7 @@
}
},
{
- "id": 10420,
+ "id": 10561,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172782,7 +173469,7 @@
}
},
{
- "id": 10421,
+ "id": 10562,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172791,7 +173478,7 @@
}
},
{
- "id": 10422,
+ "id": 10563,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172800,7 +173487,7 @@
}
},
{
- "id": 10423,
+ "id": 10564,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172809,7 +173496,7 @@
}
},
{
- "id": 10424,
+ "id": 10565,
"properties": {
"facing": "north",
"half": "bottom",
@@ -172818,7 +173505,7 @@
}
},
{
- "id": 10425,
+ "id": 10566,
"properties": {
"facing": "south",
"half": "top",
@@ -172827,7 +173514,7 @@
}
},
{
- "id": 10426,
+ "id": 10567,
"properties": {
"facing": "south",
"half": "top",
@@ -172836,7 +173523,7 @@
}
},
{
- "id": 10427,
+ "id": 10568,
"properties": {
"facing": "south",
"half": "top",
@@ -172845,7 +173532,7 @@
}
},
{
- "id": 10428,
+ "id": 10569,
"properties": {
"facing": "south",
"half": "top",
@@ -172854,7 +173541,7 @@
}
},
{
- "id": 10429,
+ "id": 10570,
"properties": {
"facing": "south",
"half": "top",
@@ -172863,7 +173550,7 @@
}
},
{
- "id": 10430,
+ "id": 10571,
"properties": {
"facing": "south",
"half": "top",
@@ -172872,7 +173559,7 @@
}
},
{
- "id": 10431,
+ "id": 10572,
"properties": {
"facing": "south",
"half": "top",
@@ -172881,7 +173568,7 @@
}
},
{
- "id": 10432,
+ "id": 10573,
"properties": {
"facing": "south",
"half": "top",
@@ -172890,7 +173577,7 @@
}
},
{
- "id": 10433,
+ "id": 10574,
"properties": {
"facing": "south",
"half": "top",
@@ -172899,7 +173586,7 @@
}
},
{
- "id": 10434,
+ "id": 10575,
"properties": {
"facing": "south",
"half": "top",
@@ -172908,7 +173595,7 @@
}
},
{
- "id": 10435,
+ "id": 10576,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172917,7 +173604,7 @@
}
},
{
- "id": 10436,
+ "id": 10577,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172926,7 +173613,7 @@
}
},
{
- "id": 10437,
+ "id": 10578,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172935,7 +173622,7 @@
}
},
{
- "id": 10438,
+ "id": 10579,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172944,7 +173631,7 @@
}
},
{
- "id": 10439,
+ "id": 10580,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172953,7 +173640,7 @@
}
},
{
- "id": 10440,
+ "id": 10581,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172962,7 +173649,7 @@
}
},
{
- "id": 10441,
+ "id": 10582,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172971,7 +173658,7 @@
}
},
{
- "id": 10442,
+ "id": 10583,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172980,7 +173667,7 @@
}
},
{
- "id": 10443,
+ "id": 10584,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172989,7 +173676,7 @@
}
},
{
- "id": 10444,
+ "id": 10585,
"properties": {
"facing": "south",
"half": "bottom",
@@ -172998,7 +173685,7 @@
}
},
{
- "id": 10445,
+ "id": 10586,
"properties": {
"facing": "west",
"half": "top",
@@ -173007,7 +173694,7 @@
}
},
{
- "id": 10446,
+ "id": 10587,
"properties": {
"facing": "west",
"half": "top",
@@ -173016,7 +173703,7 @@
}
},
{
- "id": 10447,
+ "id": 10588,
"properties": {
"facing": "west",
"half": "top",
@@ -173025,7 +173712,7 @@
}
},
{
- "id": 10448,
+ "id": 10589,
"properties": {
"facing": "west",
"half": "top",
@@ -173034,7 +173721,7 @@
}
},
{
- "id": 10449,
+ "id": 10590,
"properties": {
"facing": "west",
"half": "top",
@@ -173043,7 +173730,7 @@
}
},
{
- "id": 10450,
+ "id": 10591,
"properties": {
"facing": "west",
"half": "top",
@@ -173052,7 +173739,7 @@
}
},
{
- "id": 10451,
+ "id": 10592,
"properties": {
"facing": "west",
"half": "top",
@@ -173061,7 +173748,7 @@
}
},
{
- "id": 10452,
+ "id": 10593,
"properties": {
"facing": "west",
"half": "top",
@@ -173070,7 +173757,7 @@
}
},
{
- "id": 10453,
+ "id": 10594,
"properties": {
"facing": "west",
"half": "top",
@@ -173079,7 +173766,7 @@
}
},
{
- "id": 10454,
+ "id": 10595,
"properties": {
"facing": "west",
"half": "top",
@@ -173088,7 +173775,7 @@
}
},
{
- "id": 10455,
+ "id": 10596,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173097,7 +173784,7 @@
}
},
{
- "id": 10456,
+ "id": 10597,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173106,7 +173793,7 @@
}
},
{
- "id": 10457,
+ "id": 10598,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173115,7 +173802,7 @@
}
},
{
- "id": 10458,
+ "id": 10599,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173124,7 +173811,7 @@
}
},
{
- "id": 10459,
+ "id": 10600,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173133,7 +173820,7 @@
}
},
{
- "id": 10460,
+ "id": 10601,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173142,7 +173829,7 @@
}
},
{
- "id": 10461,
+ "id": 10602,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173151,7 +173838,7 @@
}
},
{
- "id": 10462,
+ "id": 10603,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173160,7 +173847,7 @@
}
},
{
- "id": 10463,
+ "id": 10604,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173169,7 +173856,7 @@
}
},
{
- "id": 10464,
+ "id": 10605,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173178,7 +173865,7 @@
}
},
{
- "id": 10465,
+ "id": 10606,
"properties": {
"facing": "east",
"half": "top",
@@ -173187,7 +173874,7 @@
}
},
{
- "id": 10466,
+ "id": 10607,
"properties": {
"facing": "east",
"half": "top",
@@ -173196,7 +173883,7 @@
}
},
{
- "id": 10467,
+ "id": 10608,
"properties": {
"facing": "east",
"half": "top",
@@ -173205,7 +173892,7 @@
}
},
{
- "id": 10468,
+ "id": 10609,
"properties": {
"facing": "east",
"half": "top",
@@ -173214,7 +173901,7 @@
}
},
{
- "id": 10469,
+ "id": 10610,
"properties": {
"facing": "east",
"half": "top",
@@ -173223,7 +173910,7 @@
}
},
{
- "id": 10470,
+ "id": 10611,
"properties": {
"facing": "east",
"half": "top",
@@ -173232,7 +173919,7 @@
}
},
{
- "id": 10471,
+ "id": 10612,
"properties": {
"facing": "east",
"half": "top",
@@ -173241,7 +173928,7 @@
}
},
{
- "id": 10472,
+ "id": 10613,
"properties": {
"facing": "east",
"half": "top",
@@ -173250,7 +173937,7 @@
}
},
{
- "id": 10473,
+ "id": 10614,
"properties": {
"facing": "east",
"half": "top",
@@ -173259,7 +173946,7 @@
}
},
{
- "id": 10474,
+ "id": 10615,
"properties": {
"facing": "east",
"half": "top",
@@ -173268,7 +173955,7 @@
}
},
{
- "id": 10475,
+ "id": 10616,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173277,7 +173964,7 @@
}
},
{
- "id": 10476,
+ "id": 10617,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173286,7 +173973,7 @@
}
},
{
- "id": 10477,
+ "id": 10618,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173295,7 +173982,7 @@
}
},
{
- "id": 10478,
+ "id": 10619,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173304,7 +173991,7 @@
}
},
{
- "id": 10479,
+ "id": 10620,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173313,7 +174000,7 @@
}
},
{
- "id": 10480,
+ "id": 10621,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173322,7 +174009,7 @@
}
},
{
- "id": 10481,
+ "id": 10622,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173331,7 +174018,7 @@
}
},
{
- "id": 10482,
+ "id": 10623,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173340,7 +174027,7 @@
}
},
{
- "id": 10483,
+ "id": 10624,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173349,7 +174036,7 @@
}
},
{
- "id": 10484,
+ "id": 10625,
"properties": {
"facing": "east",
"half": "bottom",
@@ -173363,7 +174050,7 @@
"states": [
{
"default": true,
- "id": 10323
+ "id": 10464
}
]
},
@@ -173381,21 +174068,21 @@
},
"states": [
{
- "id": 10565,
+ "id": 10706,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 10566,
+ "id": 10707,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 10567,
+ "id": 10708,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -173403,21 +174090,21 @@
},
{
"default": true,
- "id": 10568,
+ "id": 10709,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 10569,
+ "id": 10710,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 10570,
+ "id": 10711,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -173451,7 +174138,7 @@
},
"states": [
{
- "id": 10325,
+ "id": 10466,
"properties": {
"facing": "north",
"half": "top",
@@ -173460,7 +174147,7 @@
}
},
{
- "id": 10326,
+ "id": 10467,
"properties": {
"facing": "north",
"half": "top",
@@ -173469,7 +174156,7 @@
}
},
{
- "id": 10327,
+ "id": 10468,
"properties": {
"facing": "north",
"half": "top",
@@ -173478,7 +174165,7 @@
}
},
{
- "id": 10328,
+ "id": 10469,
"properties": {
"facing": "north",
"half": "top",
@@ -173487,7 +174174,7 @@
}
},
{
- "id": 10329,
+ "id": 10470,
"properties": {
"facing": "north",
"half": "top",
@@ -173496,7 +174183,7 @@
}
},
{
- "id": 10330,
+ "id": 10471,
"properties": {
"facing": "north",
"half": "top",
@@ -173505,7 +174192,7 @@
}
},
{
- "id": 10331,
+ "id": 10472,
"properties": {
"facing": "north",
"half": "top",
@@ -173514,7 +174201,7 @@
}
},
{
- "id": 10332,
+ "id": 10473,
"properties": {
"facing": "north",
"half": "top",
@@ -173523,7 +174210,7 @@
}
},
{
- "id": 10333,
+ "id": 10474,
"properties": {
"facing": "north",
"half": "top",
@@ -173532,7 +174219,7 @@
}
},
{
- "id": 10334,
+ "id": 10475,
"properties": {
"facing": "north",
"half": "top",
@@ -173541,7 +174228,7 @@
}
},
{
- "id": 10335,
+ "id": 10476,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173551,7 +174238,7 @@
},
{
"default": true,
- "id": 10336,
+ "id": 10477,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173560,7 +174247,7 @@
}
},
{
- "id": 10337,
+ "id": 10478,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173569,7 +174256,7 @@
}
},
{
- "id": 10338,
+ "id": 10479,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173578,7 +174265,7 @@
}
},
{
- "id": 10339,
+ "id": 10480,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173587,7 +174274,7 @@
}
},
{
- "id": 10340,
+ "id": 10481,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173596,7 +174283,7 @@
}
},
{
- "id": 10341,
+ "id": 10482,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173605,7 +174292,7 @@
}
},
{
- "id": 10342,
+ "id": 10483,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173614,7 +174301,7 @@
}
},
{
- "id": 10343,
+ "id": 10484,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173623,7 +174310,7 @@
}
},
{
- "id": 10344,
+ "id": 10485,
"properties": {
"facing": "north",
"half": "bottom",
@@ -173632,7 +174319,7 @@
}
},
{
- "id": 10345,
+ "id": 10486,
"properties": {
"facing": "south",
"half": "top",
@@ -173641,7 +174328,7 @@
}
},
{
- "id": 10346,
+ "id": 10487,
"properties": {
"facing": "south",
"half": "top",
@@ -173650,7 +174337,7 @@
}
},
{
- "id": 10347,
+ "id": 10488,
"properties": {
"facing": "south",
"half": "top",
@@ -173659,7 +174346,7 @@
}
},
{
- "id": 10348,
+ "id": 10489,
"properties": {
"facing": "south",
"half": "top",
@@ -173668,7 +174355,7 @@
}
},
{
- "id": 10349,
+ "id": 10490,
"properties": {
"facing": "south",
"half": "top",
@@ -173677,7 +174364,7 @@
}
},
{
- "id": 10350,
+ "id": 10491,
"properties": {
"facing": "south",
"half": "top",
@@ -173686,7 +174373,7 @@
}
},
{
- "id": 10351,
+ "id": 10492,
"properties": {
"facing": "south",
"half": "top",
@@ -173695,7 +174382,7 @@
}
},
{
- "id": 10352,
+ "id": 10493,
"properties": {
"facing": "south",
"half": "top",
@@ -173704,7 +174391,7 @@
}
},
{
- "id": 10353,
+ "id": 10494,
"properties": {
"facing": "south",
"half": "top",
@@ -173713,7 +174400,7 @@
}
},
{
- "id": 10354,
+ "id": 10495,
"properties": {
"facing": "south",
"half": "top",
@@ -173722,7 +174409,7 @@
}
},
{
- "id": 10355,
+ "id": 10496,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173731,7 +174418,7 @@
}
},
{
- "id": 10356,
+ "id": 10497,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173740,7 +174427,7 @@
}
},
{
- "id": 10357,
+ "id": 10498,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173749,7 +174436,7 @@
}
},
{
- "id": 10358,
+ "id": 10499,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173758,7 +174445,7 @@
}
},
{
- "id": 10359,
+ "id": 10500,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173767,7 +174454,7 @@
}
},
{
- "id": 10360,
+ "id": 10501,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173776,7 +174463,7 @@
}
},
{
- "id": 10361,
+ "id": 10502,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173785,7 +174472,7 @@
}
},
{
- "id": 10362,
+ "id": 10503,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173794,7 +174481,7 @@
}
},
{
- "id": 10363,
+ "id": 10504,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173803,7 +174490,7 @@
}
},
{
- "id": 10364,
+ "id": 10505,
"properties": {
"facing": "south",
"half": "bottom",
@@ -173812,7 +174499,7 @@
}
},
{
- "id": 10365,
+ "id": 10506,
"properties": {
"facing": "west",
"half": "top",
@@ -173821,7 +174508,7 @@
}
},
{
- "id": 10366,
+ "id": 10507,
"properties": {
"facing": "west",
"half": "top",
@@ -173830,7 +174517,7 @@
}
},
{
- "id": 10367,
+ "id": 10508,
"properties": {
"facing": "west",
"half": "top",
@@ -173839,7 +174526,7 @@
}
},
{
- "id": 10368,
+ "id": 10509,
"properties": {
"facing": "west",
"half": "top",
@@ -173848,7 +174535,7 @@
}
},
{
- "id": 10369,
+ "id": 10510,
"properties": {
"facing": "west",
"half": "top",
@@ -173857,7 +174544,7 @@
}
},
{
- "id": 10370,
+ "id": 10511,
"properties": {
"facing": "west",
"half": "top",
@@ -173866,7 +174553,7 @@
}
},
{
- "id": 10371,
+ "id": 10512,
"properties": {
"facing": "west",
"half": "top",
@@ -173875,7 +174562,7 @@
}
},
{
- "id": 10372,
+ "id": 10513,
"properties": {
"facing": "west",
"half": "top",
@@ -173884,7 +174571,7 @@
}
},
{
- "id": 10373,
+ "id": 10514,
"properties": {
"facing": "west",
"half": "top",
@@ -173893,7 +174580,7 @@
}
},
{
- "id": 10374,
+ "id": 10515,
"properties": {
"facing": "west",
"half": "top",
@@ -173902,7 +174589,7 @@
}
},
{
- "id": 10375,
+ "id": 10516,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173911,7 +174598,7 @@
}
},
{
- "id": 10376,
+ "id": 10517,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173920,7 +174607,7 @@
}
},
{
- "id": 10377,
+ "id": 10518,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173929,7 +174616,7 @@
}
},
{
- "id": 10378,
+ "id": 10519,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173938,7 +174625,7 @@
}
},
{
- "id": 10379,
+ "id": 10520,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173947,7 +174634,7 @@
}
},
{
- "id": 10380,
+ "id": 10521,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173956,7 +174643,7 @@
}
},
{
- "id": 10381,
+ "id": 10522,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173965,7 +174652,7 @@
}
},
{
- "id": 10382,
+ "id": 10523,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173974,7 +174661,7 @@
}
},
{
- "id": 10383,
+ "id": 10524,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173983,7 +174670,7 @@
}
},
{
- "id": 10384,
+ "id": 10525,
"properties": {
"facing": "west",
"half": "bottom",
@@ -173992,7 +174679,7 @@
}
},
{
- "id": 10385,
+ "id": 10526,
"properties": {
"facing": "east",
"half": "top",
@@ -174001,7 +174688,7 @@
}
},
{
- "id": 10386,
+ "id": 10527,
"properties": {
"facing": "east",
"half": "top",
@@ -174010,7 +174697,7 @@
}
},
{
- "id": 10387,
+ "id": 10528,
"properties": {
"facing": "east",
"half": "top",
@@ -174019,7 +174706,7 @@
}
},
{
- "id": 10388,
+ "id": 10529,
"properties": {
"facing": "east",
"half": "top",
@@ -174028,7 +174715,7 @@
}
},
{
- "id": 10389,
+ "id": 10530,
"properties": {
"facing": "east",
"half": "top",
@@ -174037,7 +174724,7 @@
}
},
{
- "id": 10390,
+ "id": 10531,
"properties": {
"facing": "east",
"half": "top",
@@ -174046,7 +174733,7 @@
}
},
{
- "id": 10391,
+ "id": 10532,
"properties": {
"facing": "east",
"half": "top",
@@ -174055,7 +174742,7 @@
}
},
{
- "id": 10392,
+ "id": 10533,
"properties": {
"facing": "east",
"half": "top",
@@ -174064,7 +174751,7 @@
}
},
{
- "id": 10393,
+ "id": 10534,
"properties": {
"facing": "east",
"half": "top",
@@ -174073,7 +174760,7 @@
}
},
{
- "id": 10394,
+ "id": 10535,
"properties": {
"facing": "east",
"half": "top",
@@ -174082,7 +174769,7 @@
}
},
{
- "id": 10395,
+ "id": 10536,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174091,7 +174778,7 @@
}
},
{
- "id": 10396,
+ "id": 10537,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174100,7 +174787,7 @@
}
},
{
- "id": 10397,
+ "id": 10538,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174109,7 +174796,7 @@
}
},
{
- "id": 10398,
+ "id": 10539,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174118,7 +174805,7 @@
}
},
{
- "id": 10399,
+ "id": 10540,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174127,7 +174814,7 @@
}
},
{
- "id": 10400,
+ "id": 10541,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174136,7 +174823,7 @@
}
},
{
- "id": 10401,
+ "id": 10542,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174145,7 +174832,7 @@
}
},
{
- "id": 10402,
+ "id": 10543,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174154,7 +174841,7 @@
}
},
{
- "id": 10403,
+ "id": 10544,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174163,7 +174850,7 @@
}
},
{
- "id": 10404,
+ "id": 10545,
"properties": {
"facing": "east",
"half": "bottom",
@@ -174206,7 +174893,7 @@
},
"states": [
{
- "id": 14343,
+ "id": 14484,
"properties": {
"east": "none",
"north": "none",
@@ -174217,7 +174904,7 @@
}
},
{
- "id": 14344,
+ "id": 14485,
"properties": {
"east": "none",
"north": "none",
@@ -174228,7 +174915,7 @@
}
},
{
- "id": 14345,
+ "id": 14486,
"properties": {
"east": "none",
"north": "none",
@@ -174240,2339 +174927,2339 @@
},
{
"default": true,
- "id": 14346,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14347,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14348,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14349,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14350,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14351,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14352,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14353,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14354,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14355,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14356,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14357,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14358,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14359,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14360,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14361,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14362,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14363,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14364,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14365,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14366,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14367,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14368,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14369,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14370,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14371,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14372,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14373,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14374,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14375,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14376,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14377,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14378,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14379,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14380,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14381,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14382,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14383,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14384,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14385,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14386,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14387,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14388,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14389,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14390,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14391,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14392,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14393,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14394,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14395,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14396,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14397,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14398,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14399,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14400,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14401,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14402,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14403,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14404,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14405,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14406,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14407,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14408,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14409,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14410,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14411,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14412,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14413,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14414,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14415,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14416,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14417,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14418,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14419,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14420,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14421,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14422,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14423,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14424,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14425,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14426,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14427,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14428,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14429,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14430,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14431,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14432,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14433,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14434,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14435,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14436,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14437,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14438,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14439,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14440,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14441,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14442,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14443,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14444,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14445,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14446,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14447,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14448,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14449,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14450,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14451,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14452,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14453,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14454,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14455,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14456,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14457,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14458,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14459,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14460,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14461,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14462,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14463,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14464,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14465,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14466,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14467,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14468,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14469,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14470,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14471,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14472,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14473,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14474,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14475,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14476,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14477,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14478,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14479,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14480,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14481,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14482,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14483,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14484,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14485,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14486,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 14487,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14488,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14489,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14490,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14491,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14492,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14493,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14494,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14495,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14496,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14497,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14498,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14499,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14500,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14501,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14502,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14503,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14504,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14505,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14506,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14507,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14508,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14509,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14510,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14511,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14512,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14513,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14514,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14515,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14516,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14517,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14518,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14519,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14520,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14521,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14522,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14523,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14524,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14525,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14526,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14527,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14528,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14529,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14530,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14531,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14532,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14533,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14534,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14535,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14536,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14537,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14538,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14539,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14540,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14541,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14542,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14543,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14544,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14545,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14546,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14547,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14548,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14549,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14550,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14551,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14552,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14553,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14554,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14555,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14556,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14557,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14558,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14559,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14560,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14561,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14562,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14563,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14564,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14565,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14566,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14567,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14568,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14569,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14570,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14571,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14572,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14573,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14574,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14575,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14576,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14577,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14578,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14579,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14580,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14581,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14582,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14583,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14584,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14585,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14586,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14587,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14588,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14589,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14590,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14591,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14592,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14593,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14594,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14595,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14596,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14597,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14598,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14599,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14600,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14601,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14602,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14603,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14604,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14605,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14606,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14607,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14608,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14609,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14610,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14611,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14612,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14613,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14614,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14615,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14616,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14617,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14618,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14619,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14620,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14621,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14622,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14623,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14624,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14625,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14626,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14627,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14628,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14629,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14630,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14631,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14632,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14633,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14634,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14635,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14636,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14637,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14638,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14639,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14640,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14641,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14642,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14643,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14644,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14645,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14646,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14647,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14648,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14649,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14650,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14651,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14652,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14653,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14654,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14655,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14656,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14657,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14658,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14659,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14660,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14661,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14662,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14663,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14664,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14665,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14666,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14667,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14668,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14669,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14670,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14671,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14672,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14673,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14674,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14675,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14676,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14677,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14678,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14679,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14680,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14681,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14682,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14683,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14684,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14685,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14686,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14687,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14688,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14689,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14690,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14691,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14692,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14693,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14694,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14695,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14696,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14697,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14698,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14699,
"properties": {
"east": "low",
"north": "tall",
@@ -176583,7 +177270,7 @@
}
},
{
- "id": 14559,
+ "id": 14700,
"properties": {
"east": "tall",
"north": "none",
@@ -176594,7 +177281,7 @@
}
},
{
- "id": 14560,
+ "id": 14701,
"properties": {
"east": "tall",
"north": "none",
@@ -176605,7 +177292,7 @@
}
},
{
- "id": 14561,
+ "id": 14702,
"properties": {
"east": "tall",
"north": "none",
@@ -176616,7 +177303,7 @@
}
},
{
- "id": 14562,
+ "id": 14703,
"properties": {
"east": "tall",
"north": "none",
@@ -176627,7 +177314,7 @@
}
},
{
- "id": 14563,
+ "id": 14704,
"properties": {
"east": "tall",
"north": "none",
@@ -176638,7 +177325,7 @@
}
},
{
- "id": 14564,
+ "id": 14705,
"properties": {
"east": "tall",
"north": "none",
@@ -176649,7 +177336,7 @@
}
},
{
- "id": 14565,
+ "id": 14706,
"properties": {
"east": "tall",
"north": "none",
@@ -176660,7 +177347,7 @@
}
},
{
- "id": 14566,
+ "id": 14707,
"properties": {
"east": "tall",
"north": "none",
@@ -176671,7 +177358,7 @@
}
},
{
- "id": 14567,
+ "id": 14708,
"properties": {
"east": "tall",
"north": "none",
@@ -176682,7 +177369,7 @@
}
},
{
- "id": 14568,
+ "id": 14709,
"properties": {
"east": "tall",
"north": "none",
@@ -176693,7 +177380,7 @@
}
},
{
- "id": 14569,
+ "id": 14710,
"properties": {
"east": "tall",
"north": "none",
@@ -176704,7 +177391,7 @@
}
},
{
- "id": 14570,
+ "id": 14711,
"properties": {
"east": "tall",
"north": "none",
@@ -176715,7 +177402,7 @@
}
},
{
- "id": 14571,
+ "id": 14712,
"properties": {
"east": "tall",
"north": "none",
@@ -176726,7 +177413,7 @@
}
},
{
- "id": 14572,
+ "id": 14713,
"properties": {
"east": "tall",
"north": "none",
@@ -176737,7 +177424,7 @@
}
},
{
- "id": 14573,
+ "id": 14714,
"properties": {
"east": "tall",
"north": "none",
@@ -176748,7 +177435,7 @@
}
},
{
- "id": 14574,
+ "id": 14715,
"properties": {
"east": "tall",
"north": "none",
@@ -176759,7 +177446,7 @@
}
},
{
- "id": 14575,
+ "id": 14716,
"properties": {
"east": "tall",
"north": "none",
@@ -176770,7 +177457,7 @@
}
},
{
- "id": 14576,
+ "id": 14717,
"properties": {
"east": "tall",
"north": "none",
@@ -176781,7 +177468,7 @@
}
},
{
- "id": 14577,
+ "id": 14718,
"properties": {
"east": "tall",
"north": "none",
@@ -176792,7 +177479,7 @@
}
},
{
- "id": 14578,
+ "id": 14719,
"properties": {
"east": "tall",
"north": "none",
@@ -176803,7 +177490,7 @@
}
},
{
- "id": 14579,
+ "id": 14720,
"properties": {
"east": "tall",
"north": "none",
@@ -176814,7 +177501,7 @@
}
},
{
- "id": 14580,
+ "id": 14721,
"properties": {
"east": "tall",
"north": "none",
@@ -176825,7 +177512,7 @@
}
},
{
- "id": 14581,
+ "id": 14722,
"properties": {
"east": "tall",
"north": "none",
@@ -176836,7 +177523,7 @@
}
},
{
- "id": 14582,
+ "id": 14723,
"properties": {
"east": "tall",
"north": "none",
@@ -176847,7 +177534,7 @@
}
},
{
- "id": 14583,
+ "id": 14724,
"properties": {
"east": "tall",
"north": "none",
@@ -176858,7 +177545,7 @@
}
},
{
- "id": 14584,
+ "id": 14725,
"properties": {
"east": "tall",
"north": "none",
@@ -176869,7 +177556,7 @@
}
},
{
- "id": 14585,
+ "id": 14726,
"properties": {
"east": "tall",
"north": "none",
@@ -176880,7 +177567,7 @@
}
},
{
- "id": 14586,
+ "id": 14727,
"properties": {
"east": "tall",
"north": "none",
@@ -176891,7 +177578,7 @@
}
},
{
- "id": 14587,
+ "id": 14728,
"properties": {
"east": "tall",
"north": "none",
@@ -176902,7 +177589,7 @@
}
},
{
- "id": 14588,
+ "id": 14729,
"properties": {
"east": "tall",
"north": "none",
@@ -176913,7 +177600,7 @@
}
},
{
- "id": 14589,
+ "id": 14730,
"properties": {
"east": "tall",
"north": "none",
@@ -176924,7 +177611,7 @@
}
},
{
- "id": 14590,
+ "id": 14731,
"properties": {
"east": "tall",
"north": "none",
@@ -176935,7 +177622,7 @@
}
},
{
- "id": 14591,
+ "id": 14732,
"properties": {
"east": "tall",
"north": "none",
@@ -176946,7 +177633,7 @@
}
},
{
- "id": 14592,
+ "id": 14733,
"properties": {
"east": "tall",
"north": "none",
@@ -176957,7 +177644,7 @@
}
},
{
- "id": 14593,
+ "id": 14734,
"properties": {
"east": "tall",
"north": "none",
@@ -176968,7 +177655,7 @@
}
},
{
- "id": 14594,
+ "id": 14735,
"properties": {
"east": "tall",
"north": "none",
@@ -176979,7 +177666,7 @@
}
},
{
- "id": 14595,
+ "id": 14736,
"properties": {
"east": "tall",
"north": "low",
@@ -176990,7 +177677,7 @@
}
},
{
- "id": 14596,
+ "id": 14737,
"properties": {
"east": "tall",
"north": "low",
@@ -177001,7 +177688,7 @@
}
},
{
- "id": 14597,
+ "id": 14738,
"properties": {
"east": "tall",
"north": "low",
@@ -177012,7 +177699,7 @@
}
},
{
- "id": 14598,
+ "id": 14739,
"properties": {
"east": "tall",
"north": "low",
@@ -177023,7 +177710,7 @@
}
},
{
- "id": 14599,
+ "id": 14740,
"properties": {
"east": "tall",
"north": "low",
@@ -177034,7 +177721,7 @@
}
},
{
- "id": 14600,
+ "id": 14741,
"properties": {
"east": "tall",
"north": "low",
@@ -177045,7 +177732,7 @@
}
},
{
- "id": 14601,
+ "id": 14742,
"properties": {
"east": "tall",
"north": "low",
@@ -177056,7 +177743,7 @@
}
},
{
- "id": 14602,
+ "id": 14743,
"properties": {
"east": "tall",
"north": "low",
@@ -177067,7 +177754,7 @@
}
},
{
- "id": 14603,
+ "id": 14744,
"properties": {
"east": "tall",
"north": "low",
@@ -177078,7 +177765,7 @@
}
},
{
- "id": 14604,
+ "id": 14745,
"properties": {
"east": "tall",
"north": "low",
@@ -177089,7 +177776,7 @@
}
},
{
- "id": 14605,
+ "id": 14746,
"properties": {
"east": "tall",
"north": "low",
@@ -177100,7 +177787,7 @@
}
},
{
- "id": 14606,
+ "id": 14747,
"properties": {
"east": "tall",
"north": "low",
@@ -177111,7 +177798,7 @@
}
},
{
- "id": 14607,
+ "id": 14748,
"properties": {
"east": "tall",
"north": "low",
@@ -177122,7 +177809,7 @@
}
},
{
- "id": 14608,
+ "id": 14749,
"properties": {
"east": "tall",
"north": "low",
@@ -177133,7 +177820,7 @@
}
},
{
- "id": 14609,
+ "id": 14750,
"properties": {
"east": "tall",
"north": "low",
@@ -177144,7 +177831,7 @@
}
},
{
- "id": 14610,
+ "id": 14751,
"properties": {
"east": "tall",
"north": "low",
@@ -177155,7 +177842,7 @@
}
},
{
- "id": 14611,
+ "id": 14752,
"properties": {
"east": "tall",
"north": "low",
@@ -177166,7 +177853,7 @@
}
},
{
- "id": 14612,
+ "id": 14753,
"properties": {
"east": "tall",
"north": "low",
@@ -177177,7 +177864,7 @@
}
},
{
- "id": 14613,
+ "id": 14754,
"properties": {
"east": "tall",
"north": "low",
@@ -177188,7 +177875,7 @@
}
},
{
- "id": 14614,
+ "id": 14755,
"properties": {
"east": "tall",
"north": "low",
@@ -177199,7 +177886,7 @@
}
},
{
- "id": 14615,
+ "id": 14756,
"properties": {
"east": "tall",
"north": "low",
@@ -177210,7 +177897,7 @@
}
},
{
- "id": 14616,
+ "id": 14757,
"properties": {
"east": "tall",
"north": "low",
@@ -177221,7 +177908,7 @@
}
},
{
- "id": 14617,
+ "id": 14758,
"properties": {
"east": "tall",
"north": "low",
@@ -177232,7 +177919,7 @@
}
},
{
- "id": 14618,
+ "id": 14759,
"properties": {
"east": "tall",
"north": "low",
@@ -177243,7 +177930,7 @@
}
},
{
- "id": 14619,
+ "id": 14760,
"properties": {
"east": "tall",
"north": "low",
@@ -177254,7 +177941,7 @@
}
},
{
- "id": 14620,
+ "id": 14761,
"properties": {
"east": "tall",
"north": "low",
@@ -177265,7 +177952,7 @@
}
},
{
- "id": 14621,
+ "id": 14762,
"properties": {
"east": "tall",
"north": "low",
@@ -177276,7 +177963,7 @@
}
},
{
- "id": 14622,
+ "id": 14763,
"properties": {
"east": "tall",
"north": "low",
@@ -177287,7 +177974,7 @@
}
},
{
- "id": 14623,
+ "id": 14764,
"properties": {
"east": "tall",
"north": "low",
@@ -177298,7 +177985,7 @@
}
},
{
- "id": 14624,
+ "id": 14765,
"properties": {
"east": "tall",
"north": "low",
@@ -177309,7 +177996,7 @@
}
},
{
- "id": 14625,
+ "id": 14766,
"properties": {
"east": "tall",
"north": "low",
@@ -177320,7 +178007,7 @@
}
},
{
- "id": 14626,
+ "id": 14767,
"properties": {
"east": "tall",
"north": "low",
@@ -177331,7 +178018,7 @@
}
},
{
- "id": 14627,
+ "id": 14768,
"properties": {
"east": "tall",
"north": "low",
@@ -177342,7 +178029,7 @@
}
},
{
- "id": 14628,
+ "id": 14769,
"properties": {
"east": "tall",
"north": "low",
@@ -177353,7 +178040,7 @@
}
},
{
- "id": 14629,
+ "id": 14770,
"properties": {
"east": "tall",
"north": "low",
@@ -177364,7 +178051,7 @@
}
},
{
- "id": 14630,
+ "id": 14771,
"properties": {
"east": "tall",
"north": "low",
@@ -177375,7 +178062,7 @@
}
},
{
- "id": 14631,
+ "id": 14772,
"properties": {
"east": "tall",
"north": "tall",
@@ -177386,7 +178073,7 @@
}
},
{
- "id": 14632,
+ "id": 14773,
"properties": {
"east": "tall",
"north": "tall",
@@ -177397,7 +178084,7 @@
}
},
{
- "id": 14633,
+ "id": 14774,
"properties": {
"east": "tall",
"north": "tall",
@@ -177408,7 +178095,7 @@
}
},
{
- "id": 14634,
+ "id": 14775,
"properties": {
"east": "tall",
"north": "tall",
@@ -177419,7 +178106,7 @@
}
},
{
- "id": 14635,
+ "id": 14776,
"properties": {
"east": "tall",
"north": "tall",
@@ -177430,7 +178117,7 @@
}
},
{
- "id": 14636,
+ "id": 14777,
"properties": {
"east": "tall",
"north": "tall",
@@ -177441,7 +178128,7 @@
}
},
{
- "id": 14637,
+ "id": 14778,
"properties": {
"east": "tall",
"north": "tall",
@@ -177452,7 +178139,7 @@
}
},
{
- "id": 14638,
+ "id": 14779,
"properties": {
"east": "tall",
"north": "tall",
@@ -177463,7 +178150,7 @@
}
},
{
- "id": 14639,
+ "id": 14780,
"properties": {
"east": "tall",
"north": "tall",
@@ -177474,7 +178161,7 @@
}
},
{
- "id": 14640,
+ "id": 14781,
"properties": {
"east": "tall",
"north": "tall",
@@ -177485,7 +178172,7 @@
}
},
{
- "id": 14641,
+ "id": 14782,
"properties": {
"east": "tall",
"north": "tall",
@@ -177496,7 +178183,7 @@
}
},
{
- "id": 14642,
+ "id": 14783,
"properties": {
"east": "tall",
"north": "tall",
@@ -177507,7 +178194,7 @@
}
},
{
- "id": 14643,
+ "id": 14784,
"properties": {
"east": "tall",
"north": "tall",
@@ -177518,7 +178205,7 @@
}
},
{
- "id": 14644,
+ "id": 14785,
"properties": {
"east": "tall",
"north": "tall",
@@ -177529,7 +178216,7 @@
}
},
{
- "id": 14645,
+ "id": 14786,
"properties": {
"east": "tall",
"north": "tall",
@@ -177540,7 +178227,7 @@
}
},
{
- "id": 14646,
+ "id": 14787,
"properties": {
"east": "tall",
"north": "tall",
@@ -177551,7 +178238,7 @@
}
},
{
- "id": 14647,
+ "id": 14788,
"properties": {
"east": "tall",
"north": "tall",
@@ -177562,7 +178249,7 @@
}
},
{
- "id": 14648,
+ "id": 14789,
"properties": {
"east": "tall",
"north": "tall",
@@ -177573,7 +178260,7 @@
}
},
{
- "id": 14649,
+ "id": 14790,
"properties": {
"east": "tall",
"north": "tall",
@@ -177584,7 +178271,7 @@
}
},
{
- "id": 14650,
+ "id": 14791,
"properties": {
"east": "tall",
"north": "tall",
@@ -177595,7 +178282,7 @@
}
},
{
- "id": 14651,
+ "id": 14792,
"properties": {
"east": "tall",
"north": "tall",
@@ -177606,7 +178293,7 @@
}
},
{
- "id": 14652,
+ "id": 14793,
"properties": {
"east": "tall",
"north": "tall",
@@ -177617,7 +178304,7 @@
}
},
{
- "id": 14653,
+ "id": 14794,
"properties": {
"east": "tall",
"north": "tall",
@@ -177628,7 +178315,7 @@
}
},
{
- "id": 14654,
+ "id": 14795,
"properties": {
"east": "tall",
"north": "tall",
@@ -177639,7 +178326,7 @@
}
},
{
- "id": 14655,
+ "id": 14796,
"properties": {
"east": "tall",
"north": "tall",
@@ -177650,7 +178337,7 @@
}
},
{
- "id": 14656,
+ "id": 14797,
"properties": {
"east": "tall",
"north": "tall",
@@ -177661,7 +178348,7 @@
}
},
{
- "id": 14657,
+ "id": 14798,
"properties": {
"east": "tall",
"north": "tall",
@@ -177672,7 +178359,7 @@
}
},
{
- "id": 14658,
+ "id": 14799,
"properties": {
"east": "tall",
"north": "tall",
@@ -177683,7 +178370,7 @@
}
},
{
- "id": 14659,
+ "id": 14800,
"properties": {
"east": "tall",
"north": "tall",
@@ -177694,7 +178381,7 @@
}
},
{
- "id": 14660,
+ "id": 14801,
"properties": {
"east": "tall",
"north": "tall",
@@ -177705,7 +178392,7 @@
}
},
{
- "id": 14661,
+ "id": 14802,
"properties": {
"east": "tall",
"north": "tall",
@@ -177716,7 +178403,7 @@
}
},
{
- "id": 14662,
+ "id": 14803,
"properties": {
"east": "tall",
"north": "tall",
@@ -177727,7 +178414,7 @@
}
},
{
- "id": 14663,
+ "id": 14804,
"properties": {
"east": "tall",
"north": "tall",
@@ -177738,7 +178425,7 @@
}
},
{
- "id": 14664,
+ "id": 14805,
"properties": {
"east": "tall",
"north": "tall",
@@ -177749,7 +178436,7 @@
}
},
{
- "id": 14665,
+ "id": 14806,
"properties": {
"east": "tall",
"north": "tall",
@@ -177760,7 +178447,7 @@
}
},
{
- "id": 14666,
+ "id": 14807,
"properties": {
"east": "tall",
"north": "tall",
@@ -177869,97 +178556,97 @@
"states": [
{
"default": true,
- "id": 10778,
+ "id": 10919,
"properties": {
"rotation": "0"
}
},
{
- "id": 10779,
+ "id": 10920,
"properties": {
"rotation": "1"
}
},
{
- "id": 10780,
+ "id": 10921,
"properties": {
"rotation": "2"
}
},
{
- "id": 10781,
+ "id": 10922,
"properties": {
"rotation": "3"
}
},
{
- "id": 10782,
+ "id": 10923,
"properties": {
"rotation": "4"
}
},
{
- "id": 10783,
+ "id": 10924,
"properties": {
"rotation": "5"
}
},
{
- "id": 10784,
+ "id": 10925,
"properties": {
"rotation": "6"
}
},
{
- "id": 10785,
+ "id": 10926,
"properties": {
"rotation": "7"
}
},
{
- "id": 10786,
+ "id": 10927,
"properties": {
"rotation": "8"
}
},
{
- "id": 10787,
+ "id": 10928,
"properties": {
"rotation": "9"
}
},
{
- "id": 10788,
+ "id": 10929,
"properties": {
"rotation": "10"
}
},
{
- "id": 10789,
+ "id": 10930,
"properties": {
"rotation": "11"
}
},
{
- "id": 10790,
+ "id": 10931,
"properties": {
"rotation": "12"
}
},
{
- "id": 10791,
+ "id": 10932,
"properties": {
"rotation": "13"
}
},
{
- "id": 10792,
+ "id": 10933,
"properties": {
"rotation": "14"
}
},
{
- "id": 10793,
+ "id": 10934,
"properties": {
"rotation": "15"
}
@@ -178134,7 +178821,7 @@
},
"states": [
{
- "id": 20760,
+ "id": 20901,
"properties": {
"candles": "1",
"lit": "true",
@@ -178142,7 +178829,7 @@
}
},
{
- "id": 20761,
+ "id": 20902,
"properties": {
"candles": "1",
"lit": "true",
@@ -178150,7 +178837,7 @@
}
},
{
- "id": 20762,
+ "id": 20903,
"properties": {
"candles": "1",
"lit": "false",
@@ -178159,7 +178846,7 @@
},
{
"default": true,
- "id": 20763,
+ "id": 20904,
"properties": {
"candles": "1",
"lit": "false",
@@ -178167,7 +178854,7 @@
}
},
{
- "id": 20764,
+ "id": 20905,
"properties": {
"candles": "2",
"lit": "true",
@@ -178175,7 +178862,7 @@
}
},
{
- "id": 20765,
+ "id": 20906,
"properties": {
"candles": "2",
"lit": "true",
@@ -178183,7 +178870,7 @@
}
},
{
- "id": 20766,
+ "id": 20907,
"properties": {
"candles": "2",
"lit": "false",
@@ -178191,7 +178878,7 @@
}
},
{
- "id": 20767,
+ "id": 20908,
"properties": {
"candles": "2",
"lit": "false",
@@ -178199,7 +178886,7 @@
}
},
{
- "id": 20768,
+ "id": 20909,
"properties": {
"candles": "3",
"lit": "true",
@@ -178207,7 +178894,7 @@
}
},
{
- "id": 20769,
+ "id": 20910,
"properties": {
"candles": "3",
"lit": "true",
@@ -178215,7 +178902,7 @@
}
},
{
- "id": 20770,
+ "id": 20911,
"properties": {
"candles": "3",
"lit": "false",
@@ -178223,7 +178910,7 @@
}
},
{
- "id": 20771,
+ "id": 20912,
"properties": {
"candles": "3",
"lit": "false",
@@ -178231,7 +178918,7 @@
}
},
{
- "id": 20772,
+ "id": 20913,
"properties": {
"candles": "4",
"lit": "true",
@@ -178239,7 +178926,7 @@
}
},
{
- "id": 20773,
+ "id": 20914,
"properties": {
"candles": "4",
"lit": "true",
@@ -178247,7 +178934,7 @@
}
},
{
- "id": 20774,
+ "id": 20915,
"properties": {
"candles": "4",
"lit": "false",
@@ -178255,7 +178942,7 @@
}
},
{
- "id": 20775,
+ "id": 20916,
"properties": {
"candles": "4",
"lit": "false",
@@ -178273,14 +178960,14 @@
},
"states": [
{
- "id": 20878,
+ "id": 21019,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20879,
+ "id": 21020,
"properties": {
"lit": "false"
}
@@ -178291,7 +178978,7 @@
"states": [
{
"default": true,
- "id": 10597
+ "id": 10738
}
]
},
@@ -178299,7 +178986,7 @@
"states": [
{
"default": true,
- "id": 12597
+ "id": 12738
}
]
},
@@ -178307,7 +178994,7 @@
"states": [
{
"default": true,
- "id": 12613
+ "id": 12754
}
]
},
@@ -178323,25 +179010,25 @@
"states": [
{
"default": true,
- "id": 12563,
+ "id": 12704,
"properties": {
"facing": "north"
}
},
{
- "id": 12564,
+ "id": 12705,
"properties": {
"facing": "south"
}
},
{
- "id": 12565,
+ "id": 12706,
"properties": {
"facing": "west"
}
},
{
- "id": 12566,
+ "id": 12707,
"properties": {
"facing": "east"
}
@@ -178361,38 +179048,38 @@
},
"states": [
{
- "id": 12487,
+ "id": 12628,
"properties": {
"facing": "north"
}
},
{
- "id": 12488,
+ "id": 12629,
"properties": {
"facing": "east"
}
},
{
- "id": 12489,
+ "id": 12630,
"properties": {
"facing": "south"
}
},
{
- "id": 12490,
+ "id": 12631,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12491,
+ "id": 12632,
"properties": {
"facing": "up"
}
},
{
- "id": 12492,
+ "id": 12633,
"properties": {
"facing": "down"
}
@@ -178432,7 +179119,7 @@
},
"states": [
{
- "id": 9552,
+ "id": 9692,
"properties": {
"east": "true",
"north": "true",
@@ -178442,7 +179129,7 @@
}
},
{
- "id": 9553,
+ "id": 9693,
"properties": {
"east": "true",
"north": "true",
@@ -178452,7 +179139,7 @@
}
},
{
- "id": 9554,
+ "id": 9694,
"properties": {
"east": "true",
"north": "true",
@@ -178462,7 +179149,7 @@
}
},
{
- "id": 9555,
+ "id": 9695,
"properties": {
"east": "true",
"north": "true",
@@ -178472,7 +179159,7 @@
}
},
{
- "id": 9556,
+ "id": 9696,
"properties": {
"east": "true",
"north": "true",
@@ -178482,7 +179169,7 @@
}
},
{
- "id": 9557,
+ "id": 9697,
"properties": {
"east": "true",
"north": "true",
@@ -178492,7 +179179,7 @@
}
},
{
- "id": 9558,
+ "id": 9698,
"properties": {
"east": "true",
"north": "true",
@@ -178502,7 +179189,7 @@
}
},
{
- "id": 9559,
+ "id": 9699,
"properties": {
"east": "true",
"north": "true",
@@ -178512,7 +179199,7 @@
}
},
{
- "id": 9560,
+ "id": 9700,
"properties": {
"east": "true",
"north": "false",
@@ -178522,7 +179209,7 @@
}
},
{
- "id": 9561,
+ "id": 9701,
"properties": {
"east": "true",
"north": "false",
@@ -178532,7 +179219,7 @@
}
},
{
- "id": 9562,
+ "id": 9702,
"properties": {
"east": "true",
"north": "false",
@@ -178542,7 +179229,7 @@
}
},
{
- "id": 9563,
+ "id": 9703,
"properties": {
"east": "true",
"north": "false",
@@ -178552,7 +179239,7 @@
}
},
{
- "id": 9564,
+ "id": 9704,
"properties": {
"east": "true",
"north": "false",
@@ -178562,7 +179249,7 @@
}
},
{
- "id": 9565,
+ "id": 9705,
"properties": {
"east": "true",
"north": "false",
@@ -178572,7 +179259,7 @@
}
},
{
- "id": 9566,
+ "id": 9706,
"properties": {
"east": "true",
"north": "false",
@@ -178582,7 +179269,7 @@
}
},
{
- "id": 9567,
+ "id": 9707,
"properties": {
"east": "true",
"north": "false",
@@ -178592,7 +179279,7 @@
}
},
{
- "id": 9568,
+ "id": 9708,
"properties": {
"east": "false",
"north": "true",
@@ -178602,7 +179289,7 @@
}
},
{
- "id": 9569,
+ "id": 9709,
"properties": {
"east": "false",
"north": "true",
@@ -178612,7 +179299,7 @@
}
},
{
- "id": 9570,
+ "id": 9710,
"properties": {
"east": "false",
"north": "true",
@@ -178622,7 +179309,7 @@
}
},
{
- "id": 9571,
+ "id": 9711,
"properties": {
"east": "false",
"north": "true",
@@ -178632,7 +179319,7 @@
}
},
{
- "id": 9572,
+ "id": 9712,
"properties": {
"east": "false",
"north": "true",
@@ -178642,7 +179329,7 @@
}
},
{
- "id": 9573,
+ "id": 9713,
"properties": {
"east": "false",
"north": "true",
@@ -178652,7 +179339,7 @@
}
},
{
- "id": 9574,
+ "id": 9714,
"properties": {
"east": "false",
"north": "true",
@@ -178662,7 +179349,7 @@
}
},
{
- "id": 9575,
+ "id": 9715,
"properties": {
"east": "false",
"north": "true",
@@ -178672,7 +179359,7 @@
}
},
{
- "id": 9576,
+ "id": 9716,
"properties": {
"east": "false",
"north": "false",
@@ -178682,7 +179369,7 @@
}
},
{
- "id": 9577,
+ "id": 9717,
"properties": {
"east": "false",
"north": "false",
@@ -178692,7 +179379,7 @@
}
},
{
- "id": 9578,
+ "id": 9718,
"properties": {
"east": "false",
"north": "false",
@@ -178702,7 +179389,7 @@
}
},
{
- "id": 9579,
+ "id": 9719,
"properties": {
"east": "false",
"north": "false",
@@ -178712,7 +179399,7 @@
}
},
{
- "id": 9580,
+ "id": 9720,
"properties": {
"east": "false",
"north": "false",
@@ -178722,7 +179409,7 @@
}
},
{
- "id": 9581,
+ "id": 9721,
"properties": {
"east": "false",
"north": "false",
@@ -178732,7 +179419,7 @@
}
},
{
- "id": 9582,
+ "id": 9722,
"properties": {
"east": "false",
"north": "false",
@@ -178743,7 +179430,7 @@
},
{
"default": true,
- "id": 9583,
+ "id": 9723,
"properties": {
"east": "false",
"north": "false",
@@ -178758,7 +179445,7 @@
"states": [
{
"default": true,
- "id": 9226
+ "id": 9366
}
]
},
@@ -178774,25 +179461,25 @@
"states": [
{
"default": true,
- "id": 10914,
+ "id": 11055,
"properties": {
"facing": "north"
}
},
{
- "id": 10915,
+ "id": 11056,
"properties": {
"facing": "south"
}
},
{
- "id": 10916,
+ "id": 11057,
"properties": {
"facing": "west"
}
},
{
- "id": 10917,
+ "id": 11058,
"properties": {
"facing": "east"
}
@@ -178811,7 +179498,7 @@
"states": [
{
"default": true,
- "id": 12269
+ "id": 12410
}
]
},
@@ -178825,20 +179512,20 @@
},
"states": [
{
- "id": 12270,
+ "id": 12411,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 12271,
+ "id": 12412,
"properties": {
"axis": "y"
}
},
{
- "id": 12272,
+ "id": 12413,
"properties": {
"axis": "z"
}
@@ -178859,21 +179546,21 @@
},
"states": [
{
- "id": 11159,
+ "id": 11300,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11160,
+ "id": 11301,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11161,
+ "id": 11302,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -178881,21 +179568,21 @@
},
{
"default": true,
- "id": 11162,
+ "id": 11303,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11163,
+ "id": 11304,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11164,
+ "id": 11305,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -178929,7 +179616,7 @@
},
"states": [
{
- "id": 12273,
+ "id": 12414,
"properties": {
"facing": "north",
"half": "top",
@@ -178938,7 +179625,7 @@
}
},
{
- "id": 12274,
+ "id": 12415,
"properties": {
"facing": "north",
"half": "top",
@@ -178947,7 +179634,7 @@
}
},
{
- "id": 12275,
+ "id": 12416,
"properties": {
"facing": "north",
"half": "top",
@@ -178956,7 +179643,7 @@
}
},
{
- "id": 12276,
+ "id": 12417,
"properties": {
"facing": "north",
"half": "top",
@@ -178965,7 +179652,7 @@
}
},
{
- "id": 12277,
+ "id": 12418,
"properties": {
"facing": "north",
"half": "top",
@@ -178974,7 +179661,7 @@
}
},
{
- "id": 12278,
+ "id": 12419,
"properties": {
"facing": "north",
"half": "top",
@@ -178983,7 +179670,7 @@
}
},
{
- "id": 12279,
+ "id": 12420,
"properties": {
"facing": "north",
"half": "top",
@@ -178992,7 +179679,7 @@
}
},
{
- "id": 12280,
+ "id": 12421,
"properties": {
"facing": "north",
"half": "top",
@@ -179001,7 +179688,7 @@
}
},
{
- "id": 12281,
+ "id": 12422,
"properties": {
"facing": "north",
"half": "top",
@@ -179010,7 +179697,7 @@
}
},
{
- "id": 12282,
+ "id": 12423,
"properties": {
"facing": "north",
"half": "top",
@@ -179019,7 +179706,7 @@
}
},
{
- "id": 12283,
+ "id": 12424,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179029,7 +179716,7 @@
},
{
"default": true,
- "id": 12284,
+ "id": 12425,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179038,7 +179725,7 @@
}
},
{
- "id": 12285,
+ "id": 12426,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179047,7 +179734,7 @@
}
},
{
- "id": 12286,
+ "id": 12427,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179056,7 +179743,7 @@
}
},
{
- "id": 12287,
+ "id": 12428,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179065,7 +179752,7 @@
}
},
{
- "id": 12288,
+ "id": 12429,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179074,7 +179761,7 @@
}
},
{
- "id": 12289,
+ "id": 12430,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179083,7 +179770,7 @@
}
},
{
- "id": 12290,
+ "id": 12431,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179092,7 +179779,7 @@
}
},
{
- "id": 12291,
+ "id": 12432,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179101,7 +179788,7 @@
}
},
{
- "id": 12292,
+ "id": 12433,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179110,7 +179797,7 @@
}
},
{
- "id": 12293,
+ "id": 12434,
"properties": {
"facing": "south",
"half": "top",
@@ -179119,7 +179806,7 @@
}
},
{
- "id": 12294,
+ "id": 12435,
"properties": {
"facing": "south",
"half": "top",
@@ -179128,7 +179815,7 @@
}
},
{
- "id": 12295,
+ "id": 12436,
"properties": {
"facing": "south",
"half": "top",
@@ -179137,7 +179824,7 @@
}
},
{
- "id": 12296,
+ "id": 12437,
"properties": {
"facing": "south",
"half": "top",
@@ -179146,7 +179833,7 @@
}
},
{
- "id": 12297,
+ "id": 12438,
"properties": {
"facing": "south",
"half": "top",
@@ -179155,7 +179842,7 @@
}
},
{
- "id": 12298,
+ "id": 12439,
"properties": {
"facing": "south",
"half": "top",
@@ -179164,7 +179851,7 @@
}
},
{
- "id": 12299,
+ "id": 12440,
"properties": {
"facing": "south",
"half": "top",
@@ -179173,7 +179860,7 @@
}
},
{
- "id": 12300,
+ "id": 12441,
"properties": {
"facing": "south",
"half": "top",
@@ -179182,7 +179869,7 @@
}
},
{
- "id": 12301,
+ "id": 12442,
"properties": {
"facing": "south",
"half": "top",
@@ -179191,7 +179878,7 @@
}
},
{
- "id": 12302,
+ "id": 12443,
"properties": {
"facing": "south",
"half": "top",
@@ -179200,7 +179887,7 @@
}
},
{
- "id": 12303,
+ "id": 12444,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179209,7 +179896,7 @@
}
},
{
- "id": 12304,
+ "id": 12445,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179218,7 +179905,7 @@
}
},
{
- "id": 12305,
+ "id": 12446,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179227,7 +179914,7 @@
}
},
{
- "id": 12306,
+ "id": 12447,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179236,7 +179923,7 @@
}
},
{
- "id": 12307,
+ "id": 12448,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179245,7 +179932,7 @@
}
},
{
- "id": 12308,
+ "id": 12449,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179254,7 +179941,7 @@
}
},
{
- "id": 12309,
+ "id": 12450,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179263,7 +179950,7 @@
}
},
{
- "id": 12310,
+ "id": 12451,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179272,7 +179959,7 @@
}
},
{
- "id": 12311,
+ "id": 12452,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179281,7 +179968,7 @@
}
},
{
- "id": 12312,
+ "id": 12453,
"properties": {
"facing": "south",
"half": "bottom",
@@ -179290,7 +179977,7 @@
}
},
{
- "id": 12313,
+ "id": 12454,
"properties": {
"facing": "west",
"half": "top",
@@ -179299,7 +179986,7 @@
}
},
{
- "id": 12314,
+ "id": 12455,
"properties": {
"facing": "west",
"half": "top",
@@ -179308,7 +179995,7 @@
}
},
{
- "id": 12315,
+ "id": 12456,
"properties": {
"facing": "west",
"half": "top",
@@ -179317,7 +180004,7 @@
}
},
{
- "id": 12316,
+ "id": 12457,
"properties": {
"facing": "west",
"half": "top",
@@ -179326,7 +180013,7 @@
}
},
{
- "id": 12317,
+ "id": 12458,
"properties": {
"facing": "west",
"half": "top",
@@ -179335,7 +180022,7 @@
}
},
{
- "id": 12318,
+ "id": 12459,
"properties": {
"facing": "west",
"half": "top",
@@ -179344,7 +180031,7 @@
}
},
{
- "id": 12319,
+ "id": 12460,
"properties": {
"facing": "west",
"half": "top",
@@ -179353,7 +180040,7 @@
}
},
{
- "id": 12320,
+ "id": 12461,
"properties": {
"facing": "west",
"half": "top",
@@ -179362,7 +180049,7 @@
}
},
{
- "id": 12321,
+ "id": 12462,
"properties": {
"facing": "west",
"half": "top",
@@ -179371,7 +180058,7 @@
}
},
{
- "id": 12322,
+ "id": 12463,
"properties": {
"facing": "west",
"half": "top",
@@ -179380,7 +180067,7 @@
}
},
{
- "id": 12323,
+ "id": 12464,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179389,7 +180076,7 @@
}
},
{
- "id": 12324,
+ "id": 12465,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179398,7 +180085,7 @@
}
},
{
- "id": 12325,
+ "id": 12466,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179407,7 +180094,7 @@
}
},
{
- "id": 12326,
+ "id": 12467,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179416,7 +180103,7 @@
}
},
{
- "id": 12327,
+ "id": 12468,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179425,7 +180112,7 @@
}
},
{
- "id": 12328,
+ "id": 12469,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179434,7 +180121,7 @@
}
},
{
- "id": 12329,
+ "id": 12470,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179443,7 +180130,7 @@
}
},
{
- "id": 12330,
+ "id": 12471,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179452,7 +180139,7 @@
}
},
{
- "id": 12331,
+ "id": 12472,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179461,7 +180148,7 @@
}
},
{
- "id": 12332,
+ "id": 12473,
"properties": {
"facing": "west",
"half": "bottom",
@@ -179470,7 +180157,7 @@
}
},
{
- "id": 12333,
+ "id": 12474,
"properties": {
"facing": "east",
"half": "top",
@@ -179479,7 +180166,7 @@
}
},
{
- "id": 12334,
+ "id": 12475,
"properties": {
"facing": "east",
"half": "top",
@@ -179488,7 +180175,7 @@
}
},
{
- "id": 12335,
+ "id": 12476,
"properties": {
"facing": "east",
"half": "top",
@@ -179497,7 +180184,7 @@
}
},
{
- "id": 12336,
+ "id": 12477,
"properties": {
"facing": "east",
"half": "top",
@@ -179506,7 +180193,7 @@
}
},
{
- "id": 12337,
+ "id": 12478,
"properties": {
"facing": "east",
"half": "top",
@@ -179515,7 +180202,7 @@
}
},
{
- "id": 12338,
+ "id": 12479,
"properties": {
"facing": "east",
"half": "top",
@@ -179524,7 +180211,7 @@
}
},
{
- "id": 12339,
+ "id": 12480,
"properties": {
"facing": "east",
"half": "top",
@@ -179533,7 +180220,7 @@
}
},
{
- "id": 12340,
+ "id": 12481,
"properties": {
"facing": "east",
"half": "top",
@@ -179542,7 +180229,7 @@
}
},
{
- "id": 12341,
+ "id": 12482,
"properties": {
"facing": "east",
"half": "top",
@@ -179551,7 +180238,7 @@
}
},
{
- "id": 12342,
+ "id": 12483,
"properties": {
"facing": "east",
"half": "top",
@@ -179560,7 +180247,7 @@
}
},
{
- "id": 12343,
+ "id": 12484,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179569,7 +180256,7 @@
}
},
{
- "id": 12344,
+ "id": 12485,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179578,7 +180265,7 @@
}
},
{
- "id": 12345,
+ "id": 12486,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179587,7 +180274,7 @@
}
},
{
- "id": 12346,
+ "id": 12487,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179596,7 +180283,7 @@
}
},
{
- "id": 12347,
+ "id": 12488,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179605,7 +180292,7 @@
}
},
{
- "id": 12348,
+ "id": 12489,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179614,7 +180301,7 @@
}
},
{
- "id": 12349,
+ "id": 12490,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179623,7 +180310,7 @@
}
},
{
- "id": 12350,
+ "id": 12491,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179632,7 +180319,7 @@
}
},
{
- "id": 12351,
+ "id": 12492,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179641,7 +180328,7 @@
}
},
{
- "id": 12352,
+ "id": 12493,
"properties": {
"facing": "east",
"half": "bottom",
@@ -179655,7 +180342,7 @@
"states": [
{
"default": true,
- "id": 9095
+ "id": 9235
}
]
},
@@ -179663,7 +180350,7 @@
"states": [
{
"default": true,
- "id": 20583
+ "id": 20724
}
]
},
@@ -179677,20 +180364,20 @@
},
"states": [
{
- "id": 9097,
+ "id": 9237,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 9098,
+ "id": 9238,
"properties": {
"axis": "y"
}
},
{
- "id": 9099,
+ "id": 9239,
"properties": {
"axis": "z"
}
@@ -179711,21 +180398,21 @@
},
"states": [
{
- "id": 11141,
+ "id": 11282,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11142,
+ "id": 11283,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11143,
+ "id": 11284,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -179733,21 +180420,21 @@
},
{
"default": true,
- "id": 11144,
+ "id": 11285,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11145,
+ "id": 11286,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11146,
+ "id": 11287,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -179781,7 +180468,7 @@
},
"states": [
{
- "id": 9100,
+ "id": 9240,
"properties": {
"facing": "north",
"half": "top",
@@ -179790,7 +180477,7 @@
}
},
{
- "id": 9101,
+ "id": 9241,
"properties": {
"facing": "north",
"half": "top",
@@ -179799,7 +180486,7 @@
}
},
{
- "id": 9102,
+ "id": 9242,
"properties": {
"facing": "north",
"half": "top",
@@ -179808,7 +180495,7 @@
}
},
{
- "id": 9103,
+ "id": 9243,
"properties": {
"facing": "north",
"half": "top",
@@ -179817,7 +180504,7 @@
}
},
{
- "id": 9104,
+ "id": 9244,
"properties": {
"facing": "north",
"half": "top",
@@ -179826,7 +180513,7 @@
}
},
{
- "id": 9105,
+ "id": 9245,
"properties": {
"facing": "north",
"half": "top",
@@ -179835,7 +180522,7 @@
}
},
{
- "id": 9106,
+ "id": 9246,
"properties": {
"facing": "north",
"half": "top",
@@ -179844,7 +180531,7 @@
}
},
{
- "id": 9107,
+ "id": 9247,
"properties": {
"facing": "north",
"half": "top",
@@ -179853,7 +180540,7 @@
}
},
{
- "id": 9108,
+ "id": 9248,
"properties": {
"facing": "north",
"half": "top",
@@ -179862,7 +180549,7 @@
}
},
{
- "id": 9109,
+ "id": 9249,
"properties": {
"facing": "north",
"half": "top",
@@ -179871,7 +180558,7 @@
}
},
{
- "id": 9110,
+ "id": 9250,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179881,7 +180568,7 @@
},
{
"default": true,
- "id": 9111,
+ "id": 9251,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179890,7 +180577,7 @@
}
},
{
- "id": 9112,
+ "id": 9252,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179899,7 +180586,7 @@
}
},
{
- "id": 9113,
+ "id": 9253,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179908,7 +180595,7 @@
}
},
{
- "id": 9114,
+ "id": 9254,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179917,7 +180604,7 @@
}
},
{
- "id": 9115,
+ "id": 9255,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179926,7 +180613,7 @@
}
},
{
- "id": 9116,
+ "id": 9256,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179935,7 +180622,7 @@
}
},
{
- "id": 9117,
+ "id": 9257,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179944,7 +180631,7 @@
}
},
{
- "id": 9118,
+ "id": 9258,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179953,7 +180640,7 @@
}
},
{
- "id": 9119,
+ "id": 9259,
"properties": {
"facing": "north",
"half": "bottom",
@@ -179962,7 +180649,7 @@
}
},
{
- "id": 9120,
+ "id": 9260,
"properties": {
"facing": "south",
"half": "top",
@@ -179971,7 +180658,7 @@
}
},
{
- "id": 9121,
+ "id": 9261,
"properties": {
"facing": "south",
"half": "top",
@@ -179980,7 +180667,7 @@
}
},
{
- "id": 9122,
+ "id": 9262,
"properties": {
"facing": "south",
"half": "top",
@@ -179989,7 +180676,7 @@
}
},
{
- "id": 9123,
+ "id": 9263,
"properties": {
"facing": "south",
"half": "top",
@@ -179998,7 +180685,7 @@
}
},
{
- "id": 9124,
+ "id": 9264,
"properties": {
"facing": "south",
"half": "top",
@@ -180007,7 +180694,7 @@
}
},
{
- "id": 9125,
+ "id": 9265,
"properties": {
"facing": "south",
"half": "top",
@@ -180016,7 +180703,7 @@
}
},
{
- "id": 9126,
+ "id": 9266,
"properties": {
"facing": "south",
"half": "top",
@@ -180025,7 +180712,7 @@
}
},
{
- "id": 9127,
+ "id": 9267,
"properties": {
"facing": "south",
"half": "top",
@@ -180034,7 +180721,7 @@
}
},
{
- "id": 9128,
+ "id": 9268,
"properties": {
"facing": "south",
"half": "top",
@@ -180043,7 +180730,7 @@
}
},
{
- "id": 9129,
+ "id": 9269,
"properties": {
"facing": "south",
"half": "top",
@@ -180052,7 +180739,7 @@
}
},
{
- "id": 9130,
+ "id": 9270,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180061,7 +180748,7 @@
}
},
{
- "id": 9131,
+ "id": 9271,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180070,7 +180757,7 @@
}
},
{
- "id": 9132,
+ "id": 9272,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180079,7 +180766,7 @@
}
},
{
- "id": 9133,
+ "id": 9273,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180088,7 +180775,7 @@
}
},
{
- "id": 9134,
+ "id": 9274,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180097,7 +180784,7 @@
}
},
{
- "id": 9135,
+ "id": 9275,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180106,7 +180793,7 @@
}
},
{
- "id": 9136,
+ "id": 9276,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180115,7 +180802,7 @@
}
},
{
- "id": 9137,
+ "id": 9277,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180124,7 +180811,7 @@
}
},
{
- "id": 9138,
+ "id": 9278,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180133,7 +180820,7 @@
}
},
{
- "id": 9139,
+ "id": 9279,
"properties": {
"facing": "south",
"half": "bottom",
@@ -180142,7 +180829,7 @@
}
},
{
- "id": 9140,
+ "id": 9280,
"properties": {
"facing": "west",
"half": "top",
@@ -180151,7 +180838,7 @@
}
},
{
- "id": 9141,
+ "id": 9281,
"properties": {
"facing": "west",
"half": "top",
@@ -180160,7 +180847,7 @@
}
},
{
- "id": 9142,
+ "id": 9282,
"properties": {
"facing": "west",
"half": "top",
@@ -180169,7 +180856,7 @@
}
},
{
- "id": 9143,
+ "id": 9283,
"properties": {
"facing": "west",
"half": "top",
@@ -180178,7 +180865,7 @@
}
},
{
- "id": 9144,
+ "id": 9284,
"properties": {
"facing": "west",
"half": "top",
@@ -180187,7 +180874,7 @@
}
},
{
- "id": 9145,
+ "id": 9285,
"properties": {
"facing": "west",
"half": "top",
@@ -180196,7 +180883,7 @@
}
},
{
- "id": 9146,
+ "id": 9286,
"properties": {
"facing": "west",
"half": "top",
@@ -180205,7 +180892,7 @@
}
},
{
- "id": 9147,
+ "id": 9287,
"properties": {
"facing": "west",
"half": "top",
@@ -180214,7 +180901,7 @@
}
},
{
- "id": 9148,
+ "id": 9288,
"properties": {
"facing": "west",
"half": "top",
@@ -180223,7 +180910,7 @@
}
},
{
- "id": 9149,
+ "id": 9289,
"properties": {
"facing": "west",
"half": "top",
@@ -180232,7 +180919,7 @@
}
},
{
- "id": 9150,
+ "id": 9290,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180241,7 +180928,7 @@
}
},
{
- "id": 9151,
+ "id": 9291,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180250,7 +180937,7 @@
}
},
{
- "id": 9152,
+ "id": 9292,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180259,7 +180946,7 @@
}
},
{
- "id": 9153,
+ "id": 9293,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180268,7 +180955,7 @@
}
},
{
- "id": 9154,
+ "id": 9294,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180277,7 +180964,7 @@
}
},
{
- "id": 9155,
+ "id": 9295,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180286,7 +180973,7 @@
}
},
{
- "id": 9156,
+ "id": 9296,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180295,7 +180982,7 @@
}
},
{
- "id": 9157,
+ "id": 9297,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180304,7 +180991,7 @@
}
},
{
- "id": 9158,
+ "id": 9298,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180313,7 +181000,7 @@
}
},
{
- "id": 9159,
+ "id": 9299,
"properties": {
"facing": "west",
"half": "bottom",
@@ -180322,7 +181009,7 @@
}
},
{
- "id": 9160,
+ "id": 9300,
"properties": {
"facing": "east",
"half": "top",
@@ -180331,7 +181018,7 @@
}
},
{
- "id": 9161,
+ "id": 9301,
"properties": {
"facing": "east",
"half": "top",
@@ -180340,7 +181027,7 @@
}
},
{
- "id": 9162,
+ "id": 9302,
"properties": {
"facing": "east",
"half": "top",
@@ -180349,7 +181036,7 @@
}
},
{
- "id": 9163,
+ "id": 9303,
"properties": {
"facing": "east",
"half": "top",
@@ -180358,7 +181045,7 @@
}
},
{
- "id": 9164,
+ "id": 9304,
"properties": {
"facing": "east",
"half": "top",
@@ -180367,7 +181054,7 @@
}
},
{
- "id": 9165,
+ "id": 9305,
"properties": {
"facing": "east",
"half": "top",
@@ -180376,7 +181063,7 @@
}
},
{
- "id": 9166,
+ "id": 9306,
"properties": {
"facing": "east",
"half": "top",
@@ -180385,7 +181072,7 @@
}
},
{
- "id": 9167,
+ "id": 9307,
"properties": {
"facing": "east",
"half": "top",
@@ -180394,7 +181081,7 @@
}
},
{
- "id": 9168,
+ "id": 9308,
"properties": {
"facing": "east",
"half": "top",
@@ -180403,7 +181090,7 @@
}
},
{
- "id": 9169,
+ "id": 9309,
"properties": {
"facing": "east",
"half": "top",
@@ -180412,7 +181099,7 @@
}
},
{
- "id": 9170,
+ "id": 9310,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180421,7 +181108,7 @@
}
},
{
- "id": 9171,
+ "id": 9311,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180430,7 +181117,7 @@
}
},
{
- "id": 9172,
+ "id": 9312,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180439,7 +181126,7 @@
}
},
{
- "id": 9173,
+ "id": 9313,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180448,7 +181135,7 @@
}
},
{
- "id": 9174,
+ "id": 9314,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180457,7 +181144,7 @@
}
},
{
- "id": 9175,
+ "id": 9315,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180466,7 +181153,7 @@
}
},
{
- "id": 9176,
+ "id": 9316,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180475,7 +181162,7 @@
}
},
{
- "id": 9177,
+ "id": 9317,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180484,7 +181171,7 @@
}
},
{
- "id": 9178,
+ "id": 9318,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180493,7 +181180,7 @@
}
},
{
- "id": 9179,
+ "id": 9319,
"properties": {
"facing": "east",
"half": "bottom",
@@ -180670,7 +181357,7 @@
"states": [
{
"default": true,
- "id": 24104
+ "id": 24245
}
]
},
@@ -180678,7 +181365,7 @@
"states": [
{
"default": true,
- "id": 24105
+ "id": 24246
}
]
},
@@ -180686,7 +181373,7 @@
"states": [
{
"default": true,
- "id": 24103
+ "id": 24244
}
]
},
@@ -180714,97 +181401,97 @@
"states": [
{
"default": true,
- "id": 10842,
+ "id": 10983,
"properties": {
"rotation": "0"
}
},
{
- "id": 10843,
+ "id": 10984,
"properties": {
"rotation": "1"
}
},
{
- "id": 10844,
+ "id": 10985,
"properties": {
"rotation": "2"
}
},
{
- "id": 10845,
+ "id": 10986,
"properties": {
"rotation": "3"
}
},
{
- "id": 10846,
+ "id": 10987,
"properties": {
"rotation": "4"
}
},
{
- "id": 10847,
+ "id": 10988,
"properties": {
"rotation": "5"
}
},
{
- "id": 10848,
+ "id": 10989,
"properties": {
"rotation": "6"
}
},
{
- "id": 10849,
+ "id": 10990,
"properties": {
"rotation": "7"
}
},
{
- "id": 10850,
+ "id": 10991,
"properties": {
"rotation": "8"
}
},
{
- "id": 10851,
+ "id": 10992,
"properties": {
"rotation": "9"
}
},
{
- "id": 10852,
+ "id": 10993,
"properties": {
"rotation": "10"
}
},
{
- "id": 10853,
+ "id": 10994,
"properties": {
"rotation": "11"
}
},
{
- "id": 10854,
+ "id": 10995,
"properties": {
"rotation": "12"
}
},
{
- "id": 10855,
+ "id": 10996,
"properties": {
"rotation": "13"
}
},
{
- "id": 10856,
+ "id": 10997,
"properties": {
"rotation": "14"
}
},
{
- "id": 10857,
+ "id": 10998,
"properties": {
"rotation": "15"
}
@@ -180979,7 +181666,7 @@
},
"states": [
{
- "id": 20824,
+ "id": 20965,
"properties": {
"candles": "1",
"lit": "true",
@@ -180987,7 +181674,7 @@
}
},
{
- "id": 20825,
+ "id": 20966,
"properties": {
"candles": "1",
"lit": "true",
@@ -180995,7 +181682,7 @@
}
},
{
- "id": 20826,
+ "id": 20967,
"properties": {
"candles": "1",
"lit": "false",
@@ -181004,7 +181691,7 @@
},
{
"default": true,
- "id": 20827,
+ "id": 20968,
"properties": {
"candles": "1",
"lit": "false",
@@ -181012,7 +181699,7 @@
}
},
{
- "id": 20828,
+ "id": 20969,
"properties": {
"candles": "2",
"lit": "true",
@@ -181020,7 +181707,7 @@
}
},
{
- "id": 20829,
+ "id": 20970,
"properties": {
"candles": "2",
"lit": "true",
@@ -181028,7 +181715,7 @@
}
},
{
- "id": 20830,
+ "id": 20971,
"properties": {
"candles": "2",
"lit": "false",
@@ -181036,7 +181723,7 @@
}
},
{
- "id": 20831,
+ "id": 20972,
"properties": {
"candles": "2",
"lit": "false",
@@ -181044,7 +181731,7 @@
}
},
{
- "id": 20832,
+ "id": 20973,
"properties": {
"candles": "3",
"lit": "true",
@@ -181052,7 +181739,7 @@
}
},
{
- "id": 20833,
+ "id": 20974,
"properties": {
"candles": "3",
"lit": "true",
@@ -181060,7 +181747,7 @@
}
},
{
- "id": 20834,
+ "id": 20975,
"properties": {
"candles": "3",
"lit": "false",
@@ -181068,7 +181755,7 @@
}
},
{
- "id": 20835,
+ "id": 20976,
"properties": {
"candles": "3",
"lit": "false",
@@ -181076,7 +181763,7 @@
}
},
{
- "id": 20836,
+ "id": 20977,
"properties": {
"candles": "4",
"lit": "true",
@@ -181084,7 +181771,7 @@
}
},
{
- "id": 20837,
+ "id": 20978,
"properties": {
"candles": "4",
"lit": "true",
@@ -181092,7 +181779,7 @@
}
},
{
- "id": 20838,
+ "id": 20979,
"properties": {
"candles": "4",
"lit": "false",
@@ -181100,7 +181787,7 @@
}
},
{
- "id": 20839,
+ "id": 20980,
"properties": {
"candles": "4",
"lit": "false",
@@ -181118,14 +181805,14 @@
},
"states": [
{
- "id": 20886,
+ "id": 21027,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20887,
+ "id": 21028,
"properties": {
"lit": "false"
}
@@ -181136,7 +181823,7 @@
"states": [
{
"default": true,
- "id": 10601
+ "id": 10742
}
]
},
@@ -181144,7 +181831,7 @@
"states": [
{
"default": true,
- "id": 12601
+ "id": 12742
}
]
},
@@ -181152,7 +181839,7 @@
"states": [
{
"default": true,
- "id": 12617
+ "id": 12758
}
]
},
@@ -181168,25 +181855,25 @@
"states": [
{
"default": true,
- "id": 12579,
+ "id": 12720,
"properties": {
"facing": "north"
}
},
{
- "id": 12580,
+ "id": 12721,
"properties": {
"facing": "south"
}
},
{
- "id": 12581,
+ "id": 12722,
"properties": {
"facing": "west"
}
},
{
- "id": 12582,
+ "id": 12723,
"properties": {
"facing": "east"
}
@@ -181950,21 +182637,21 @@
},
"states": [
{
- "id": 14001,
+ "id": 14142,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 14002,
+ "id": 14143,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 14003,
+ "id": 14144,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -181972,21 +182659,21 @@
},
{
"default": true,
- "id": 14004,
+ "id": 14145,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 14005,
+ "id": 14146,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 14006,
+ "id": 14147,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -182020,7 +182707,7 @@
},
"states": [
{
- "id": 13701,
+ "id": 13842,
"properties": {
"facing": "north",
"half": "top",
@@ -182029,7 +182716,7 @@
}
},
{
- "id": 13702,
+ "id": 13843,
"properties": {
"facing": "north",
"half": "top",
@@ -182038,7 +182725,7 @@
}
},
{
- "id": 13703,
+ "id": 13844,
"properties": {
"facing": "north",
"half": "top",
@@ -182047,7 +182734,7 @@
}
},
{
- "id": 13704,
+ "id": 13845,
"properties": {
"facing": "north",
"half": "top",
@@ -182056,7 +182743,7 @@
}
},
{
- "id": 13705,
+ "id": 13846,
"properties": {
"facing": "north",
"half": "top",
@@ -182065,7 +182752,7 @@
}
},
{
- "id": 13706,
+ "id": 13847,
"properties": {
"facing": "north",
"half": "top",
@@ -182074,7 +182761,7 @@
}
},
{
- "id": 13707,
+ "id": 13848,
"properties": {
"facing": "north",
"half": "top",
@@ -182083,7 +182770,7 @@
}
},
{
- "id": 13708,
+ "id": 13849,
"properties": {
"facing": "north",
"half": "top",
@@ -182092,7 +182779,7 @@
}
},
{
- "id": 13709,
+ "id": 13850,
"properties": {
"facing": "north",
"half": "top",
@@ -182101,7 +182788,7 @@
}
},
{
- "id": 13710,
+ "id": 13851,
"properties": {
"facing": "north",
"half": "top",
@@ -182110,7 +182797,7 @@
}
},
{
- "id": 13711,
+ "id": 13852,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182120,7 +182807,7 @@
},
{
"default": true,
- "id": 13712,
+ "id": 13853,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182129,7 +182816,7 @@
}
},
{
- "id": 13713,
+ "id": 13854,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182138,7 +182825,7 @@
}
},
{
- "id": 13714,
+ "id": 13855,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182147,7 +182834,7 @@
}
},
{
- "id": 13715,
+ "id": 13856,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182156,7 +182843,7 @@
}
},
{
- "id": 13716,
+ "id": 13857,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182165,7 +182852,7 @@
}
},
{
- "id": 13717,
+ "id": 13858,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182174,7 +182861,7 @@
}
},
{
- "id": 13718,
+ "id": 13859,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182183,7 +182870,7 @@
}
},
{
- "id": 13719,
+ "id": 13860,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182192,7 +182879,7 @@
}
},
{
- "id": 13720,
+ "id": 13861,
"properties": {
"facing": "north",
"half": "bottom",
@@ -182201,7 +182888,7 @@
}
},
{
- "id": 13721,
+ "id": 13862,
"properties": {
"facing": "south",
"half": "top",
@@ -182210,7 +182897,7 @@
}
},
{
- "id": 13722,
+ "id": 13863,
"properties": {
"facing": "south",
"half": "top",
@@ -182219,7 +182906,7 @@
}
},
{
- "id": 13723,
+ "id": 13864,
"properties": {
"facing": "south",
"half": "top",
@@ -182228,7 +182915,7 @@
}
},
{
- "id": 13724,
+ "id": 13865,
"properties": {
"facing": "south",
"half": "top",
@@ -182237,7 +182924,7 @@
}
},
{
- "id": 13725,
+ "id": 13866,
"properties": {
"facing": "south",
"half": "top",
@@ -182246,7 +182933,7 @@
}
},
{
- "id": 13726,
+ "id": 13867,
"properties": {
"facing": "south",
"half": "top",
@@ -182255,7 +182942,7 @@
}
},
{
- "id": 13727,
+ "id": 13868,
"properties": {
"facing": "south",
"half": "top",
@@ -182264,7 +182951,7 @@
}
},
{
- "id": 13728,
+ "id": 13869,
"properties": {
"facing": "south",
"half": "top",
@@ -182273,7 +182960,7 @@
}
},
{
- "id": 13729,
+ "id": 13870,
"properties": {
"facing": "south",
"half": "top",
@@ -182282,7 +182969,7 @@
}
},
{
- "id": 13730,
+ "id": 13871,
"properties": {
"facing": "south",
"half": "top",
@@ -182291,7 +182978,7 @@
}
},
{
- "id": 13731,
+ "id": 13872,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182300,7 +182987,7 @@
}
},
{
- "id": 13732,
+ "id": 13873,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182309,7 +182996,7 @@
}
},
{
- "id": 13733,
+ "id": 13874,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182318,7 +183005,7 @@
}
},
{
- "id": 13734,
+ "id": 13875,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182327,7 +183014,7 @@
}
},
{
- "id": 13735,
+ "id": 13876,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182336,7 +183023,7 @@
}
},
{
- "id": 13736,
+ "id": 13877,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182345,7 +183032,7 @@
}
},
{
- "id": 13737,
+ "id": 13878,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182354,7 +183041,7 @@
}
},
{
- "id": 13738,
+ "id": 13879,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182363,7 +183050,7 @@
}
},
{
- "id": 13739,
+ "id": 13880,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182372,7 +183059,7 @@
}
},
{
- "id": 13740,
+ "id": 13881,
"properties": {
"facing": "south",
"half": "bottom",
@@ -182381,7 +183068,7 @@
}
},
{
- "id": 13741,
+ "id": 13882,
"properties": {
"facing": "west",
"half": "top",
@@ -182390,7 +183077,7 @@
}
},
{
- "id": 13742,
+ "id": 13883,
"properties": {
"facing": "west",
"half": "top",
@@ -182399,7 +183086,7 @@
}
},
{
- "id": 13743,
+ "id": 13884,
"properties": {
"facing": "west",
"half": "top",
@@ -182408,7 +183095,7 @@
}
},
{
- "id": 13744,
+ "id": 13885,
"properties": {
"facing": "west",
"half": "top",
@@ -182417,7 +183104,7 @@
}
},
{
- "id": 13745,
+ "id": 13886,
"properties": {
"facing": "west",
"half": "top",
@@ -182426,7 +183113,7 @@
}
},
{
- "id": 13746,
+ "id": 13887,
"properties": {
"facing": "west",
"half": "top",
@@ -182435,7 +183122,7 @@
}
},
{
- "id": 13747,
+ "id": 13888,
"properties": {
"facing": "west",
"half": "top",
@@ -182444,7 +183131,7 @@
}
},
{
- "id": 13748,
+ "id": 13889,
"properties": {
"facing": "west",
"half": "top",
@@ -182453,7 +183140,7 @@
}
},
{
- "id": 13749,
+ "id": 13890,
"properties": {
"facing": "west",
"half": "top",
@@ -182462,7 +183149,7 @@
}
},
{
- "id": 13750,
+ "id": 13891,
"properties": {
"facing": "west",
"half": "top",
@@ -182471,7 +183158,7 @@
}
},
{
- "id": 13751,
+ "id": 13892,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182480,7 +183167,7 @@
}
},
{
- "id": 13752,
+ "id": 13893,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182489,7 +183176,7 @@
}
},
{
- "id": 13753,
+ "id": 13894,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182498,7 +183185,7 @@
}
},
{
- "id": 13754,
+ "id": 13895,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182507,7 +183194,7 @@
}
},
{
- "id": 13755,
+ "id": 13896,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182516,7 +183203,7 @@
}
},
{
- "id": 13756,
+ "id": 13897,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182525,7 +183212,7 @@
}
},
{
- "id": 13757,
+ "id": 13898,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182534,7 +183221,7 @@
}
},
{
- "id": 13758,
+ "id": 13899,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182543,7 +183230,7 @@
}
},
{
- "id": 13759,
+ "id": 13900,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182552,7 +183239,7 @@
}
},
{
- "id": 13760,
+ "id": 13901,
"properties": {
"facing": "west",
"half": "bottom",
@@ -182561,7 +183248,7 @@
}
},
{
- "id": 13761,
+ "id": 13902,
"properties": {
"facing": "east",
"half": "top",
@@ -182570,7 +183257,7 @@
}
},
{
- "id": 13762,
+ "id": 13903,
"properties": {
"facing": "east",
"half": "top",
@@ -182579,7 +183266,7 @@
}
},
{
- "id": 13763,
+ "id": 13904,
"properties": {
"facing": "east",
"half": "top",
@@ -182588,7 +183275,7 @@
}
},
{
- "id": 13764,
+ "id": 13905,
"properties": {
"facing": "east",
"half": "top",
@@ -182597,7 +183284,7 @@
}
},
{
- "id": 13765,
+ "id": 13906,
"properties": {
"facing": "east",
"half": "top",
@@ -182606,7 +183293,7 @@
}
},
{
- "id": 13766,
+ "id": 13907,
"properties": {
"facing": "east",
"half": "top",
@@ -182615,7 +183302,7 @@
}
},
{
- "id": 13767,
+ "id": 13908,
"properties": {
"facing": "east",
"half": "top",
@@ -182624,7 +183311,7 @@
}
},
{
- "id": 13768,
+ "id": 13909,
"properties": {
"facing": "east",
"half": "top",
@@ -182633,7 +183320,7 @@
}
},
{
- "id": 13769,
+ "id": 13910,
"properties": {
"facing": "east",
"half": "top",
@@ -182642,7 +183329,7 @@
}
},
{
- "id": 13770,
+ "id": 13911,
"properties": {
"facing": "east",
"half": "top",
@@ -182651,7 +183338,7 @@
}
},
{
- "id": 13771,
+ "id": 13912,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182660,7 +183347,7 @@
}
},
{
- "id": 13772,
+ "id": 13913,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182669,7 +183356,7 @@
}
},
{
- "id": 13773,
+ "id": 13914,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182678,7 +183365,7 @@
}
},
{
- "id": 13774,
+ "id": 13915,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182687,7 +183374,7 @@
}
},
{
- "id": 13775,
+ "id": 13916,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182696,7 +183383,7 @@
}
},
{
- "id": 13776,
+ "id": 13917,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182705,7 +183392,7 @@
}
},
{
- "id": 13777,
+ "id": 13918,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182714,7 +183401,7 @@
}
},
{
- "id": 13778,
+ "id": 13919,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182723,7 +183410,7 @@
}
},
{
- "id": 13779,
+ "id": 13920,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182732,7 +183419,7 @@
}
},
{
- "id": 13780,
+ "id": 13921,
"properties": {
"facing": "east",
"half": "bottom",
@@ -182775,7 +183462,7 @@
},
"states": [
{
- "id": 16935,
+ "id": 17076,
"properties": {
"east": "none",
"north": "none",
@@ -182786,7 +183473,7 @@
}
},
{
- "id": 16936,
+ "id": 17077,
"properties": {
"east": "none",
"north": "none",
@@ -182797,7 +183484,7 @@
}
},
{
- "id": 16937,
+ "id": 17078,
"properties": {
"east": "none",
"north": "none",
@@ -182809,2339 +183496,2339 @@
},
{
"default": true,
- "id": 16938,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16939,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16940,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16941,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16942,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16943,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16944,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16945,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16946,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16947,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16948,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16949,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16950,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16951,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16952,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16953,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16954,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16955,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16956,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16957,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16958,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16959,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16960,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16961,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16962,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16963,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16964,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16965,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16966,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16967,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16968,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16969,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16970,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16971,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16972,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16973,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16974,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16975,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16976,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16977,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16978,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16979,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16980,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16981,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16982,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16983,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16984,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16985,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16986,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16987,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16988,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16989,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16990,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16991,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16992,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16993,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 16994,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 16995,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 16996,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 16997,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 16998,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 16999,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17000,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17001,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17002,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17003,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17004,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17005,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17006,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17007,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17008,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17009,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17010,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17011,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17012,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17013,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17014,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17015,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17016,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17017,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17018,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17019,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17020,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17021,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17022,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17023,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17024,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17025,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17026,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17027,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17028,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17029,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17030,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17031,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17032,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17033,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17034,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17035,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17036,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17037,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17038,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17039,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17040,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17041,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17042,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17043,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17044,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17045,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17046,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17047,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17048,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17049,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17050,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17051,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17052,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17053,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17054,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17055,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17056,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17057,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17058,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17059,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17060,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17061,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17062,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17063,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17064,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17065,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17066,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17067,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17068,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17069,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17070,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17071,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17072,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17073,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17074,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17075,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17076,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17077,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17078,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 17079,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17080,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17081,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17082,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17083,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17084,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17085,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17086,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17087,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17088,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17089,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17090,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17091,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17092,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17093,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17094,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17095,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17096,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17097,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17098,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17099,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17100,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17101,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17102,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17103,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17104,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17105,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17106,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17107,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17108,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17109,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17110,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17111,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17112,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17113,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17114,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17115,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17116,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17117,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17118,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17119,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17120,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17121,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17122,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17123,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17124,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17125,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17126,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17127,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17128,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17129,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17130,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17131,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17132,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17133,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17134,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17135,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17136,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17137,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17138,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17139,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17140,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17141,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17142,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17143,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17144,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17145,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17146,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17147,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17148,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17149,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17150,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17151,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17152,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17153,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17154,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17155,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17156,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17157,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17158,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17159,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17160,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17161,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17162,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17163,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17164,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17165,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17166,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17167,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17168,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17169,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17170,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17171,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17172,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17173,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17174,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17175,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17176,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17177,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17178,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17179,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17180,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17181,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17182,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17183,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17184,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17185,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17186,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17187,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17188,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17189,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17190,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17191,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17192,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17193,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17194,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17195,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17196,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17197,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17198,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17199,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17200,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17201,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17202,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17203,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17204,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17205,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17206,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17207,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17208,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17209,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17210,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17211,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17212,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17213,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17214,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17215,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17216,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17217,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17218,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17219,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17220,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17221,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17222,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17223,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17224,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17225,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17226,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17227,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17228,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17229,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17230,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17231,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17232,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17233,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17234,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17235,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17236,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17237,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17238,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17239,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17240,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17241,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17242,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17243,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17244,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17245,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17246,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17247,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17248,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17249,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17250,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17251,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17252,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17253,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17254,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17255,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17256,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17257,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17258,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17259,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17260,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17261,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17262,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17263,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17264,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17265,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17266,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17267,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17268,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17269,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17270,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17271,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17272,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17273,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17274,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17275,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17276,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17277,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17278,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17279,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17280,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17281,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17282,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17283,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17284,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17285,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17286,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17287,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17288,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17289,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17290,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17291,
"properties": {
"east": "low",
"north": "tall",
@@ -185152,7 +185839,7 @@
}
},
{
- "id": 17151,
+ "id": 17292,
"properties": {
"east": "tall",
"north": "none",
@@ -185163,7 +185850,7 @@
}
},
{
- "id": 17152,
+ "id": 17293,
"properties": {
"east": "tall",
"north": "none",
@@ -185174,7 +185861,7 @@
}
},
{
- "id": 17153,
+ "id": 17294,
"properties": {
"east": "tall",
"north": "none",
@@ -185185,7 +185872,7 @@
}
},
{
- "id": 17154,
+ "id": 17295,
"properties": {
"east": "tall",
"north": "none",
@@ -185196,7 +185883,7 @@
}
},
{
- "id": 17155,
+ "id": 17296,
"properties": {
"east": "tall",
"north": "none",
@@ -185207,7 +185894,7 @@
}
},
{
- "id": 17156,
+ "id": 17297,
"properties": {
"east": "tall",
"north": "none",
@@ -185218,7 +185905,7 @@
}
},
{
- "id": 17157,
+ "id": 17298,
"properties": {
"east": "tall",
"north": "none",
@@ -185229,7 +185916,7 @@
}
},
{
- "id": 17158,
+ "id": 17299,
"properties": {
"east": "tall",
"north": "none",
@@ -185240,7 +185927,7 @@
}
},
{
- "id": 17159,
+ "id": 17300,
"properties": {
"east": "tall",
"north": "none",
@@ -185251,7 +185938,7 @@
}
},
{
- "id": 17160,
+ "id": 17301,
"properties": {
"east": "tall",
"north": "none",
@@ -185262,7 +185949,7 @@
}
},
{
- "id": 17161,
+ "id": 17302,
"properties": {
"east": "tall",
"north": "none",
@@ -185273,7 +185960,7 @@
}
},
{
- "id": 17162,
+ "id": 17303,
"properties": {
"east": "tall",
"north": "none",
@@ -185284,7 +185971,7 @@
}
},
{
- "id": 17163,
+ "id": 17304,
"properties": {
"east": "tall",
"north": "none",
@@ -185295,7 +185982,7 @@
}
},
{
- "id": 17164,
+ "id": 17305,
"properties": {
"east": "tall",
"north": "none",
@@ -185306,7 +185993,7 @@
}
},
{
- "id": 17165,
+ "id": 17306,
"properties": {
"east": "tall",
"north": "none",
@@ -185317,7 +186004,7 @@
}
},
{
- "id": 17166,
+ "id": 17307,
"properties": {
"east": "tall",
"north": "none",
@@ -185328,7 +186015,7 @@
}
},
{
- "id": 17167,
+ "id": 17308,
"properties": {
"east": "tall",
"north": "none",
@@ -185339,7 +186026,7 @@
}
},
{
- "id": 17168,
+ "id": 17309,
"properties": {
"east": "tall",
"north": "none",
@@ -185350,7 +186037,7 @@
}
},
{
- "id": 17169,
+ "id": 17310,
"properties": {
"east": "tall",
"north": "none",
@@ -185361,7 +186048,7 @@
}
},
{
- "id": 17170,
+ "id": 17311,
"properties": {
"east": "tall",
"north": "none",
@@ -185372,7 +186059,7 @@
}
},
{
- "id": 17171,
+ "id": 17312,
"properties": {
"east": "tall",
"north": "none",
@@ -185383,7 +186070,7 @@
}
},
{
- "id": 17172,
+ "id": 17313,
"properties": {
"east": "tall",
"north": "none",
@@ -185394,7 +186081,7 @@
}
},
{
- "id": 17173,
+ "id": 17314,
"properties": {
"east": "tall",
"north": "none",
@@ -185405,7 +186092,7 @@
}
},
{
- "id": 17174,
+ "id": 17315,
"properties": {
"east": "tall",
"north": "none",
@@ -185416,7 +186103,7 @@
}
},
{
- "id": 17175,
+ "id": 17316,
"properties": {
"east": "tall",
"north": "none",
@@ -185427,7 +186114,7 @@
}
},
{
- "id": 17176,
+ "id": 17317,
"properties": {
"east": "tall",
"north": "none",
@@ -185438,7 +186125,7 @@
}
},
{
- "id": 17177,
+ "id": 17318,
"properties": {
"east": "tall",
"north": "none",
@@ -185449,7 +186136,7 @@
}
},
{
- "id": 17178,
+ "id": 17319,
"properties": {
"east": "tall",
"north": "none",
@@ -185460,7 +186147,7 @@
}
},
{
- "id": 17179,
+ "id": 17320,
"properties": {
"east": "tall",
"north": "none",
@@ -185471,7 +186158,7 @@
}
},
{
- "id": 17180,
+ "id": 17321,
"properties": {
"east": "tall",
"north": "none",
@@ -185482,7 +186169,7 @@
}
},
{
- "id": 17181,
+ "id": 17322,
"properties": {
"east": "tall",
"north": "none",
@@ -185493,7 +186180,7 @@
}
},
{
- "id": 17182,
+ "id": 17323,
"properties": {
"east": "tall",
"north": "none",
@@ -185504,7 +186191,7 @@
}
},
{
- "id": 17183,
+ "id": 17324,
"properties": {
"east": "tall",
"north": "none",
@@ -185515,7 +186202,7 @@
}
},
{
- "id": 17184,
+ "id": 17325,
"properties": {
"east": "tall",
"north": "none",
@@ -185526,7 +186213,7 @@
}
},
{
- "id": 17185,
+ "id": 17326,
"properties": {
"east": "tall",
"north": "none",
@@ -185537,7 +186224,7 @@
}
},
{
- "id": 17186,
+ "id": 17327,
"properties": {
"east": "tall",
"north": "none",
@@ -185548,7 +186235,7 @@
}
},
{
- "id": 17187,
+ "id": 17328,
"properties": {
"east": "tall",
"north": "low",
@@ -185559,7 +186246,7 @@
}
},
{
- "id": 17188,
+ "id": 17329,
"properties": {
"east": "tall",
"north": "low",
@@ -185570,7 +186257,7 @@
}
},
{
- "id": 17189,
+ "id": 17330,
"properties": {
"east": "tall",
"north": "low",
@@ -185581,7 +186268,7 @@
}
},
{
- "id": 17190,
+ "id": 17331,
"properties": {
"east": "tall",
"north": "low",
@@ -185592,7 +186279,7 @@
}
},
{
- "id": 17191,
+ "id": 17332,
"properties": {
"east": "tall",
"north": "low",
@@ -185603,7 +186290,7 @@
}
},
{
- "id": 17192,
+ "id": 17333,
"properties": {
"east": "tall",
"north": "low",
@@ -185614,7 +186301,7 @@
}
},
{
- "id": 17193,
+ "id": 17334,
"properties": {
"east": "tall",
"north": "low",
@@ -185625,7 +186312,7 @@
}
},
{
- "id": 17194,
+ "id": 17335,
"properties": {
"east": "tall",
"north": "low",
@@ -185636,7 +186323,7 @@
}
},
{
- "id": 17195,
+ "id": 17336,
"properties": {
"east": "tall",
"north": "low",
@@ -185647,7 +186334,7 @@
}
},
{
- "id": 17196,
+ "id": 17337,
"properties": {
"east": "tall",
"north": "low",
@@ -185658,7 +186345,7 @@
}
},
{
- "id": 17197,
+ "id": 17338,
"properties": {
"east": "tall",
"north": "low",
@@ -185669,7 +186356,7 @@
}
},
{
- "id": 17198,
+ "id": 17339,
"properties": {
"east": "tall",
"north": "low",
@@ -185680,7 +186367,7 @@
}
},
{
- "id": 17199,
+ "id": 17340,
"properties": {
"east": "tall",
"north": "low",
@@ -185691,7 +186378,7 @@
}
},
{
- "id": 17200,
+ "id": 17341,
"properties": {
"east": "tall",
"north": "low",
@@ -185702,7 +186389,7 @@
}
},
{
- "id": 17201,
+ "id": 17342,
"properties": {
"east": "tall",
"north": "low",
@@ -185713,7 +186400,7 @@
}
},
{
- "id": 17202,
+ "id": 17343,
"properties": {
"east": "tall",
"north": "low",
@@ -185724,7 +186411,7 @@
}
},
{
- "id": 17203,
+ "id": 17344,
"properties": {
"east": "tall",
"north": "low",
@@ -185735,7 +186422,7 @@
}
},
{
- "id": 17204,
+ "id": 17345,
"properties": {
"east": "tall",
"north": "low",
@@ -185746,7 +186433,7 @@
}
},
{
- "id": 17205,
+ "id": 17346,
"properties": {
"east": "tall",
"north": "low",
@@ -185757,7 +186444,7 @@
}
},
{
- "id": 17206,
+ "id": 17347,
"properties": {
"east": "tall",
"north": "low",
@@ -185768,7 +186455,7 @@
}
},
{
- "id": 17207,
+ "id": 17348,
"properties": {
"east": "tall",
"north": "low",
@@ -185779,7 +186466,7 @@
}
},
{
- "id": 17208,
+ "id": 17349,
"properties": {
"east": "tall",
"north": "low",
@@ -185790,7 +186477,7 @@
}
},
{
- "id": 17209,
+ "id": 17350,
"properties": {
"east": "tall",
"north": "low",
@@ -185801,7 +186488,7 @@
}
},
{
- "id": 17210,
+ "id": 17351,
"properties": {
"east": "tall",
"north": "low",
@@ -185812,7 +186499,7 @@
}
},
{
- "id": 17211,
+ "id": 17352,
"properties": {
"east": "tall",
"north": "low",
@@ -185823,7 +186510,7 @@
}
},
{
- "id": 17212,
+ "id": 17353,
"properties": {
"east": "tall",
"north": "low",
@@ -185834,7 +186521,7 @@
}
},
{
- "id": 17213,
+ "id": 17354,
"properties": {
"east": "tall",
"north": "low",
@@ -185845,7 +186532,7 @@
}
},
{
- "id": 17214,
+ "id": 17355,
"properties": {
"east": "tall",
"north": "low",
@@ -185856,7 +186543,7 @@
}
},
{
- "id": 17215,
+ "id": 17356,
"properties": {
"east": "tall",
"north": "low",
@@ -185867,7 +186554,7 @@
}
},
{
- "id": 17216,
+ "id": 17357,
"properties": {
"east": "tall",
"north": "low",
@@ -185878,7 +186565,7 @@
}
},
{
- "id": 17217,
+ "id": 17358,
"properties": {
"east": "tall",
"north": "low",
@@ -185889,7 +186576,7 @@
}
},
{
- "id": 17218,
+ "id": 17359,
"properties": {
"east": "tall",
"north": "low",
@@ -185900,7 +186587,7 @@
}
},
{
- "id": 17219,
+ "id": 17360,
"properties": {
"east": "tall",
"north": "low",
@@ -185911,7 +186598,7 @@
}
},
{
- "id": 17220,
+ "id": 17361,
"properties": {
"east": "tall",
"north": "low",
@@ -185922,7 +186609,7 @@
}
},
{
- "id": 17221,
+ "id": 17362,
"properties": {
"east": "tall",
"north": "low",
@@ -185933,7 +186620,7 @@
}
},
{
- "id": 17222,
+ "id": 17363,
"properties": {
"east": "tall",
"north": "low",
@@ -185944,7 +186631,7 @@
}
},
{
- "id": 17223,
+ "id": 17364,
"properties": {
"east": "tall",
"north": "tall",
@@ -185955,7 +186642,7 @@
}
},
{
- "id": 17224,
+ "id": 17365,
"properties": {
"east": "tall",
"north": "tall",
@@ -185966,7 +186653,7 @@
}
},
{
- "id": 17225,
+ "id": 17366,
"properties": {
"east": "tall",
"north": "tall",
@@ -185977,7 +186664,7 @@
}
},
{
- "id": 17226,
+ "id": 17367,
"properties": {
"east": "tall",
"north": "tall",
@@ -185988,7 +186675,7 @@
}
},
{
- "id": 17227,
+ "id": 17368,
"properties": {
"east": "tall",
"north": "tall",
@@ -185999,7 +186686,7 @@
}
},
{
- "id": 17228,
+ "id": 17369,
"properties": {
"east": "tall",
"north": "tall",
@@ -186010,7 +186697,7 @@
}
},
{
- "id": 17229,
+ "id": 17370,
"properties": {
"east": "tall",
"north": "tall",
@@ -186021,7 +186708,7 @@
}
},
{
- "id": 17230,
+ "id": 17371,
"properties": {
"east": "tall",
"north": "tall",
@@ -186032,7 +186719,7 @@
}
},
{
- "id": 17231,
+ "id": 17372,
"properties": {
"east": "tall",
"north": "tall",
@@ -186043,7 +186730,7 @@
}
},
{
- "id": 17232,
+ "id": 17373,
"properties": {
"east": "tall",
"north": "tall",
@@ -186054,7 +186741,7 @@
}
},
{
- "id": 17233,
+ "id": 17374,
"properties": {
"east": "tall",
"north": "tall",
@@ -186065,7 +186752,7 @@
}
},
{
- "id": 17234,
+ "id": 17375,
"properties": {
"east": "tall",
"north": "tall",
@@ -186076,7 +186763,7 @@
}
},
{
- "id": 17235,
+ "id": 17376,
"properties": {
"east": "tall",
"north": "tall",
@@ -186087,7 +186774,7 @@
}
},
{
- "id": 17236,
+ "id": 17377,
"properties": {
"east": "tall",
"north": "tall",
@@ -186098,7 +186785,7 @@
}
},
{
- "id": 17237,
+ "id": 17378,
"properties": {
"east": "tall",
"north": "tall",
@@ -186109,7 +186796,7 @@
}
},
{
- "id": 17238,
+ "id": 17379,
"properties": {
"east": "tall",
"north": "tall",
@@ -186120,7 +186807,7 @@
}
},
{
- "id": 17239,
+ "id": 17380,
"properties": {
"east": "tall",
"north": "tall",
@@ -186131,7 +186818,7 @@
}
},
{
- "id": 17240,
+ "id": 17381,
"properties": {
"east": "tall",
"north": "tall",
@@ -186142,7 +186829,7 @@
}
},
{
- "id": 17241,
+ "id": 17382,
"properties": {
"east": "tall",
"north": "tall",
@@ -186153,7 +186840,7 @@
}
},
{
- "id": 17242,
+ "id": 17383,
"properties": {
"east": "tall",
"north": "tall",
@@ -186164,7 +186851,7 @@
}
},
{
- "id": 17243,
+ "id": 17384,
"properties": {
"east": "tall",
"north": "tall",
@@ -186175,7 +186862,7 @@
}
},
{
- "id": 17244,
+ "id": 17385,
"properties": {
"east": "tall",
"north": "tall",
@@ -186186,7 +186873,7 @@
}
},
{
- "id": 17245,
+ "id": 17386,
"properties": {
"east": "tall",
"north": "tall",
@@ -186197,7 +186884,7 @@
}
},
{
- "id": 17246,
+ "id": 17387,
"properties": {
"east": "tall",
"north": "tall",
@@ -186208,7 +186895,7 @@
}
},
{
- "id": 17247,
+ "id": 17388,
"properties": {
"east": "tall",
"north": "tall",
@@ -186219,7 +186906,7 @@
}
},
{
- "id": 17248,
+ "id": 17389,
"properties": {
"east": "tall",
"north": "tall",
@@ -186230,7 +186917,7 @@
}
},
{
- "id": 17249,
+ "id": 17390,
"properties": {
"east": "tall",
"north": "tall",
@@ -186241,7 +186928,7 @@
}
},
{
- "id": 17250,
+ "id": 17391,
"properties": {
"east": "tall",
"north": "tall",
@@ -186252,7 +186939,7 @@
}
},
{
- "id": 17251,
+ "id": 17392,
"properties": {
"east": "tall",
"north": "tall",
@@ -186263,7 +186950,7 @@
}
},
{
- "id": 17252,
+ "id": 17393,
"properties": {
"east": "tall",
"north": "tall",
@@ -186274,7 +186961,7 @@
}
},
{
- "id": 17253,
+ "id": 17394,
"properties": {
"east": "tall",
"north": "tall",
@@ -186285,7 +186972,7 @@
}
},
{
- "id": 17254,
+ "id": 17395,
"properties": {
"east": "tall",
"north": "tall",
@@ -186296,7 +186983,7 @@
}
},
{
- "id": 17255,
+ "id": 17396,
"properties": {
"east": "tall",
"north": "tall",
@@ -186307,7 +186994,7 @@
}
},
{
- "id": 17256,
+ "id": 17397,
"properties": {
"east": "tall",
"north": "tall",
@@ -186318,7 +187005,7 @@
}
},
{
- "id": 17257,
+ "id": 17398,
"properties": {
"east": "tall",
"north": "tall",
@@ -186329,7 +187016,7 @@
}
},
{
- "id": 17258,
+ "id": 17399,
"properties": {
"east": "tall",
"north": "tall",
@@ -186345,7 +187032,7 @@
"states": [
{
"default": true,
- "id": 12404
+ "id": 12545
}
]
},
@@ -186361,7 +187048,7 @@
"states": [
{
"default": true,
- "id": 10938
+ "id": 11079
}
]
},
@@ -186379,21 +187066,21 @@
},
"states": [
{
- "id": 11147,
+ "id": 11288,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11148,
+ "id": 11289,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11149,
+ "id": 11290,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -186401,21 +187088,21 @@
},
{
"default": true,
- "id": 11150,
+ "id": 11291,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11151,
+ "id": 11292,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11152,
+ "id": 11293,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -186449,7 +187136,7 @@
},
"states": [
{
- "id": 10941,
+ "id": 11082,
"properties": {
"facing": "north",
"half": "top",
@@ -186458,7 +187145,7 @@
}
},
{
- "id": 10942,
+ "id": 11083,
"properties": {
"facing": "north",
"half": "top",
@@ -186467,7 +187154,7 @@
}
},
{
- "id": 10943,
+ "id": 11084,
"properties": {
"facing": "north",
"half": "top",
@@ -186476,7 +187163,7 @@
}
},
{
- "id": 10944,
+ "id": 11085,
"properties": {
"facing": "north",
"half": "top",
@@ -186485,7 +187172,7 @@
}
},
{
- "id": 10945,
+ "id": 11086,
"properties": {
"facing": "north",
"half": "top",
@@ -186494,7 +187181,7 @@
}
},
{
- "id": 10946,
+ "id": 11087,
"properties": {
"facing": "north",
"half": "top",
@@ -186503,7 +187190,7 @@
}
},
{
- "id": 10947,
+ "id": 11088,
"properties": {
"facing": "north",
"half": "top",
@@ -186512,7 +187199,7 @@
}
},
{
- "id": 10948,
+ "id": 11089,
"properties": {
"facing": "north",
"half": "top",
@@ -186521,7 +187208,7 @@
}
},
{
- "id": 10949,
+ "id": 11090,
"properties": {
"facing": "north",
"half": "top",
@@ -186530,7 +187217,7 @@
}
},
{
- "id": 10950,
+ "id": 11091,
"properties": {
"facing": "north",
"half": "top",
@@ -186539,7 +187226,7 @@
}
},
{
- "id": 10951,
+ "id": 11092,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186549,7 +187236,7 @@
},
{
"default": true,
- "id": 10952,
+ "id": 11093,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186558,7 +187245,7 @@
}
},
{
- "id": 10953,
+ "id": 11094,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186567,7 +187254,7 @@
}
},
{
- "id": 10954,
+ "id": 11095,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186576,7 +187263,7 @@
}
},
{
- "id": 10955,
+ "id": 11096,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186585,7 +187272,7 @@
}
},
{
- "id": 10956,
+ "id": 11097,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186594,7 +187281,7 @@
}
},
{
- "id": 10957,
+ "id": 11098,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186603,7 +187290,7 @@
}
},
{
- "id": 10958,
+ "id": 11099,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186612,7 +187299,7 @@
}
},
{
- "id": 10959,
+ "id": 11100,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186621,7 +187308,7 @@
}
},
{
- "id": 10960,
+ "id": 11101,
"properties": {
"facing": "north",
"half": "bottom",
@@ -186630,7 +187317,7 @@
}
},
{
- "id": 10961,
+ "id": 11102,
"properties": {
"facing": "south",
"half": "top",
@@ -186639,7 +187326,7 @@
}
},
{
- "id": 10962,
+ "id": 11103,
"properties": {
"facing": "south",
"half": "top",
@@ -186648,7 +187335,7 @@
}
},
{
- "id": 10963,
+ "id": 11104,
"properties": {
"facing": "south",
"half": "top",
@@ -186657,7 +187344,7 @@
}
},
{
- "id": 10964,
+ "id": 11105,
"properties": {
"facing": "south",
"half": "top",
@@ -186666,7 +187353,7 @@
}
},
{
- "id": 10965,
+ "id": 11106,
"properties": {
"facing": "south",
"half": "top",
@@ -186675,7 +187362,7 @@
}
},
{
- "id": 10966,
+ "id": 11107,
"properties": {
"facing": "south",
"half": "top",
@@ -186684,7 +187371,7 @@
}
},
{
- "id": 10967,
+ "id": 11108,
"properties": {
"facing": "south",
"half": "top",
@@ -186693,7 +187380,7 @@
}
},
{
- "id": 10968,
+ "id": 11109,
"properties": {
"facing": "south",
"half": "top",
@@ -186702,7 +187389,7 @@
}
},
{
- "id": 10969,
+ "id": 11110,
"properties": {
"facing": "south",
"half": "top",
@@ -186711,7 +187398,7 @@
}
},
{
- "id": 10970,
+ "id": 11111,
"properties": {
"facing": "south",
"half": "top",
@@ -186720,7 +187407,7 @@
}
},
{
- "id": 10971,
+ "id": 11112,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186729,7 +187416,7 @@
}
},
{
- "id": 10972,
+ "id": 11113,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186738,7 +187425,7 @@
}
},
{
- "id": 10973,
+ "id": 11114,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186747,7 +187434,7 @@
}
},
{
- "id": 10974,
+ "id": 11115,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186756,7 +187443,7 @@
}
},
{
- "id": 10975,
+ "id": 11116,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186765,7 +187452,7 @@
}
},
{
- "id": 10976,
+ "id": 11117,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186774,7 +187461,7 @@
}
},
{
- "id": 10977,
+ "id": 11118,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186783,7 +187470,7 @@
}
},
{
- "id": 10978,
+ "id": 11119,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186792,7 +187479,7 @@
}
},
{
- "id": 10979,
+ "id": 11120,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186801,7 +187488,7 @@
}
},
{
- "id": 10980,
+ "id": 11121,
"properties": {
"facing": "south",
"half": "bottom",
@@ -186810,7 +187497,7 @@
}
},
{
- "id": 10981,
+ "id": 11122,
"properties": {
"facing": "west",
"half": "top",
@@ -186819,7 +187506,7 @@
}
},
{
- "id": 10982,
+ "id": 11123,
"properties": {
"facing": "west",
"half": "top",
@@ -186828,7 +187515,7 @@
}
},
{
- "id": 10983,
+ "id": 11124,
"properties": {
"facing": "west",
"half": "top",
@@ -186837,7 +187524,7 @@
}
},
{
- "id": 10984,
+ "id": 11125,
"properties": {
"facing": "west",
"half": "top",
@@ -186846,7 +187533,7 @@
}
},
{
- "id": 10985,
+ "id": 11126,
"properties": {
"facing": "west",
"half": "top",
@@ -186855,7 +187542,7 @@
}
},
{
- "id": 10986,
+ "id": 11127,
"properties": {
"facing": "west",
"half": "top",
@@ -186864,7 +187551,7 @@
}
},
{
- "id": 10987,
+ "id": 11128,
"properties": {
"facing": "west",
"half": "top",
@@ -186873,7 +187560,7 @@
}
},
{
- "id": 10988,
+ "id": 11129,
"properties": {
"facing": "west",
"half": "top",
@@ -186882,7 +187569,7 @@
}
},
{
- "id": 10989,
+ "id": 11130,
"properties": {
"facing": "west",
"half": "top",
@@ -186891,7 +187578,7 @@
}
},
{
- "id": 10990,
+ "id": 11131,
"properties": {
"facing": "west",
"half": "top",
@@ -186900,7 +187587,7 @@
}
},
{
- "id": 10991,
+ "id": 11132,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186909,7 +187596,7 @@
}
},
{
- "id": 10992,
+ "id": 11133,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186918,7 +187605,7 @@
}
},
{
- "id": 10993,
+ "id": 11134,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186927,7 +187614,7 @@
}
},
{
- "id": 10994,
+ "id": 11135,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186936,7 +187623,7 @@
}
},
{
- "id": 10995,
+ "id": 11136,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186945,7 +187632,7 @@
}
},
{
- "id": 10996,
+ "id": 11137,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186954,7 +187641,7 @@
}
},
{
- "id": 10997,
+ "id": 11138,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186963,7 +187650,7 @@
}
},
{
- "id": 10998,
+ "id": 11139,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186972,7 +187659,7 @@
}
},
{
- "id": 10999,
+ "id": 11140,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186981,7 +187668,7 @@
}
},
{
- "id": 11000,
+ "id": 11141,
"properties": {
"facing": "west",
"half": "bottom",
@@ -186990,7 +187677,7 @@
}
},
{
- "id": 11001,
+ "id": 11142,
"properties": {
"facing": "east",
"half": "top",
@@ -186999,7 +187686,7 @@
}
},
{
- "id": 11002,
+ "id": 11143,
"properties": {
"facing": "east",
"half": "top",
@@ -187008,7 +187695,7 @@
}
},
{
- "id": 11003,
+ "id": 11144,
"properties": {
"facing": "east",
"half": "top",
@@ -187017,7 +187704,7 @@
}
},
{
- "id": 11004,
+ "id": 11145,
"properties": {
"facing": "east",
"half": "top",
@@ -187026,7 +187713,7 @@
}
},
{
- "id": 11005,
+ "id": 11146,
"properties": {
"facing": "east",
"half": "top",
@@ -187035,7 +187722,7 @@
}
},
{
- "id": 11006,
+ "id": 11147,
"properties": {
"facing": "east",
"half": "top",
@@ -187044,7 +187731,7 @@
}
},
{
- "id": 11007,
+ "id": 11148,
"properties": {
"facing": "east",
"half": "top",
@@ -187053,7 +187740,7 @@
}
},
{
- "id": 11008,
+ "id": 11149,
"properties": {
"facing": "east",
"half": "top",
@@ -187062,7 +187749,7 @@
}
},
{
- "id": 11009,
+ "id": 11150,
"properties": {
"facing": "east",
"half": "top",
@@ -187071,7 +187758,7 @@
}
},
{
- "id": 11010,
+ "id": 11151,
"properties": {
"facing": "east",
"half": "top",
@@ -187080,7 +187767,7 @@
}
},
{
- "id": 11011,
+ "id": 11152,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187089,7 +187776,7 @@
}
},
{
- "id": 11012,
+ "id": 11153,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187098,7 +187785,7 @@
}
},
{
- "id": 11013,
+ "id": 11154,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187107,7 +187794,7 @@
}
},
{
- "id": 11014,
+ "id": 11155,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187116,7 +187803,7 @@
}
},
{
- "id": 11015,
+ "id": 11156,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187125,7 +187812,7 @@
}
},
{
- "id": 11016,
+ "id": 11157,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187134,7 +187821,7 @@
}
},
{
- "id": 11017,
+ "id": 11158,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187143,7 +187830,7 @@
}
},
{
- "id": 11018,
+ "id": 11159,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187152,7 +187839,7 @@
}
},
{
- "id": 11019,
+ "id": 11160,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187161,7 +187848,7 @@
}
},
{
- "id": 11020,
+ "id": 11161,
"properties": {
"facing": "east",
"half": "bottom",
@@ -187204,7 +187891,7 @@
},
"states": [
{
- "id": 14667,
+ "id": 14808,
"properties": {
"east": "none",
"north": "none",
@@ -187215,7 +187902,7 @@
}
},
{
- "id": 14668,
+ "id": 14809,
"properties": {
"east": "none",
"north": "none",
@@ -187226,7 +187913,7 @@
}
},
{
- "id": 14669,
+ "id": 14810,
"properties": {
"east": "none",
"north": "none",
@@ -187238,2339 +187925,2339 @@
},
{
"default": true,
- "id": 14670,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14671,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14672,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14673,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14674,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14675,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14676,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14677,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14678,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14679,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14680,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14681,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14682,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14683,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14684,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14685,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14686,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14687,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14688,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14689,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14690,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14691,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14692,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14693,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14694,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14695,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14696,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14697,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14698,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14699,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14700,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14701,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14702,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14703,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14704,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14705,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14706,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14707,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14708,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14709,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14710,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14711,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14712,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14713,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14714,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14715,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14716,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14717,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14718,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14719,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14720,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14721,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14722,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14723,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14724,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14725,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14726,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14727,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14728,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14729,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14730,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14731,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14732,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14733,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14734,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14735,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14736,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14737,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14738,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14739,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14740,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14741,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14742,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14743,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14744,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14745,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14746,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14747,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14748,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14749,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14750,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14751,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14752,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14753,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14754,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14755,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14756,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14757,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14758,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14759,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14760,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14761,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14762,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14763,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14764,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14765,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14766,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14767,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14768,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14769,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14770,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14771,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14772,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14773,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14774,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14775,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14776,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14777,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14778,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14779,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14780,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14781,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14782,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14783,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14784,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14785,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14786,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14787,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14788,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14789,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14790,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14791,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14792,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14793,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14794,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14795,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14796,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14797,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14798,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14799,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14800,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14801,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14802,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14803,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14804,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 14805,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 14806,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 14807,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 14808,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 14809,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 14810,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 14811,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14812,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14813,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14814,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14815,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14816,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14817,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14818,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14819,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14820,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14821,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14822,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14823,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14824,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14825,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14826,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14827,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14828,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14829,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14830,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14831,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14832,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14833,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14834,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14835,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14836,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14837,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14838,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14839,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14840,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14841,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14842,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14843,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14844,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14845,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14846,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14847,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14848,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14849,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14850,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14851,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14852,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14853,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14854,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14855,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14856,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14857,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14858,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14859,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14860,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14861,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14862,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14863,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14864,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14865,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14866,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14867,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14868,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14869,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14870,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14871,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14872,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14873,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14874,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14875,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14876,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 14877,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 14878,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 14879,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 14880,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 14881,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 14882,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14883,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14884,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14885,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14886,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14887,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14888,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14889,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14890,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14891,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14892,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14893,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14894,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14895,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14896,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14897,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14898,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14899,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14900,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14901,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14902,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14903,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14904,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14905,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14906,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14907,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14908,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14909,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14910,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14911,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14912,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14913,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14914,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14915,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14916,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14917,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14918,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14919,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14920,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14921,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14922,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14923,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14924,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14925,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14926,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14927,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14928,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14929,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14930,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14931,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14932,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14933,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14934,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14935,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14936,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14937,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14938,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14939,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14940,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14941,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14942,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14943,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14944,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14945,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14946,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14947,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14948,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14949,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14950,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14951,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14952,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14953,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14954,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14955,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14956,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14957,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14958,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14959,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14960,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14961,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14962,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14963,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14964,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14965,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14966,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14967,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14968,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14969,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14970,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14971,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14972,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14973,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14974,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14975,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14976,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14977,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14978,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14979,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14980,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14981,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14982,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14983,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14984,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14985,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14986,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14987,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14988,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14989,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14990,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14991,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14992,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14993,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14994,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14995,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14996,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 14997,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 14998,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 14999,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15000,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15001,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15002,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15003,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15004,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15005,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15006,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15007,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15008,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15009,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15010,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15011,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15012,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15013,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15014,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15015,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15016,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15017,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15018,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15019,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15020,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15021,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15022,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15023,
"properties": {
"east": "low",
"north": "tall",
@@ -189581,7 +190268,7 @@
}
},
{
- "id": 14883,
+ "id": 15024,
"properties": {
"east": "tall",
"north": "none",
@@ -189592,7 +190279,7 @@
}
},
{
- "id": 14884,
+ "id": 15025,
"properties": {
"east": "tall",
"north": "none",
@@ -189603,7 +190290,7 @@
}
},
{
- "id": 14885,
+ "id": 15026,
"properties": {
"east": "tall",
"north": "none",
@@ -189614,7 +190301,7 @@
}
},
{
- "id": 14886,
+ "id": 15027,
"properties": {
"east": "tall",
"north": "none",
@@ -189625,7 +190312,7 @@
}
},
{
- "id": 14887,
+ "id": 15028,
"properties": {
"east": "tall",
"north": "none",
@@ -189636,7 +190323,7 @@
}
},
{
- "id": 14888,
+ "id": 15029,
"properties": {
"east": "tall",
"north": "none",
@@ -189647,7 +190334,7 @@
}
},
{
- "id": 14889,
+ "id": 15030,
"properties": {
"east": "tall",
"north": "none",
@@ -189658,7 +190345,7 @@
}
},
{
- "id": 14890,
+ "id": 15031,
"properties": {
"east": "tall",
"north": "none",
@@ -189669,7 +190356,7 @@
}
},
{
- "id": 14891,
+ "id": 15032,
"properties": {
"east": "tall",
"north": "none",
@@ -189680,7 +190367,7 @@
}
},
{
- "id": 14892,
+ "id": 15033,
"properties": {
"east": "tall",
"north": "none",
@@ -189691,7 +190378,7 @@
}
},
{
- "id": 14893,
+ "id": 15034,
"properties": {
"east": "tall",
"north": "none",
@@ -189702,7 +190389,7 @@
}
},
{
- "id": 14894,
+ "id": 15035,
"properties": {
"east": "tall",
"north": "none",
@@ -189713,7 +190400,7 @@
}
},
{
- "id": 14895,
+ "id": 15036,
"properties": {
"east": "tall",
"north": "none",
@@ -189724,7 +190411,7 @@
}
},
{
- "id": 14896,
+ "id": 15037,
"properties": {
"east": "tall",
"north": "none",
@@ -189735,7 +190422,7 @@
}
},
{
- "id": 14897,
+ "id": 15038,
"properties": {
"east": "tall",
"north": "none",
@@ -189746,7 +190433,7 @@
}
},
{
- "id": 14898,
+ "id": 15039,
"properties": {
"east": "tall",
"north": "none",
@@ -189757,7 +190444,7 @@
}
},
{
- "id": 14899,
+ "id": 15040,
"properties": {
"east": "tall",
"north": "none",
@@ -189768,7 +190455,7 @@
}
},
{
- "id": 14900,
+ "id": 15041,
"properties": {
"east": "tall",
"north": "none",
@@ -189779,7 +190466,7 @@
}
},
{
- "id": 14901,
+ "id": 15042,
"properties": {
"east": "tall",
"north": "none",
@@ -189790,7 +190477,7 @@
}
},
{
- "id": 14902,
+ "id": 15043,
"properties": {
"east": "tall",
"north": "none",
@@ -189801,7 +190488,7 @@
}
},
{
- "id": 14903,
+ "id": 15044,
"properties": {
"east": "tall",
"north": "none",
@@ -189812,7 +190499,7 @@
}
},
{
- "id": 14904,
+ "id": 15045,
"properties": {
"east": "tall",
"north": "none",
@@ -189823,7 +190510,7 @@
}
},
{
- "id": 14905,
+ "id": 15046,
"properties": {
"east": "tall",
"north": "none",
@@ -189834,7 +190521,7 @@
}
},
{
- "id": 14906,
+ "id": 15047,
"properties": {
"east": "tall",
"north": "none",
@@ -189845,7 +190532,7 @@
}
},
{
- "id": 14907,
+ "id": 15048,
"properties": {
"east": "tall",
"north": "none",
@@ -189856,7 +190543,7 @@
}
},
{
- "id": 14908,
+ "id": 15049,
"properties": {
"east": "tall",
"north": "none",
@@ -189867,7 +190554,7 @@
}
},
{
- "id": 14909,
+ "id": 15050,
"properties": {
"east": "tall",
"north": "none",
@@ -189878,7 +190565,7 @@
}
},
{
- "id": 14910,
+ "id": 15051,
"properties": {
"east": "tall",
"north": "none",
@@ -189889,7 +190576,7 @@
}
},
{
- "id": 14911,
+ "id": 15052,
"properties": {
"east": "tall",
"north": "none",
@@ -189900,7 +190587,7 @@
}
},
{
- "id": 14912,
+ "id": 15053,
"properties": {
"east": "tall",
"north": "none",
@@ -189911,7 +190598,7 @@
}
},
{
- "id": 14913,
+ "id": 15054,
"properties": {
"east": "tall",
"north": "none",
@@ -189922,7 +190609,7 @@
}
},
{
- "id": 14914,
+ "id": 15055,
"properties": {
"east": "tall",
"north": "none",
@@ -189933,7 +190620,7 @@
}
},
{
- "id": 14915,
+ "id": 15056,
"properties": {
"east": "tall",
"north": "none",
@@ -189944,7 +190631,7 @@
}
},
{
- "id": 14916,
+ "id": 15057,
"properties": {
"east": "tall",
"north": "none",
@@ -189955,7 +190642,7 @@
}
},
{
- "id": 14917,
+ "id": 15058,
"properties": {
"east": "tall",
"north": "none",
@@ -189966,7 +190653,7 @@
}
},
{
- "id": 14918,
+ "id": 15059,
"properties": {
"east": "tall",
"north": "none",
@@ -189977,7 +190664,7 @@
}
},
{
- "id": 14919,
+ "id": 15060,
"properties": {
"east": "tall",
"north": "low",
@@ -189988,7 +190675,7 @@
}
},
{
- "id": 14920,
+ "id": 15061,
"properties": {
"east": "tall",
"north": "low",
@@ -189999,7 +190686,7 @@
}
},
{
- "id": 14921,
+ "id": 15062,
"properties": {
"east": "tall",
"north": "low",
@@ -190010,7 +190697,7 @@
}
},
{
- "id": 14922,
+ "id": 15063,
"properties": {
"east": "tall",
"north": "low",
@@ -190021,7 +190708,7 @@
}
},
{
- "id": 14923,
+ "id": 15064,
"properties": {
"east": "tall",
"north": "low",
@@ -190032,7 +190719,7 @@
}
},
{
- "id": 14924,
+ "id": 15065,
"properties": {
"east": "tall",
"north": "low",
@@ -190043,7 +190730,7 @@
}
},
{
- "id": 14925,
+ "id": 15066,
"properties": {
"east": "tall",
"north": "low",
@@ -190054,7 +190741,7 @@
}
},
{
- "id": 14926,
+ "id": 15067,
"properties": {
"east": "tall",
"north": "low",
@@ -190065,7 +190752,7 @@
}
},
{
- "id": 14927,
+ "id": 15068,
"properties": {
"east": "tall",
"north": "low",
@@ -190076,7 +190763,7 @@
}
},
{
- "id": 14928,
+ "id": 15069,
"properties": {
"east": "tall",
"north": "low",
@@ -190087,7 +190774,7 @@
}
},
{
- "id": 14929,
+ "id": 15070,
"properties": {
"east": "tall",
"north": "low",
@@ -190098,7 +190785,7 @@
}
},
{
- "id": 14930,
+ "id": 15071,
"properties": {
"east": "tall",
"north": "low",
@@ -190109,7 +190796,7 @@
}
},
{
- "id": 14931,
+ "id": 15072,
"properties": {
"east": "tall",
"north": "low",
@@ -190120,7 +190807,7 @@
}
},
{
- "id": 14932,
+ "id": 15073,
"properties": {
"east": "tall",
"north": "low",
@@ -190131,7 +190818,7 @@
}
},
{
- "id": 14933,
+ "id": 15074,
"properties": {
"east": "tall",
"north": "low",
@@ -190142,7 +190829,7 @@
}
},
{
- "id": 14934,
+ "id": 15075,
"properties": {
"east": "tall",
"north": "low",
@@ -190153,7 +190840,7 @@
}
},
{
- "id": 14935,
+ "id": 15076,
"properties": {
"east": "tall",
"north": "low",
@@ -190164,7 +190851,7 @@
}
},
{
- "id": 14936,
+ "id": 15077,
"properties": {
"east": "tall",
"north": "low",
@@ -190175,7 +190862,7 @@
}
},
{
- "id": 14937,
+ "id": 15078,
"properties": {
"east": "tall",
"north": "low",
@@ -190186,7 +190873,7 @@
}
},
{
- "id": 14938,
+ "id": 15079,
"properties": {
"east": "tall",
"north": "low",
@@ -190197,7 +190884,7 @@
}
},
{
- "id": 14939,
+ "id": 15080,
"properties": {
"east": "tall",
"north": "low",
@@ -190208,7 +190895,7 @@
}
},
{
- "id": 14940,
+ "id": 15081,
"properties": {
"east": "tall",
"north": "low",
@@ -190219,7 +190906,7 @@
}
},
{
- "id": 14941,
+ "id": 15082,
"properties": {
"east": "tall",
"north": "low",
@@ -190230,7 +190917,7 @@
}
},
{
- "id": 14942,
+ "id": 15083,
"properties": {
"east": "tall",
"north": "low",
@@ -190241,7 +190928,7 @@
}
},
{
- "id": 14943,
+ "id": 15084,
"properties": {
"east": "tall",
"north": "low",
@@ -190252,7 +190939,7 @@
}
},
{
- "id": 14944,
+ "id": 15085,
"properties": {
"east": "tall",
"north": "low",
@@ -190263,7 +190950,7 @@
}
},
{
- "id": 14945,
+ "id": 15086,
"properties": {
"east": "tall",
"north": "low",
@@ -190274,7 +190961,7 @@
}
},
{
- "id": 14946,
+ "id": 15087,
"properties": {
"east": "tall",
"north": "low",
@@ -190285,7 +190972,7 @@
}
},
{
- "id": 14947,
+ "id": 15088,
"properties": {
"east": "tall",
"north": "low",
@@ -190296,7 +190983,7 @@
}
},
{
- "id": 14948,
+ "id": 15089,
"properties": {
"east": "tall",
"north": "low",
@@ -190307,7 +190994,7 @@
}
},
{
- "id": 14949,
+ "id": 15090,
"properties": {
"east": "tall",
"north": "low",
@@ -190318,7 +191005,7 @@
}
},
{
- "id": 14950,
+ "id": 15091,
"properties": {
"east": "tall",
"north": "low",
@@ -190329,7 +191016,7 @@
}
},
{
- "id": 14951,
+ "id": 15092,
"properties": {
"east": "tall",
"north": "low",
@@ -190340,7 +191027,7 @@
}
},
{
- "id": 14952,
+ "id": 15093,
"properties": {
"east": "tall",
"north": "low",
@@ -190351,7 +191038,7 @@
}
},
{
- "id": 14953,
+ "id": 15094,
"properties": {
"east": "tall",
"north": "low",
@@ -190362,7 +191049,7 @@
}
},
{
- "id": 14954,
+ "id": 15095,
"properties": {
"east": "tall",
"north": "low",
@@ -190373,7 +191060,7 @@
}
},
{
- "id": 14955,
+ "id": 15096,
"properties": {
"east": "tall",
"north": "tall",
@@ -190384,7 +191071,7 @@
}
},
{
- "id": 14956,
+ "id": 15097,
"properties": {
"east": "tall",
"north": "tall",
@@ -190395,7 +191082,7 @@
}
},
{
- "id": 14957,
+ "id": 15098,
"properties": {
"east": "tall",
"north": "tall",
@@ -190406,7 +191093,7 @@
}
},
{
- "id": 14958,
+ "id": 15099,
"properties": {
"east": "tall",
"north": "tall",
@@ -190417,7 +191104,7 @@
}
},
{
- "id": 14959,
+ "id": 15100,
"properties": {
"east": "tall",
"north": "tall",
@@ -190428,7 +191115,7 @@
}
},
{
- "id": 14960,
+ "id": 15101,
"properties": {
"east": "tall",
"north": "tall",
@@ -190439,7 +191126,7 @@
}
},
{
- "id": 14961,
+ "id": 15102,
"properties": {
"east": "tall",
"north": "tall",
@@ -190450,7 +191137,7 @@
}
},
{
- "id": 14962,
+ "id": 15103,
"properties": {
"east": "tall",
"north": "tall",
@@ -190461,7 +191148,7 @@
}
},
{
- "id": 14963,
+ "id": 15104,
"properties": {
"east": "tall",
"north": "tall",
@@ -190472,7 +191159,7 @@
}
},
{
- "id": 14964,
+ "id": 15105,
"properties": {
"east": "tall",
"north": "tall",
@@ -190483,7 +191170,7 @@
}
},
{
- "id": 14965,
+ "id": 15106,
"properties": {
"east": "tall",
"north": "tall",
@@ -190494,7 +191181,7 @@
}
},
{
- "id": 14966,
+ "id": 15107,
"properties": {
"east": "tall",
"north": "tall",
@@ -190505,7 +191192,7 @@
}
},
{
- "id": 14967,
+ "id": 15108,
"properties": {
"east": "tall",
"north": "tall",
@@ -190516,7 +191203,7 @@
}
},
{
- "id": 14968,
+ "id": 15109,
"properties": {
"east": "tall",
"north": "tall",
@@ -190527,7 +191214,7 @@
}
},
{
- "id": 14969,
+ "id": 15110,
"properties": {
"east": "tall",
"north": "tall",
@@ -190538,7 +191225,7 @@
}
},
{
- "id": 14970,
+ "id": 15111,
"properties": {
"east": "tall",
"north": "tall",
@@ -190549,7 +191236,7 @@
}
},
{
- "id": 14971,
+ "id": 15112,
"properties": {
"east": "tall",
"north": "tall",
@@ -190560,7 +191247,7 @@
}
},
{
- "id": 14972,
+ "id": 15113,
"properties": {
"east": "tall",
"north": "tall",
@@ -190571,7 +191258,7 @@
}
},
{
- "id": 14973,
+ "id": 15114,
"properties": {
"east": "tall",
"north": "tall",
@@ -190582,7 +191269,7 @@
}
},
{
- "id": 14974,
+ "id": 15115,
"properties": {
"east": "tall",
"north": "tall",
@@ -190593,7 +191280,7 @@
}
},
{
- "id": 14975,
+ "id": 15116,
"properties": {
"east": "tall",
"north": "tall",
@@ -190604,7 +191291,7 @@
}
},
{
- "id": 14976,
+ "id": 15117,
"properties": {
"east": "tall",
"north": "tall",
@@ -190615,7 +191302,7 @@
}
},
{
- "id": 14977,
+ "id": 15118,
"properties": {
"east": "tall",
"north": "tall",
@@ -190626,7 +191313,7 @@
}
},
{
- "id": 14978,
+ "id": 15119,
"properties": {
"east": "tall",
"north": "tall",
@@ -190637,7 +191324,7 @@
}
},
{
- "id": 14979,
+ "id": 15120,
"properties": {
"east": "tall",
"north": "tall",
@@ -190648,7 +191335,7 @@
}
},
{
- "id": 14980,
+ "id": 15121,
"properties": {
"east": "tall",
"north": "tall",
@@ -190659,7 +191346,7 @@
}
},
{
- "id": 14981,
+ "id": 15122,
"properties": {
"east": "tall",
"north": "tall",
@@ -190670,7 +191357,7 @@
}
},
{
- "id": 14982,
+ "id": 15123,
"properties": {
"east": "tall",
"north": "tall",
@@ -190681,7 +191368,7 @@
}
},
{
- "id": 14983,
+ "id": 15124,
"properties": {
"east": "tall",
"north": "tall",
@@ -190692,7 +191379,7 @@
}
},
{
- "id": 14984,
+ "id": 15125,
"properties": {
"east": "tall",
"north": "tall",
@@ -190703,7 +191390,7 @@
}
},
{
- "id": 14985,
+ "id": 15126,
"properties": {
"east": "tall",
"north": "tall",
@@ -190714,7 +191401,7 @@
}
},
{
- "id": 14986,
+ "id": 15127,
"properties": {
"east": "tall",
"north": "tall",
@@ -190725,7 +191412,7 @@
}
},
{
- "id": 14987,
+ "id": 15128,
"properties": {
"east": "tall",
"north": "tall",
@@ -190736,7 +191423,7 @@
}
},
{
- "id": 14988,
+ "id": 15129,
"properties": {
"east": "tall",
"north": "tall",
@@ -190747,7 +191434,7 @@
}
},
{
- "id": 14989,
+ "id": 15130,
"properties": {
"east": "tall",
"north": "tall",
@@ -190758,7 +191445,7 @@
}
},
{
- "id": 14990,
+ "id": 15131,
"properties": {
"east": "tall",
"north": "tall",
@@ -190783,38 +191470,38 @@
},
"states": [
{
- "id": 12511,
+ "id": 12652,
"properties": {
"facing": "north"
}
},
{
- "id": 12512,
+ "id": 12653,
"properties": {
"facing": "east"
}
},
{
- "id": 12513,
+ "id": 12654,
"properties": {
"facing": "south"
}
},
{
- "id": 12514,
+ "id": 12655,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12515,
+ "id": 12656,
"properties": {
"facing": "up"
}
},
{
- "id": 12516,
+ "id": 12657,
"properties": {
"facing": "down"
}
@@ -190854,7 +191541,7 @@
},
"states": [
{
- "id": 9680,
+ "id": 9820,
"properties": {
"east": "true",
"north": "true",
@@ -190864,7 +191551,7 @@
}
},
{
- "id": 9681,
+ "id": 9821,
"properties": {
"east": "true",
"north": "true",
@@ -190874,7 +191561,7 @@
}
},
{
- "id": 9682,
+ "id": 9822,
"properties": {
"east": "true",
"north": "true",
@@ -190884,7 +191571,7 @@
}
},
{
- "id": 9683,
+ "id": 9823,
"properties": {
"east": "true",
"north": "true",
@@ -190894,7 +191581,7 @@
}
},
{
- "id": 9684,
+ "id": 9824,
"properties": {
"east": "true",
"north": "true",
@@ -190904,7 +191591,7 @@
}
},
{
- "id": 9685,
+ "id": 9825,
"properties": {
"east": "true",
"north": "true",
@@ -190914,7 +191601,7 @@
}
},
{
- "id": 9686,
+ "id": 9826,
"properties": {
"east": "true",
"north": "true",
@@ -190924,7 +191611,7 @@
}
},
{
- "id": 9687,
+ "id": 9827,
"properties": {
"east": "true",
"north": "true",
@@ -190934,7 +191621,7 @@
}
},
{
- "id": 9688,
+ "id": 9828,
"properties": {
"east": "true",
"north": "false",
@@ -190944,7 +191631,7 @@
}
},
{
- "id": 9689,
+ "id": 9829,
"properties": {
"east": "true",
"north": "false",
@@ -190954,7 +191641,7 @@
}
},
{
- "id": 9690,
+ "id": 9830,
"properties": {
"east": "true",
"north": "false",
@@ -190964,7 +191651,7 @@
}
},
{
- "id": 9691,
+ "id": 9831,
"properties": {
"east": "true",
"north": "false",
@@ -190974,7 +191661,7 @@
}
},
{
- "id": 9692,
+ "id": 9832,
"properties": {
"east": "true",
"north": "false",
@@ -190984,7 +191671,7 @@
}
},
{
- "id": 9693,
+ "id": 9833,
"properties": {
"east": "true",
"north": "false",
@@ -190994,7 +191681,7 @@
}
},
{
- "id": 9694,
+ "id": 9834,
"properties": {
"east": "true",
"north": "false",
@@ -191004,7 +191691,7 @@
}
},
{
- "id": 9695,
+ "id": 9835,
"properties": {
"east": "true",
"north": "false",
@@ -191014,7 +191701,7 @@
}
},
{
- "id": 9696,
+ "id": 9836,
"properties": {
"east": "false",
"north": "true",
@@ -191024,7 +191711,7 @@
}
},
{
- "id": 9697,
+ "id": 9837,
"properties": {
"east": "false",
"north": "true",
@@ -191034,7 +191721,7 @@
}
},
{
- "id": 9698,
+ "id": 9838,
"properties": {
"east": "false",
"north": "true",
@@ -191044,7 +191731,7 @@
}
},
{
- "id": 9699,
+ "id": 9839,
"properties": {
"east": "false",
"north": "true",
@@ -191054,7 +191741,7 @@
}
},
{
- "id": 9700,
+ "id": 9840,
"properties": {
"east": "false",
"north": "true",
@@ -191064,7 +191751,7 @@
}
},
{
- "id": 9701,
+ "id": 9841,
"properties": {
"east": "false",
"north": "true",
@@ -191074,7 +191761,7 @@
}
},
{
- "id": 9702,
+ "id": 9842,
"properties": {
"east": "false",
"north": "true",
@@ -191084,7 +191771,7 @@
}
},
{
- "id": 9703,
+ "id": 9843,
"properties": {
"east": "false",
"north": "true",
@@ -191094,7 +191781,7 @@
}
},
{
- "id": 9704,
+ "id": 9844,
"properties": {
"east": "false",
"north": "false",
@@ -191104,7 +191791,7 @@
}
},
{
- "id": 9705,
+ "id": 9845,
"properties": {
"east": "false",
"north": "false",
@@ -191114,7 +191801,7 @@
}
},
{
- "id": 9706,
+ "id": 9846,
"properties": {
"east": "false",
"north": "false",
@@ -191124,7 +191811,7 @@
}
},
{
- "id": 9707,
+ "id": 9847,
"properties": {
"east": "false",
"north": "false",
@@ -191134,7 +191821,7 @@
}
},
{
- "id": 9708,
+ "id": 9848,
"properties": {
"east": "false",
"north": "false",
@@ -191144,7 +191831,7 @@
}
},
{
- "id": 9709,
+ "id": 9849,
"properties": {
"east": "false",
"north": "false",
@@ -191154,7 +191841,7 @@
}
},
{
- "id": 9710,
+ "id": 9850,
"properties": {
"east": "false",
"north": "false",
@@ -191165,7 +191852,7 @@
},
{
"default": true,
- "id": 9711,
+ "id": 9851,
"properties": {
"east": "false",
"north": "false",
@@ -191180,7 +191867,7 @@
"states": [
{
"default": true,
- "id": 9230
+ "id": 9370
}
]
},
@@ -191204,25 +191891,25 @@
"states": [
{
"default": true,
- "id": 10930,
+ "id": 11071,
"properties": {
"facing": "north"
}
},
{
- "id": 10931,
+ "id": 11072,
"properties": {
"facing": "south"
}
},
{
- "id": 10932,
+ "id": 11073,
"properties": {
"facing": "west"
}
},
{
- "id": 10933,
+ "id": 11074,
"properties": {
"facing": "east"
}
@@ -191241,7 +191928,7 @@
"states": [
{
"default": true,
- "id": 9083
+ "id": 9223
}
]
},
@@ -204396,7 +205083,7 @@
"states": [
{
"default": true,
- "id": 24118
+ "id": 24259
}
]
},
@@ -205020,42 +205707,42 @@
},
"states": [
{
- "id": 12374,
+ "id": 12515,
"properties": {
"conditional": "true",
"facing": "north"
}
},
{
- "id": 12375,
+ "id": 12516,
"properties": {
"conditional": "true",
"facing": "east"
}
},
{
- "id": 12376,
+ "id": 12517,
"properties": {
"conditional": "true",
"facing": "south"
}
},
{
- "id": 12377,
+ "id": 12518,
"properties": {
"conditional": "true",
"facing": "west"
}
},
{
- "id": 12378,
+ "id": 12519,
"properties": {
"conditional": "true",
"facing": "up"
}
},
{
- "id": 12379,
+ "id": 12520,
"properties": {
"conditional": "true",
"facing": "down"
@@ -205063,42 +205750,42 @@
},
{
"default": true,
- "id": 12380,
+ "id": 12521,
"properties": {
"conditional": "false",
"facing": "north"
}
},
{
- "id": 12381,
+ "id": 12522,
"properties": {
"conditional": "false",
"facing": "east"
}
},
{
- "id": 12382,
+ "id": 12523,
"properties": {
"conditional": "false",
"facing": "south"
}
},
{
- "id": 12383,
+ "id": 12524,
"properties": {
"conditional": "false",
"facing": "west"
}
},
{
- "id": 12384,
+ "id": 12525,
"properties": {
"conditional": "false",
"facing": "up"
}
},
{
- "id": 12385,
+ "id": 12526,
"properties": {
"conditional": "false",
"facing": "down"
@@ -205119,31 +205806,31 @@
"states": [
{
"default": true,
- "id": 19309,
+ "id": 19450,
"properties": {
"charges": "0"
}
},
{
- "id": 19310,
+ "id": 19451,
"properties": {
"charges": "1"
}
},
{
- "id": 19311,
+ "id": 19452,
"properties": {
"charges": "2"
}
},
{
- "id": 19312,
+ "id": 19453,
"properties": {
"charges": "3"
}
},
{
- "id": 19313,
+ "id": 19454,
"properties": {
"charges": "4"
}
@@ -205154,7 +205841,7 @@
"states": [
{
"default": true,
- "id": 22447
+ "id": 22588
}
]
},
@@ -205167,14 +205854,14 @@
},
"states": [
{
- "id": 10610,
+ "id": 10751,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10611,
+ "id": 10752,
"properties": {
"half": "lower"
}
@@ -205211,21 +205898,21 @@
},
"states": [
{
- "id": 11093,
+ "id": 11234,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11094,
+ "id": 11235,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11095,
+ "id": 11236,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -205233,21 +205920,21 @@
},
{
"default": true,
- "id": 11096,
+ "id": 11237,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11097,
+ "id": 11238,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11098,
+ "id": 11239,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -206036,7 +206723,7 @@
},
"states": [
{
- "id": 17259,
+ "id": 17400,
"properties": {
"east": "none",
"north": "none",
@@ -206047,7 +206734,7 @@
}
},
{
- "id": 17260,
+ "id": 17401,
"properties": {
"east": "none",
"north": "none",
@@ -206058,7 +206745,7 @@
}
},
{
- "id": 17261,
+ "id": 17402,
"properties": {
"east": "none",
"north": "none",
@@ -206070,2339 +206757,2339 @@
},
{
"default": true,
- "id": 17262,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17263,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17264,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17265,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17266,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17267,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17268,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17269,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17270,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17271,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17272,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17273,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17274,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17275,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17276,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17277,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17278,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17279,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17280,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17281,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17282,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17283,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17284,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17285,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17286,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17287,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17288,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17289,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17290,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17291,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17292,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17293,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17294,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17295,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17296,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17297,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17298,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17299,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17300,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17301,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17302,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17303,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17304,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17305,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17306,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17307,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17308,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17309,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17310,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17311,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17312,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17313,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17314,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17315,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17316,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17317,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17318,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17319,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17320,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17321,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17322,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17323,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17324,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17325,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17326,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17327,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17328,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17329,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17330,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17331,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17332,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17333,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17334,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17335,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17336,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17337,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17338,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17339,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17340,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17341,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17342,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17343,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17344,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17345,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17346,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17347,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17348,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17349,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17350,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17351,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17352,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17353,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17354,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17355,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17356,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17357,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17358,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17359,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17360,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17361,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17362,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17363,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17364,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17365,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17366,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17367,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17368,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17369,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17370,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17371,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17372,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17373,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17374,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17375,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17376,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17377,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17378,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17379,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17380,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17381,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17382,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17383,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17384,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17385,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17386,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17387,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17388,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17389,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17390,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17391,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17392,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17393,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17394,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17395,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17396,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 17397,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 17398,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 17399,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 17400,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 17401,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 17402,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 17403,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17404,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17405,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17406,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17407,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17408,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17409,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17410,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17411,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17412,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17413,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17414,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17415,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17416,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17417,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17418,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17419,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17420,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17421,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17422,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17423,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17424,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17425,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17426,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17427,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17428,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17429,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17430,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17431,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17432,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17433,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17434,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17435,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17436,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17437,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17438,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17439,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17440,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17441,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17442,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17443,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17444,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17445,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17446,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17447,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17448,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17449,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17450,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17451,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17452,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17453,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17454,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17455,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17456,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17457,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17458,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17459,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17460,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17461,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17462,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17463,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17464,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17465,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17466,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17467,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17468,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 17469,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 17470,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 17471,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 17472,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 17473,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 17474,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17475,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17476,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17477,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17478,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17479,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17480,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17481,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17482,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17483,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17484,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17485,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17486,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17487,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17488,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17489,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17490,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17491,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17492,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17493,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17494,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17495,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17496,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17497,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17498,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17499,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17500,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17501,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17502,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17503,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17504,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17505,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17506,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17507,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17508,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17509,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17510,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17511,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17512,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17513,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17514,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17515,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17516,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17517,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17518,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17519,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17520,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17521,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17522,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17523,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17524,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17525,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17526,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17527,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17528,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17529,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17530,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17531,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17532,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17533,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17534,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17535,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17536,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17537,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17538,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17539,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17540,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17541,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17542,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17543,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17544,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17545,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17546,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17547,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17548,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17549,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17550,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17551,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17552,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17553,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17554,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17555,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17556,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17557,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17558,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17559,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17560,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17561,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17562,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17563,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17564,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17565,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17566,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17567,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17568,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17569,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17570,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17571,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17572,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17573,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17574,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17575,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17576,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17577,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17578,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17579,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17580,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17581,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17582,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17583,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17584,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17585,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17586,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17587,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17588,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17589,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17590,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17591,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17592,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17593,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17594,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17595,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17596,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17597,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17598,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17599,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17600,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17601,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17602,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17603,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17604,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17605,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17606,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17607,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17608,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17609,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17610,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17611,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17612,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 17613,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 17614,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 17615,
"properties": {
"east": "low",
"north": "tall",
@@ -208413,7 +209100,7 @@
}
},
{
- "id": 17475,
+ "id": 17616,
"properties": {
"east": "tall",
"north": "none",
@@ -208424,7 +209111,7 @@
}
},
{
- "id": 17476,
+ "id": 17617,
"properties": {
"east": "tall",
"north": "none",
@@ -208435,7 +209122,7 @@
}
},
{
- "id": 17477,
+ "id": 17618,
"properties": {
"east": "tall",
"north": "none",
@@ -208446,7 +209133,7 @@
}
},
{
- "id": 17478,
+ "id": 17619,
"properties": {
"east": "tall",
"north": "none",
@@ -208457,7 +209144,7 @@
}
},
{
- "id": 17479,
+ "id": 17620,
"properties": {
"east": "tall",
"north": "none",
@@ -208468,7 +209155,7 @@
}
},
{
- "id": 17480,
+ "id": 17621,
"properties": {
"east": "tall",
"north": "none",
@@ -208479,7 +209166,7 @@
}
},
{
- "id": 17481,
+ "id": 17622,
"properties": {
"east": "tall",
"north": "none",
@@ -208490,7 +209177,7 @@
}
},
{
- "id": 17482,
+ "id": 17623,
"properties": {
"east": "tall",
"north": "none",
@@ -208501,7 +209188,7 @@
}
},
{
- "id": 17483,
+ "id": 17624,
"properties": {
"east": "tall",
"north": "none",
@@ -208512,7 +209199,7 @@
}
},
{
- "id": 17484,
+ "id": 17625,
"properties": {
"east": "tall",
"north": "none",
@@ -208523,7 +209210,7 @@
}
},
{
- "id": 17485,
+ "id": 17626,
"properties": {
"east": "tall",
"north": "none",
@@ -208534,7 +209221,7 @@
}
},
{
- "id": 17486,
+ "id": 17627,
"properties": {
"east": "tall",
"north": "none",
@@ -208545,7 +209232,7 @@
}
},
{
- "id": 17487,
+ "id": 17628,
"properties": {
"east": "tall",
"north": "none",
@@ -208556,7 +209243,7 @@
}
},
{
- "id": 17488,
+ "id": 17629,
"properties": {
"east": "tall",
"north": "none",
@@ -208567,7 +209254,7 @@
}
},
{
- "id": 17489,
+ "id": 17630,
"properties": {
"east": "tall",
"north": "none",
@@ -208578,7 +209265,7 @@
}
},
{
- "id": 17490,
+ "id": 17631,
"properties": {
"east": "tall",
"north": "none",
@@ -208589,7 +209276,7 @@
}
},
{
- "id": 17491,
+ "id": 17632,
"properties": {
"east": "tall",
"north": "none",
@@ -208600,7 +209287,7 @@
}
},
{
- "id": 17492,
+ "id": 17633,
"properties": {
"east": "tall",
"north": "none",
@@ -208611,7 +209298,7 @@
}
},
{
- "id": 17493,
+ "id": 17634,
"properties": {
"east": "tall",
"north": "none",
@@ -208622,7 +209309,7 @@
}
},
{
- "id": 17494,
+ "id": 17635,
"properties": {
"east": "tall",
"north": "none",
@@ -208633,7 +209320,7 @@
}
},
{
- "id": 17495,
+ "id": 17636,
"properties": {
"east": "tall",
"north": "none",
@@ -208644,7 +209331,7 @@
}
},
{
- "id": 17496,
+ "id": 17637,
"properties": {
"east": "tall",
"north": "none",
@@ -208655,7 +209342,7 @@
}
},
{
- "id": 17497,
+ "id": 17638,
"properties": {
"east": "tall",
"north": "none",
@@ -208666,7 +209353,7 @@
}
},
{
- "id": 17498,
+ "id": 17639,
"properties": {
"east": "tall",
"north": "none",
@@ -208677,7 +209364,7 @@
}
},
{
- "id": 17499,
+ "id": 17640,
"properties": {
"east": "tall",
"north": "none",
@@ -208688,7 +209375,7 @@
}
},
{
- "id": 17500,
+ "id": 17641,
"properties": {
"east": "tall",
"north": "none",
@@ -208699,7 +209386,7 @@
}
},
{
- "id": 17501,
+ "id": 17642,
"properties": {
"east": "tall",
"north": "none",
@@ -208710,7 +209397,7 @@
}
},
{
- "id": 17502,
+ "id": 17643,
"properties": {
"east": "tall",
"north": "none",
@@ -208721,7 +209408,7 @@
}
},
{
- "id": 17503,
+ "id": 17644,
"properties": {
"east": "tall",
"north": "none",
@@ -208732,7 +209419,7 @@
}
},
{
- "id": 17504,
+ "id": 17645,
"properties": {
"east": "tall",
"north": "none",
@@ -208743,7 +209430,7 @@
}
},
{
- "id": 17505,
+ "id": 17646,
"properties": {
"east": "tall",
"north": "none",
@@ -208754,7 +209441,7 @@
}
},
{
- "id": 17506,
+ "id": 17647,
"properties": {
"east": "tall",
"north": "none",
@@ -208765,7 +209452,7 @@
}
},
{
- "id": 17507,
+ "id": 17648,
"properties": {
"east": "tall",
"north": "none",
@@ -208776,7 +209463,7 @@
}
},
{
- "id": 17508,
+ "id": 17649,
"properties": {
"east": "tall",
"north": "none",
@@ -208787,7 +209474,7 @@
}
},
{
- "id": 17509,
+ "id": 17650,
"properties": {
"east": "tall",
"north": "none",
@@ -208798,7 +209485,7 @@
}
},
{
- "id": 17510,
+ "id": 17651,
"properties": {
"east": "tall",
"north": "none",
@@ -208809,7 +209496,7 @@
}
},
{
- "id": 17511,
+ "id": 17652,
"properties": {
"east": "tall",
"north": "low",
@@ -208820,7 +209507,7 @@
}
},
{
- "id": 17512,
+ "id": 17653,
"properties": {
"east": "tall",
"north": "low",
@@ -208831,7 +209518,7 @@
}
},
{
- "id": 17513,
+ "id": 17654,
"properties": {
"east": "tall",
"north": "low",
@@ -208842,7 +209529,7 @@
}
},
{
- "id": 17514,
+ "id": 17655,
"properties": {
"east": "tall",
"north": "low",
@@ -208853,7 +209540,7 @@
}
},
{
- "id": 17515,
+ "id": 17656,
"properties": {
"east": "tall",
"north": "low",
@@ -208864,7 +209551,7 @@
}
},
{
- "id": 17516,
+ "id": 17657,
"properties": {
"east": "tall",
"north": "low",
@@ -208875,7 +209562,7 @@
}
},
{
- "id": 17517,
+ "id": 17658,
"properties": {
"east": "tall",
"north": "low",
@@ -208886,7 +209573,7 @@
}
},
{
- "id": 17518,
+ "id": 17659,
"properties": {
"east": "tall",
"north": "low",
@@ -208897,7 +209584,7 @@
}
},
{
- "id": 17519,
+ "id": 17660,
"properties": {
"east": "tall",
"north": "low",
@@ -208908,7 +209595,7 @@
}
},
{
- "id": 17520,
+ "id": 17661,
"properties": {
"east": "tall",
"north": "low",
@@ -208919,7 +209606,7 @@
}
},
{
- "id": 17521,
+ "id": 17662,
"properties": {
"east": "tall",
"north": "low",
@@ -208930,7 +209617,7 @@
}
},
{
- "id": 17522,
+ "id": 17663,
"properties": {
"east": "tall",
"north": "low",
@@ -208941,7 +209628,7 @@
}
},
{
- "id": 17523,
+ "id": 17664,
"properties": {
"east": "tall",
"north": "low",
@@ -208952,7 +209639,7 @@
}
},
{
- "id": 17524,
+ "id": 17665,
"properties": {
"east": "tall",
"north": "low",
@@ -208963,7 +209650,7 @@
}
},
{
- "id": 17525,
+ "id": 17666,
"properties": {
"east": "tall",
"north": "low",
@@ -208974,7 +209661,7 @@
}
},
{
- "id": 17526,
+ "id": 17667,
"properties": {
"east": "tall",
"north": "low",
@@ -208985,7 +209672,7 @@
}
},
{
- "id": 17527,
+ "id": 17668,
"properties": {
"east": "tall",
"north": "low",
@@ -208996,7 +209683,7 @@
}
},
{
- "id": 17528,
+ "id": 17669,
"properties": {
"east": "tall",
"north": "low",
@@ -209007,7 +209694,7 @@
}
},
{
- "id": 17529,
+ "id": 17670,
"properties": {
"east": "tall",
"north": "low",
@@ -209018,7 +209705,7 @@
}
},
{
- "id": 17530,
+ "id": 17671,
"properties": {
"east": "tall",
"north": "low",
@@ -209029,7 +209716,7 @@
}
},
{
- "id": 17531,
+ "id": 17672,
"properties": {
"east": "tall",
"north": "low",
@@ -209040,7 +209727,7 @@
}
},
{
- "id": 17532,
+ "id": 17673,
"properties": {
"east": "tall",
"north": "low",
@@ -209051,7 +209738,7 @@
}
},
{
- "id": 17533,
+ "id": 17674,
"properties": {
"east": "tall",
"north": "low",
@@ -209062,7 +209749,7 @@
}
},
{
- "id": 17534,
+ "id": 17675,
"properties": {
"east": "tall",
"north": "low",
@@ -209073,7 +209760,7 @@
}
},
{
- "id": 17535,
+ "id": 17676,
"properties": {
"east": "tall",
"north": "low",
@@ -209084,7 +209771,7 @@
}
},
{
- "id": 17536,
+ "id": 17677,
"properties": {
"east": "tall",
"north": "low",
@@ -209095,7 +209782,7 @@
}
},
{
- "id": 17537,
+ "id": 17678,
"properties": {
"east": "tall",
"north": "low",
@@ -209106,7 +209793,7 @@
}
},
{
- "id": 17538,
+ "id": 17679,
"properties": {
"east": "tall",
"north": "low",
@@ -209117,7 +209804,7 @@
}
},
{
- "id": 17539,
+ "id": 17680,
"properties": {
"east": "tall",
"north": "low",
@@ -209128,7 +209815,7 @@
}
},
{
- "id": 17540,
+ "id": 17681,
"properties": {
"east": "tall",
"north": "low",
@@ -209139,7 +209826,7 @@
}
},
{
- "id": 17541,
+ "id": 17682,
"properties": {
"east": "tall",
"north": "low",
@@ -209150,7 +209837,7 @@
}
},
{
- "id": 17542,
+ "id": 17683,
"properties": {
"east": "tall",
"north": "low",
@@ -209161,7 +209848,7 @@
}
},
{
- "id": 17543,
+ "id": 17684,
"properties": {
"east": "tall",
"north": "low",
@@ -209172,7 +209859,7 @@
}
},
{
- "id": 17544,
+ "id": 17685,
"properties": {
"east": "tall",
"north": "low",
@@ -209183,7 +209870,7 @@
}
},
{
- "id": 17545,
+ "id": 17686,
"properties": {
"east": "tall",
"north": "low",
@@ -209194,7 +209881,7 @@
}
},
{
- "id": 17546,
+ "id": 17687,
"properties": {
"east": "tall",
"north": "low",
@@ -209205,7 +209892,7 @@
}
},
{
- "id": 17547,
+ "id": 17688,
"properties": {
"east": "tall",
"north": "tall",
@@ -209216,7 +209903,7 @@
}
},
{
- "id": 17548,
+ "id": 17689,
"properties": {
"east": "tall",
"north": "tall",
@@ -209227,7 +209914,7 @@
}
},
{
- "id": 17549,
+ "id": 17690,
"properties": {
"east": "tall",
"north": "tall",
@@ -209238,7 +209925,7 @@
}
},
{
- "id": 17550,
+ "id": 17691,
"properties": {
"east": "tall",
"north": "tall",
@@ -209249,7 +209936,7 @@
}
},
{
- "id": 17551,
+ "id": 17692,
"properties": {
"east": "tall",
"north": "tall",
@@ -209260,7 +209947,7 @@
}
},
{
- "id": 17552,
+ "id": 17693,
"properties": {
"east": "tall",
"north": "tall",
@@ -209271,7 +209958,7 @@
}
},
{
- "id": 17553,
+ "id": 17694,
"properties": {
"east": "tall",
"north": "tall",
@@ -209282,7 +209969,7 @@
}
},
{
- "id": 17554,
+ "id": 17695,
"properties": {
"east": "tall",
"north": "tall",
@@ -209293,7 +209980,7 @@
}
},
{
- "id": 17555,
+ "id": 17696,
"properties": {
"east": "tall",
"north": "tall",
@@ -209304,7 +209991,7 @@
}
},
{
- "id": 17556,
+ "id": 17697,
"properties": {
"east": "tall",
"north": "tall",
@@ -209315,7 +210002,7 @@
}
},
{
- "id": 17557,
+ "id": 17698,
"properties": {
"east": "tall",
"north": "tall",
@@ -209326,7 +210013,7 @@
}
},
{
- "id": 17558,
+ "id": 17699,
"properties": {
"east": "tall",
"north": "tall",
@@ -209337,7 +210024,7 @@
}
},
{
- "id": 17559,
+ "id": 17700,
"properties": {
"east": "tall",
"north": "tall",
@@ -209348,7 +210035,7 @@
}
},
{
- "id": 17560,
+ "id": 17701,
"properties": {
"east": "tall",
"north": "tall",
@@ -209359,7 +210046,7 @@
}
},
{
- "id": 17561,
+ "id": 17702,
"properties": {
"east": "tall",
"north": "tall",
@@ -209370,7 +210057,7 @@
}
},
{
- "id": 17562,
+ "id": 17703,
"properties": {
"east": "tall",
"north": "tall",
@@ -209381,7 +210068,7 @@
}
},
{
- "id": 17563,
+ "id": 17704,
"properties": {
"east": "tall",
"north": "tall",
@@ -209392,7 +210079,7 @@
}
},
{
- "id": 17564,
+ "id": 17705,
"properties": {
"east": "tall",
"north": "tall",
@@ -209403,7 +210090,7 @@
}
},
{
- "id": 17565,
+ "id": 17706,
"properties": {
"east": "tall",
"north": "tall",
@@ -209414,7 +210101,7 @@
}
},
{
- "id": 17566,
+ "id": 17707,
"properties": {
"east": "tall",
"north": "tall",
@@ -209425,7 +210112,7 @@
}
},
{
- "id": 17567,
+ "id": 17708,
"properties": {
"east": "tall",
"north": "tall",
@@ -209436,7 +210123,7 @@
}
},
{
- "id": 17568,
+ "id": 17709,
"properties": {
"east": "tall",
"north": "tall",
@@ -209447,7 +210134,7 @@
}
},
{
- "id": 17569,
+ "id": 17710,
"properties": {
"east": "tall",
"north": "tall",
@@ -209458,7 +210145,7 @@
}
},
{
- "id": 17570,
+ "id": 17711,
"properties": {
"east": "tall",
"north": "tall",
@@ -209469,7 +210156,7 @@
}
},
{
- "id": 17571,
+ "id": 17712,
"properties": {
"east": "tall",
"north": "tall",
@@ -209480,7 +210167,7 @@
}
},
{
- "id": 17572,
+ "id": 17713,
"properties": {
"east": "tall",
"north": "tall",
@@ -209491,7 +210178,7 @@
}
},
{
- "id": 17573,
+ "id": 17714,
"properties": {
"east": "tall",
"north": "tall",
@@ -209502,7 +210189,7 @@
}
},
{
- "id": 17574,
+ "id": 17715,
"properties": {
"east": "tall",
"north": "tall",
@@ -209513,7 +210200,7 @@
}
},
{
- "id": 17575,
+ "id": 17716,
"properties": {
"east": "tall",
"north": "tall",
@@ -209524,7 +210211,7 @@
}
},
{
- "id": 17576,
+ "id": 17717,
"properties": {
"east": "tall",
"north": "tall",
@@ -209535,7 +210222,7 @@
}
},
{
- "id": 17577,
+ "id": 17718,
"properties": {
"east": "tall",
"north": "tall",
@@ -209546,7 +210233,7 @@
}
},
{
- "id": 17578,
+ "id": 17719,
"properties": {
"east": "tall",
"north": "tall",
@@ -209557,7 +210244,7 @@
}
},
{
- "id": 17579,
+ "id": 17720,
"properties": {
"east": "tall",
"north": "tall",
@@ -209568,7 +210255,7 @@
}
},
{
- "id": 17580,
+ "id": 17721,
"properties": {
"east": "tall",
"north": "tall",
@@ -209579,7 +210266,7 @@
}
},
{
- "id": 17581,
+ "id": 17722,
"properties": {
"east": "tall",
"north": "tall",
@@ -209590,7 +210277,7 @@
}
},
{
- "id": 17582,
+ "id": 17723,
"properties": {
"east": "tall",
"north": "tall",
@@ -209625,7 +210312,7 @@
},
"states": [
{
- "id": 18231,
+ "id": 18372,
"properties": {
"bottom": "true",
"distance": "0",
@@ -209633,7 +210320,7 @@
}
},
{
- "id": 18232,
+ "id": 18373,
"properties": {
"bottom": "true",
"distance": "0",
@@ -209641,7 +210328,7 @@
}
},
{
- "id": 18233,
+ "id": 18374,
"properties": {
"bottom": "true",
"distance": "1",
@@ -209649,7 +210336,7 @@
}
},
{
- "id": 18234,
+ "id": 18375,
"properties": {
"bottom": "true",
"distance": "1",
@@ -209657,7 +210344,7 @@
}
},
{
- "id": 18235,
+ "id": 18376,
"properties": {
"bottom": "true",
"distance": "2",
@@ -209665,7 +210352,7 @@
}
},
{
- "id": 18236,
+ "id": 18377,
"properties": {
"bottom": "true",
"distance": "2",
@@ -209673,7 +210360,7 @@
}
},
{
- "id": 18237,
+ "id": 18378,
"properties": {
"bottom": "true",
"distance": "3",
@@ -209681,7 +210368,7 @@
}
},
{
- "id": 18238,
+ "id": 18379,
"properties": {
"bottom": "true",
"distance": "3",
@@ -209689,7 +210376,7 @@
}
},
{
- "id": 18239,
+ "id": 18380,
"properties": {
"bottom": "true",
"distance": "4",
@@ -209697,7 +210384,7 @@
}
},
{
- "id": 18240,
+ "id": 18381,
"properties": {
"bottom": "true",
"distance": "4",
@@ -209705,7 +210392,7 @@
}
},
{
- "id": 18241,
+ "id": 18382,
"properties": {
"bottom": "true",
"distance": "5",
@@ -209713,7 +210400,7 @@
}
},
{
- "id": 18242,
+ "id": 18383,
"properties": {
"bottom": "true",
"distance": "5",
@@ -209721,7 +210408,7 @@
}
},
{
- "id": 18243,
+ "id": 18384,
"properties": {
"bottom": "true",
"distance": "6",
@@ -209729,7 +210416,7 @@
}
},
{
- "id": 18244,
+ "id": 18385,
"properties": {
"bottom": "true",
"distance": "6",
@@ -209737,7 +210424,7 @@
}
},
{
- "id": 18245,
+ "id": 18386,
"properties": {
"bottom": "true",
"distance": "7",
@@ -209745,7 +210432,7 @@
}
},
{
- "id": 18246,
+ "id": 18387,
"properties": {
"bottom": "true",
"distance": "7",
@@ -209753,7 +210440,7 @@
}
},
{
- "id": 18247,
+ "id": 18388,
"properties": {
"bottom": "false",
"distance": "0",
@@ -209761,7 +210448,7 @@
}
},
{
- "id": 18248,
+ "id": 18389,
"properties": {
"bottom": "false",
"distance": "0",
@@ -209769,7 +210456,7 @@
}
},
{
- "id": 18249,
+ "id": 18390,
"properties": {
"bottom": "false",
"distance": "1",
@@ -209777,7 +210464,7 @@
}
},
{
- "id": 18250,
+ "id": 18391,
"properties": {
"bottom": "false",
"distance": "1",
@@ -209785,7 +210472,7 @@
}
},
{
- "id": 18251,
+ "id": 18392,
"properties": {
"bottom": "false",
"distance": "2",
@@ -209793,7 +210480,7 @@
}
},
{
- "id": 18252,
+ "id": 18393,
"properties": {
"bottom": "false",
"distance": "2",
@@ -209801,7 +210488,7 @@
}
},
{
- "id": 18253,
+ "id": 18394,
"properties": {
"bottom": "false",
"distance": "3",
@@ -209809,7 +210496,7 @@
}
},
{
- "id": 18254,
+ "id": 18395,
"properties": {
"bottom": "false",
"distance": "3",
@@ -209817,7 +210504,7 @@
}
},
{
- "id": 18255,
+ "id": 18396,
"properties": {
"bottom": "false",
"distance": "4",
@@ -209825,7 +210512,7 @@
}
},
{
- "id": 18256,
+ "id": 18397,
"properties": {
"bottom": "false",
"distance": "4",
@@ -209833,7 +210520,7 @@
}
},
{
- "id": 18257,
+ "id": 18398,
"properties": {
"bottom": "false",
"distance": "5",
@@ -209841,7 +210528,7 @@
}
},
{
- "id": 18258,
+ "id": 18399,
"properties": {
"bottom": "false",
"distance": "5",
@@ -209849,7 +210536,7 @@
}
},
{
- "id": 18259,
+ "id": 18400,
"properties": {
"bottom": "false",
"distance": "6",
@@ -209857,7 +210544,7 @@
}
},
{
- "id": 18260,
+ "id": 18401,
"properties": {
"bottom": "false",
"distance": "6",
@@ -209865,7 +210552,7 @@
}
},
{
- "id": 18261,
+ "id": 18402,
"properties": {
"bottom": "false",
"distance": "7",
@@ -209874,7 +210561,7 @@
},
{
"default": true,
- "id": 18262,
+ "id": 18403,
"properties": {
"bottom": "false",
"distance": "7",
@@ -209887,7 +210574,7 @@
"states": [
{
"default": true,
- "id": 21424
+ "id": 21565
}
]
},
@@ -209900,14 +210587,14 @@
},
"states": [
{
- "id": 21553,
+ "id": 21694,
"properties": {
"bloom": "true"
}
},
{
"default": true,
- "id": 21554,
+ "id": 21695,
"properties": {
"bloom": "false"
}
@@ -209946,7 +210633,7 @@
},
"states": [
{
- "id": 20944,
+ "id": 21085,
"properties": {
"power": "0",
"sculk_sensor_phase": "inactive",
@@ -209955,7 +210642,7 @@
},
{
"default": true,
- "id": 20945,
+ "id": 21086,
"properties": {
"power": "0",
"sculk_sensor_phase": "inactive",
@@ -209963,7 +210650,7 @@
}
},
{
- "id": 20946,
+ "id": 21087,
"properties": {
"power": "0",
"sculk_sensor_phase": "active",
@@ -209971,7 +210658,7 @@
}
},
{
- "id": 20947,
+ "id": 21088,
"properties": {
"power": "0",
"sculk_sensor_phase": "active",
@@ -209979,7 +210666,7 @@
}
},
{
- "id": 20948,
+ "id": 21089,
"properties": {
"power": "0",
"sculk_sensor_phase": "cooldown",
@@ -209987,7 +210674,7 @@
}
},
{
- "id": 20949,
+ "id": 21090,
"properties": {
"power": "0",
"sculk_sensor_phase": "cooldown",
@@ -209995,7 +210682,7 @@
}
},
{
- "id": 20950,
+ "id": 21091,
"properties": {
"power": "1",
"sculk_sensor_phase": "inactive",
@@ -210003,7 +210690,7 @@
}
},
{
- "id": 20951,
+ "id": 21092,
"properties": {
"power": "1",
"sculk_sensor_phase": "inactive",
@@ -210011,7 +210698,7 @@
}
},
{
- "id": 20952,
+ "id": 21093,
"properties": {
"power": "1",
"sculk_sensor_phase": "active",
@@ -210019,7 +210706,7 @@
}
},
{
- "id": 20953,
+ "id": 21094,
"properties": {
"power": "1",
"sculk_sensor_phase": "active",
@@ -210027,7 +210714,7 @@
}
},
{
- "id": 20954,
+ "id": 21095,
"properties": {
"power": "1",
"sculk_sensor_phase": "cooldown",
@@ -210035,7 +210722,7 @@
}
},
{
- "id": 20955,
+ "id": 21096,
"properties": {
"power": "1",
"sculk_sensor_phase": "cooldown",
@@ -210043,7 +210730,7 @@
}
},
{
- "id": 20956,
+ "id": 21097,
"properties": {
"power": "2",
"sculk_sensor_phase": "inactive",
@@ -210051,7 +210738,7 @@
}
},
{
- "id": 20957,
+ "id": 21098,
"properties": {
"power": "2",
"sculk_sensor_phase": "inactive",
@@ -210059,7 +210746,7 @@
}
},
{
- "id": 20958,
+ "id": 21099,
"properties": {
"power": "2",
"sculk_sensor_phase": "active",
@@ -210067,7 +210754,7 @@
}
},
{
- "id": 20959,
+ "id": 21100,
"properties": {
"power": "2",
"sculk_sensor_phase": "active",
@@ -210075,7 +210762,7 @@
}
},
{
- "id": 20960,
+ "id": 21101,
"properties": {
"power": "2",
"sculk_sensor_phase": "cooldown",
@@ -210083,7 +210770,7 @@
}
},
{
- "id": 20961,
+ "id": 21102,
"properties": {
"power": "2",
"sculk_sensor_phase": "cooldown",
@@ -210091,7 +210778,7 @@
}
},
{
- "id": 20962,
+ "id": 21103,
"properties": {
"power": "3",
"sculk_sensor_phase": "inactive",
@@ -210099,7 +210786,7 @@
}
},
{
- "id": 20963,
+ "id": 21104,
"properties": {
"power": "3",
"sculk_sensor_phase": "inactive",
@@ -210107,7 +210794,7 @@
}
},
{
- "id": 20964,
+ "id": 21105,
"properties": {
"power": "3",
"sculk_sensor_phase": "active",
@@ -210115,7 +210802,7 @@
}
},
{
- "id": 20965,
+ "id": 21106,
"properties": {
"power": "3",
"sculk_sensor_phase": "active",
@@ -210123,7 +210810,7 @@
}
},
{
- "id": 20966,
+ "id": 21107,
"properties": {
"power": "3",
"sculk_sensor_phase": "cooldown",
@@ -210131,7 +210818,7 @@
}
},
{
- "id": 20967,
+ "id": 21108,
"properties": {
"power": "3",
"sculk_sensor_phase": "cooldown",
@@ -210139,7 +210826,7 @@
}
},
{
- "id": 20968,
+ "id": 21109,
"properties": {
"power": "4",
"sculk_sensor_phase": "inactive",
@@ -210147,7 +210834,7 @@
}
},
{
- "id": 20969,
+ "id": 21110,
"properties": {
"power": "4",
"sculk_sensor_phase": "inactive",
@@ -210155,7 +210842,7 @@
}
},
{
- "id": 20970,
+ "id": 21111,
"properties": {
"power": "4",
"sculk_sensor_phase": "active",
@@ -210163,7 +210850,7 @@
}
},
{
- "id": 20971,
+ "id": 21112,
"properties": {
"power": "4",
"sculk_sensor_phase": "active",
@@ -210171,7 +210858,7 @@
}
},
{
- "id": 20972,
+ "id": 21113,
"properties": {
"power": "4",
"sculk_sensor_phase": "cooldown",
@@ -210179,7 +210866,7 @@
}
},
{
- "id": 20973,
+ "id": 21114,
"properties": {
"power": "4",
"sculk_sensor_phase": "cooldown",
@@ -210187,7 +210874,7 @@
}
},
{
- "id": 20974,
+ "id": 21115,
"properties": {
"power": "5",
"sculk_sensor_phase": "inactive",
@@ -210195,7 +210882,7 @@
}
},
{
- "id": 20975,
+ "id": 21116,
"properties": {
"power": "5",
"sculk_sensor_phase": "inactive",
@@ -210203,7 +210890,7 @@
}
},
{
- "id": 20976,
+ "id": 21117,
"properties": {
"power": "5",
"sculk_sensor_phase": "active",
@@ -210211,7 +210898,7 @@
}
},
{
- "id": 20977,
+ "id": 21118,
"properties": {
"power": "5",
"sculk_sensor_phase": "active",
@@ -210219,7 +210906,7 @@
}
},
{
- "id": 20978,
+ "id": 21119,
"properties": {
"power": "5",
"sculk_sensor_phase": "cooldown",
@@ -210227,7 +210914,7 @@
}
},
{
- "id": 20979,
+ "id": 21120,
"properties": {
"power": "5",
"sculk_sensor_phase": "cooldown",
@@ -210235,7 +210922,7 @@
}
},
{
- "id": 20980,
+ "id": 21121,
"properties": {
"power": "6",
"sculk_sensor_phase": "inactive",
@@ -210243,7 +210930,7 @@
}
},
{
- "id": 20981,
+ "id": 21122,
"properties": {
"power": "6",
"sculk_sensor_phase": "inactive",
@@ -210251,7 +210938,7 @@
}
},
{
- "id": 20982,
+ "id": 21123,
"properties": {
"power": "6",
"sculk_sensor_phase": "active",
@@ -210259,7 +210946,7 @@
}
},
{
- "id": 20983,
+ "id": 21124,
"properties": {
"power": "6",
"sculk_sensor_phase": "active",
@@ -210267,7 +210954,7 @@
}
},
{
- "id": 20984,
+ "id": 21125,
"properties": {
"power": "6",
"sculk_sensor_phase": "cooldown",
@@ -210275,7 +210962,7 @@
}
},
{
- "id": 20985,
+ "id": 21126,
"properties": {
"power": "6",
"sculk_sensor_phase": "cooldown",
@@ -210283,7 +210970,7 @@
}
},
{
- "id": 20986,
+ "id": 21127,
"properties": {
"power": "7",
"sculk_sensor_phase": "inactive",
@@ -210291,7 +210978,7 @@
}
},
{
- "id": 20987,
+ "id": 21128,
"properties": {
"power": "7",
"sculk_sensor_phase": "inactive",
@@ -210299,7 +210986,7 @@
}
},
{
- "id": 20988,
+ "id": 21129,
"properties": {
"power": "7",
"sculk_sensor_phase": "active",
@@ -210307,7 +210994,7 @@
}
},
{
- "id": 20989,
+ "id": 21130,
"properties": {
"power": "7",
"sculk_sensor_phase": "active",
@@ -210315,7 +211002,7 @@
}
},
{
- "id": 20990,
+ "id": 21131,
"properties": {
"power": "7",
"sculk_sensor_phase": "cooldown",
@@ -210323,7 +211010,7 @@
}
},
{
- "id": 20991,
+ "id": 21132,
"properties": {
"power": "7",
"sculk_sensor_phase": "cooldown",
@@ -210331,7 +211018,7 @@
}
},
{
- "id": 20992,
+ "id": 21133,
"properties": {
"power": "8",
"sculk_sensor_phase": "inactive",
@@ -210339,7 +211026,7 @@
}
},
{
- "id": 20993,
+ "id": 21134,
"properties": {
"power": "8",
"sculk_sensor_phase": "inactive",
@@ -210347,7 +211034,7 @@
}
},
{
- "id": 20994,
+ "id": 21135,
"properties": {
"power": "8",
"sculk_sensor_phase": "active",
@@ -210355,7 +211042,7 @@
}
},
{
- "id": 20995,
+ "id": 21136,
"properties": {
"power": "8",
"sculk_sensor_phase": "active",
@@ -210363,7 +211050,7 @@
}
},
{
- "id": 20996,
+ "id": 21137,
"properties": {
"power": "8",
"sculk_sensor_phase": "cooldown",
@@ -210371,7 +211058,7 @@
}
},
{
- "id": 20997,
+ "id": 21138,
"properties": {
"power": "8",
"sculk_sensor_phase": "cooldown",
@@ -210379,7 +211066,7 @@
}
},
{
- "id": 20998,
+ "id": 21139,
"properties": {
"power": "9",
"sculk_sensor_phase": "inactive",
@@ -210387,7 +211074,7 @@
}
},
{
- "id": 20999,
+ "id": 21140,
"properties": {
"power": "9",
"sculk_sensor_phase": "inactive",
@@ -210395,7 +211082,7 @@
}
},
{
- "id": 21000,
+ "id": 21141,
"properties": {
"power": "9",
"sculk_sensor_phase": "active",
@@ -210403,7 +211090,7 @@
}
},
{
- "id": 21001,
+ "id": 21142,
"properties": {
"power": "9",
"sculk_sensor_phase": "active",
@@ -210411,7 +211098,7 @@
}
},
{
- "id": 21002,
+ "id": 21143,
"properties": {
"power": "9",
"sculk_sensor_phase": "cooldown",
@@ -210419,7 +211106,7 @@
}
},
{
- "id": 21003,
+ "id": 21144,
"properties": {
"power": "9",
"sculk_sensor_phase": "cooldown",
@@ -210427,7 +211114,7 @@
}
},
{
- "id": 21004,
+ "id": 21145,
"properties": {
"power": "10",
"sculk_sensor_phase": "inactive",
@@ -210435,7 +211122,7 @@
}
},
{
- "id": 21005,
+ "id": 21146,
"properties": {
"power": "10",
"sculk_sensor_phase": "inactive",
@@ -210443,7 +211130,7 @@
}
},
{
- "id": 21006,
+ "id": 21147,
"properties": {
"power": "10",
"sculk_sensor_phase": "active",
@@ -210451,7 +211138,7 @@
}
},
{
- "id": 21007,
+ "id": 21148,
"properties": {
"power": "10",
"sculk_sensor_phase": "active",
@@ -210459,7 +211146,7 @@
}
},
{
- "id": 21008,
+ "id": 21149,
"properties": {
"power": "10",
"sculk_sensor_phase": "cooldown",
@@ -210467,7 +211154,7 @@
}
},
{
- "id": 21009,
+ "id": 21150,
"properties": {
"power": "10",
"sculk_sensor_phase": "cooldown",
@@ -210475,7 +211162,7 @@
}
},
{
- "id": 21010,
+ "id": 21151,
"properties": {
"power": "11",
"sculk_sensor_phase": "inactive",
@@ -210483,7 +211170,7 @@
}
},
{
- "id": 21011,
+ "id": 21152,
"properties": {
"power": "11",
"sculk_sensor_phase": "inactive",
@@ -210491,7 +211178,7 @@
}
},
{
- "id": 21012,
+ "id": 21153,
"properties": {
"power": "11",
"sculk_sensor_phase": "active",
@@ -210499,7 +211186,7 @@
}
},
{
- "id": 21013,
+ "id": 21154,
"properties": {
"power": "11",
"sculk_sensor_phase": "active",
@@ -210507,7 +211194,7 @@
}
},
{
- "id": 21014,
+ "id": 21155,
"properties": {
"power": "11",
"sculk_sensor_phase": "cooldown",
@@ -210515,7 +211202,7 @@
}
},
{
- "id": 21015,
+ "id": 21156,
"properties": {
"power": "11",
"sculk_sensor_phase": "cooldown",
@@ -210523,7 +211210,7 @@
}
},
{
- "id": 21016,
+ "id": 21157,
"properties": {
"power": "12",
"sculk_sensor_phase": "inactive",
@@ -210531,7 +211218,7 @@
}
},
{
- "id": 21017,
+ "id": 21158,
"properties": {
"power": "12",
"sculk_sensor_phase": "inactive",
@@ -210539,7 +211226,7 @@
}
},
{
- "id": 21018,
+ "id": 21159,
"properties": {
"power": "12",
"sculk_sensor_phase": "active",
@@ -210547,7 +211234,7 @@
}
},
{
- "id": 21019,
+ "id": 21160,
"properties": {
"power": "12",
"sculk_sensor_phase": "active",
@@ -210555,7 +211242,7 @@
}
},
{
- "id": 21020,
+ "id": 21161,
"properties": {
"power": "12",
"sculk_sensor_phase": "cooldown",
@@ -210563,7 +211250,7 @@
}
},
{
- "id": 21021,
+ "id": 21162,
"properties": {
"power": "12",
"sculk_sensor_phase": "cooldown",
@@ -210571,7 +211258,7 @@
}
},
{
- "id": 21022,
+ "id": 21163,
"properties": {
"power": "13",
"sculk_sensor_phase": "inactive",
@@ -210579,7 +211266,7 @@
}
},
{
- "id": 21023,
+ "id": 21164,
"properties": {
"power": "13",
"sculk_sensor_phase": "inactive",
@@ -210587,7 +211274,7 @@
}
},
{
- "id": 21024,
+ "id": 21165,
"properties": {
"power": "13",
"sculk_sensor_phase": "active",
@@ -210595,7 +211282,7 @@
}
},
{
- "id": 21025,
+ "id": 21166,
"properties": {
"power": "13",
"sculk_sensor_phase": "active",
@@ -210603,7 +211290,7 @@
}
},
{
- "id": 21026,
+ "id": 21167,
"properties": {
"power": "13",
"sculk_sensor_phase": "cooldown",
@@ -210611,7 +211298,7 @@
}
},
{
- "id": 21027,
+ "id": 21168,
"properties": {
"power": "13",
"sculk_sensor_phase": "cooldown",
@@ -210619,7 +211306,7 @@
}
},
{
- "id": 21028,
+ "id": 21169,
"properties": {
"power": "14",
"sculk_sensor_phase": "inactive",
@@ -210627,7 +211314,7 @@
}
},
{
- "id": 21029,
+ "id": 21170,
"properties": {
"power": "14",
"sculk_sensor_phase": "inactive",
@@ -210635,7 +211322,7 @@
}
},
{
- "id": 21030,
+ "id": 21171,
"properties": {
"power": "14",
"sculk_sensor_phase": "active",
@@ -210643,7 +211330,7 @@
}
},
{
- "id": 21031,
+ "id": 21172,
"properties": {
"power": "14",
"sculk_sensor_phase": "active",
@@ -210651,7 +211338,7 @@
}
},
{
- "id": 21032,
+ "id": 21173,
"properties": {
"power": "14",
"sculk_sensor_phase": "cooldown",
@@ -210659,7 +211346,7 @@
}
},
{
- "id": 21033,
+ "id": 21174,
"properties": {
"power": "14",
"sculk_sensor_phase": "cooldown",
@@ -210667,7 +211354,7 @@
}
},
{
- "id": 21034,
+ "id": 21175,
"properties": {
"power": "15",
"sculk_sensor_phase": "inactive",
@@ -210675,7 +211362,7 @@
}
},
{
- "id": 21035,
+ "id": 21176,
"properties": {
"power": "15",
"sculk_sensor_phase": "inactive",
@@ -210683,7 +211370,7 @@
}
},
{
- "id": 21036,
+ "id": 21177,
"properties": {
"power": "15",
"sculk_sensor_phase": "active",
@@ -210691,7 +211378,7 @@
}
},
{
- "id": 21037,
+ "id": 21178,
"properties": {
"power": "15",
"sculk_sensor_phase": "active",
@@ -210699,7 +211386,7 @@
}
},
{
- "id": 21038,
+ "id": 21179,
"properties": {
"power": "15",
"sculk_sensor_phase": "cooldown",
@@ -210707,7 +211394,7 @@
}
},
{
- "id": 21039,
+ "id": 21180,
"properties": {
"power": "15",
"sculk_sensor_phase": "cooldown",
@@ -210733,7 +211420,7 @@
},
"states": [
{
- "id": 21555,
+ "id": 21696,
"properties": {
"can_summon": "true",
"shrieking": "true",
@@ -210741,7 +211428,7 @@
}
},
{
- "id": 21556,
+ "id": 21697,
"properties": {
"can_summon": "true",
"shrieking": "true",
@@ -210749,7 +211436,7 @@
}
},
{
- "id": 21557,
+ "id": 21698,
"properties": {
"can_summon": "true",
"shrieking": "false",
@@ -210757,7 +211444,7 @@
}
},
{
- "id": 21558,
+ "id": 21699,
"properties": {
"can_summon": "true",
"shrieking": "false",
@@ -210765,7 +211452,7 @@
}
},
{
- "id": 21559,
+ "id": 21700,
"properties": {
"can_summon": "false",
"shrieking": "true",
@@ -210773,7 +211460,7 @@
}
},
{
- "id": 21560,
+ "id": 21701,
"properties": {
"can_summon": "false",
"shrieking": "true",
@@ -210781,7 +211468,7 @@
}
},
{
- "id": 21561,
+ "id": 21702,
"properties": {
"can_summon": "false",
"shrieking": "false",
@@ -210790,7 +211477,7 @@
},
{
"default": true,
- "id": 21562,
+ "id": 21703,
"properties": {
"can_summon": "false",
"shrieking": "false",
@@ -210832,7 +211519,7 @@
},
"states": [
{
- "id": 21425,
+ "id": 21566,
"properties": {
"down": "true",
"east": "true",
@@ -210844,7 +211531,7 @@
}
},
{
- "id": 21426,
+ "id": 21567,
"properties": {
"down": "true",
"east": "true",
@@ -210856,7 +211543,7 @@
}
},
{
- "id": 21427,
+ "id": 21568,
"properties": {
"down": "true",
"east": "true",
@@ -210868,7 +211555,7 @@
}
},
{
- "id": 21428,
+ "id": 21569,
"properties": {
"down": "true",
"east": "true",
@@ -210880,7 +211567,7 @@
}
},
{
- "id": 21429,
+ "id": 21570,
"properties": {
"down": "true",
"east": "true",
@@ -210892,7 +211579,7 @@
}
},
{
- "id": 21430,
+ "id": 21571,
"properties": {
"down": "true",
"east": "true",
@@ -210904,7 +211591,7 @@
}
},
{
- "id": 21431,
+ "id": 21572,
"properties": {
"down": "true",
"east": "true",
@@ -210916,7 +211603,7 @@
}
},
{
- "id": 21432,
+ "id": 21573,
"properties": {
"down": "true",
"east": "true",
@@ -210928,7 +211615,7 @@
}
},
{
- "id": 21433,
+ "id": 21574,
"properties": {
"down": "true",
"east": "true",
@@ -210940,7 +211627,7 @@
}
},
{
- "id": 21434,
+ "id": 21575,
"properties": {
"down": "true",
"east": "true",
@@ -210952,7 +211639,7 @@
}
},
{
- "id": 21435,
+ "id": 21576,
"properties": {
"down": "true",
"east": "true",
@@ -210964,7 +211651,7 @@
}
},
{
- "id": 21436,
+ "id": 21577,
"properties": {
"down": "true",
"east": "true",
@@ -210976,7 +211663,7 @@
}
},
{
- "id": 21437,
+ "id": 21578,
"properties": {
"down": "true",
"east": "true",
@@ -210988,7 +211675,7 @@
}
},
{
- "id": 21438,
+ "id": 21579,
"properties": {
"down": "true",
"east": "true",
@@ -211000,7 +211687,7 @@
}
},
{
- "id": 21439,
+ "id": 21580,
"properties": {
"down": "true",
"east": "true",
@@ -211012,7 +211699,7 @@
}
},
{
- "id": 21440,
+ "id": 21581,
"properties": {
"down": "true",
"east": "true",
@@ -211024,7 +211711,7 @@
}
},
{
- "id": 21441,
+ "id": 21582,
"properties": {
"down": "true",
"east": "true",
@@ -211036,7 +211723,7 @@
}
},
{
- "id": 21442,
+ "id": 21583,
"properties": {
"down": "true",
"east": "true",
@@ -211048,7 +211735,7 @@
}
},
{
- "id": 21443,
+ "id": 21584,
"properties": {
"down": "true",
"east": "true",
@@ -211060,7 +211747,7 @@
}
},
{
- "id": 21444,
+ "id": 21585,
"properties": {
"down": "true",
"east": "true",
@@ -211072,7 +211759,7 @@
}
},
{
- "id": 21445,
+ "id": 21586,
"properties": {
"down": "true",
"east": "true",
@@ -211084,7 +211771,7 @@
}
},
{
- "id": 21446,
+ "id": 21587,
"properties": {
"down": "true",
"east": "true",
@@ -211096,7 +211783,7 @@
}
},
{
- "id": 21447,
+ "id": 21588,
"properties": {
"down": "true",
"east": "true",
@@ -211108,7 +211795,7 @@
}
},
{
- "id": 21448,
+ "id": 21589,
"properties": {
"down": "true",
"east": "true",
@@ -211120,7 +211807,7 @@
}
},
{
- "id": 21449,
+ "id": 21590,
"properties": {
"down": "true",
"east": "true",
@@ -211132,7 +211819,7 @@
}
},
{
- "id": 21450,
+ "id": 21591,
"properties": {
"down": "true",
"east": "true",
@@ -211144,7 +211831,7 @@
}
},
{
- "id": 21451,
+ "id": 21592,
"properties": {
"down": "true",
"east": "true",
@@ -211156,7 +211843,7 @@
}
},
{
- "id": 21452,
+ "id": 21593,
"properties": {
"down": "true",
"east": "true",
@@ -211168,7 +211855,7 @@
}
},
{
- "id": 21453,
+ "id": 21594,
"properties": {
"down": "true",
"east": "true",
@@ -211180,7 +211867,7 @@
}
},
{
- "id": 21454,
+ "id": 21595,
"properties": {
"down": "true",
"east": "true",
@@ -211192,7 +211879,7 @@
}
},
{
- "id": 21455,
+ "id": 21596,
"properties": {
"down": "true",
"east": "true",
@@ -211204,7 +211891,7 @@
}
},
{
- "id": 21456,
+ "id": 21597,
"properties": {
"down": "true",
"east": "true",
@@ -211216,7 +211903,7 @@
}
},
{
- "id": 21457,
+ "id": 21598,
"properties": {
"down": "true",
"east": "false",
@@ -211228,7 +211915,7 @@
}
},
{
- "id": 21458,
+ "id": 21599,
"properties": {
"down": "true",
"east": "false",
@@ -211240,7 +211927,7 @@
}
},
{
- "id": 21459,
+ "id": 21600,
"properties": {
"down": "true",
"east": "false",
@@ -211252,7 +211939,7 @@
}
},
{
- "id": 21460,
+ "id": 21601,
"properties": {
"down": "true",
"east": "false",
@@ -211264,7 +211951,7 @@
}
},
{
- "id": 21461,
+ "id": 21602,
"properties": {
"down": "true",
"east": "false",
@@ -211276,7 +211963,7 @@
}
},
{
- "id": 21462,
+ "id": 21603,
"properties": {
"down": "true",
"east": "false",
@@ -211288,7 +211975,7 @@
}
},
{
- "id": 21463,
+ "id": 21604,
"properties": {
"down": "true",
"east": "false",
@@ -211300,7 +211987,7 @@
}
},
{
- "id": 21464,
+ "id": 21605,
"properties": {
"down": "true",
"east": "false",
@@ -211312,7 +211999,7 @@
}
},
{
- "id": 21465,
+ "id": 21606,
"properties": {
"down": "true",
"east": "false",
@@ -211324,7 +212011,7 @@
}
},
{
- "id": 21466,
+ "id": 21607,
"properties": {
"down": "true",
"east": "false",
@@ -211336,7 +212023,7 @@
}
},
{
- "id": 21467,
+ "id": 21608,
"properties": {
"down": "true",
"east": "false",
@@ -211348,7 +212035,7 @@
}
},
{
- "id": 21468,
+ "id": 21609,
"properties": {
"down": "true",
"east": "false",
@@ -211360,7 +212047,7 @@
}
},
{
- "id": 21469,
+ "id": 21610,
"properties": {
"down": "true",
"east": "false",
@@ -211372,7 +212059,7 @@
}
},
{
- "id": 21470,
+ "id": 21611,
"properties": {
"down": "true",
"east": "false",
@@ -211384,7 +212071,7 @@
}
},
{
- "id": 21471,
+ "id": 21612,
"properties": {
"down": "true",
"east": "false",
@@ -211396,7 +212083,7 @@
}
},
{
- "id": 21472,
+ "id": 21613,
"properties": {
"down": "true",
"east": "false",
@@ -211408,7 +212095,7 @@
}
},
{
- "id": 21473,
+ "id": 21614,
"properties": {
"down": "true",
"east": "false",
@@ -211420,7 +212107,7 @@
}
},
{
- "id": 21474,
+ "id": 21615,
"properties": {
"down": "true",
"east": "false",
@@ -211432,7 +212119,7 @@
}
},
{
- "id": 21475,
+ "id": 21616,
"properties": {
"down": "true",
"east": "false",
@@ -211444,7 +212131,7 @@
}
},
{
- "id": 21476,
+ "id": 21617,
"properties": {
"down": "true",
"east": "false",
@@ -211456,7 +212143,7 @@
}
},
{
- "id": 21477,
+ "id": 21618,
"properties": {
"down": "true",
"east": "false",
@@ -211468,7 +212155,7 @@
}
},
{
- "id": 21478,
+ "id": 21619,
"properties": {
"down": "true",
"east": "false",
@@ -211480,7 +212167,7 @@
}
},
{
- "id": 21479,
+ "id": 21620,
"properties": {
"down": "true",
"east": "false",
@@ -211492,7 +212179,7 @@
}
},
{
- "id": 21480,
+ "id": 21621,
"properties": {
"down": "true",
"east": "false",
@@ -211504,7 +212191,7 @@
}
},
{
- "id": 21481,
+ "id": 21622,
"properties": {
"down": "true",
"east": "false",
@@ -211516,7 +212203,7 @@
}
},
{
- "id": 21482,
+ "id": 21623,
"properties": {
"down": "true",
"east": "false",
@@ -211528,7 +212215,7 @@
}
},
{
- "id": 21483,
+ "id": 21624,
"properties": {
"down": "true",
"east": "false",
@@ -211540,7 +212227,7 @@
}
},
{
- "id": 21484,
+ "id": 21625,
"properties": {
"down": "true",
"east": "false",
@@ -211552,7 +212239,7 @@
}
},
{
- "id": 21485,
+ "id": 21626,
"properties": {
"down": "true",
"east": "false",
@@ -211564,7 +212251,7 @@
}
},
{
- "id": 21486,
+ "id": 21627,
"properties": {
"down": "true",
"east": "false",
@@ -211576,7 +212263,7 @@
}
},
{
- "id": 21487,
+ "id": 21628,
"properties": {
"down": "true",
"east": "false",
@@ -211588,7 +212275,7 @@
}
},
{
- "id": 21488,
+ "id": 21629,
"properties": {
"down": "true",
"east": "false",
@@ -211600,7 +212287,7 @@
}
},
{
- "id": 21489,
+ "id": 21630,
"properties": {
"down": "false",
"east": "true",
@@ -211612,7 +212299,7 @@
}
},
{
- "id": 21490,
+ "id": 21631,
"properties": {
"down": "false",
"east": "true",
@@ -211624,7 +212311,7 @@
}
},
{
- "id": 21491,
+ "id": 21632,
"properties": {
"down": "false",
"east": "true",
@@ -211636,7 +212323,7 @@
}
},
{
- "id": 21492,
+ "id": 21633,
"properties": {
"down": "false",
"east": "true",
@@ -211648,7 +212335,7 @@
}
},
{
- "id": 21493,
+ "id": 21634,
"properties": {
"down": "false",
"east": "true",
@@ -211660,7 +212347,7 @@
}
},
{
- "id": 21494,
+ "id": 21635,
"properties": {
"down": "false",
"east": "true",
@@ -211672,7 +212359,7 @@
}
},
{
- "id": 21495,
+ "id": 21636,
"properties": {
"down": "false",
"east": "true",
@@ -211684,7 +212371,7 @@
}
},
{
- "id": 21496,
+ "id": 21637,
"properties": {
"down": "false",
"east": "true",
@@ -211696,7 +212383,7 @@
}
},
{
- "id": 21497,
+ "id": 21638,
"properties": {
"down": "false",
"east": "true",
@@ -211708,7 +212395,7 @@
}
},
{
- "id": 21498,
+ "id": 21639,
"properties": {
"down": "false",
"east": "true",
@@ -211720,7 +212407,7 @@
}
},
{
- "id": 21499,
+ "id": 21640,
"properties": {
"down": "false",
"east": "true",
@@ -211732,7 +212419,7 @@
}
},
{
- "id": 21500,
+ "id": 21641,
"properties": {
"down": "false",
"east": "true",
@@ -211744,7 +212431,7 @@
}
},
{
- "id": 21501,
+ "id": 21642,
"properties": {
"down": "false",
"east": "true",
@@ -211756,7 +212443,7 @@
}
},
{
- "id": 21502,
+ "id": 21643,
"properties": {
"down": "false",
"east": "true",
@@ -211768,7 +212455,7 @@
}
},
{
- "id": 21503,
+ "id": 21644,
"properties": {
"down": "false",
"east": "true",
@@ -211780,7 +212467,7 @@
}
},
{
- "id": 21504,
+ "id": 21645,
"properties": {
"down": "false",
"east": "true",
@@ -211792,7 +212479,7 @@
}
},
{
- "id": 21505,
+ "id": 21646,
"properties": {
"down": "false",
"east": "true",
@@ -211804,7 +212491,7 @@
}
},
{
- "id": 21506,
+ "id": 21647,
"properties": {
"down": "false",
"east": "true",
@@ -211816,7 +212503,7 @@
}
},
{
- "id": 21507,
+ "id": 21648,
"properties": {
"down": "false",
"east": "true",
@@ -211828,7 +212515,7 @@
}
},
{
- "id": 21508,
+ "id": 21649,
"properties": {
"down": "false",
"east": "true",
@@ -211840,7 +212527,7 @@
}
},
{
- "id": 21509,
+ "id": 21650,
"properties": {
"down": "false",
"east": "true",
@@ -211852,7 +212539,7 @@
}
},
{
- "id": 21510,
+ "id": 21651,
"properties": {
"down": "false",
"east": "true",
@@ -211864,7 +212551,7 @@
}
},
{
- "id": 21511,
+ "id": 21652,
"properties": {
"down": "false",
"east": "true",
@@ -211876,7 +212563,7 @@
}
},
{
- "id": 21512,
+ "id": 21653,
"properties": {
"down": "false",
"east": "true",
@@ -211888,7 +212575,7 @@
}
},
{
- "id": 21513,
+ "id": 21654,
"properties": {
"down": "false",
"east": "true",
@@ -211900,7 +212587,7 @@
}
},
{
- "id": 21514,
+ "id": 21655,
"properties": {
"down": "false",
"east": "true",
@@ -211912,7 +212599,7 @@
}
},
{
- "id": 21515,
+ "id": 21656,
"properties": {
"down": "false",
"east": "true",
@@ -211924,7 +212611,7 @@
}
},
{
- "id": 21516,
+ "id": 21657,
"properties": {
"down": "false",
"east": "true",
@@ -211936,7 +212623,7 @@
}
},
{
- "id": 21517,
+ "id": 21658,
"properties": {
"down": "false",
"east": "true",
@@ -211948,7 +212635,7 @@
}
},
{
- "id": 21518,
+ "id": 21659,
"properties": {
"down": "false",
"east": "true",
@@ -211960,7 +212647,7 @@
}
},
{
- "id": 21519,
+ "id": 21660,
"properties": {
"down": "false",
"east": "true",
@@ -211972,7 +212659,7 @@
}
},
{
- "id": 21520,
+ "id": 21661,
"properties": {
"down": "false",
"east": "true",
@@ -211984,7 +212671,7 @@
}
},
{
- "id": 21521,
+ "id": 21662,
"properties": {
"down": "false",
"east": "false",
@@ -211996,7 +212683,7 @@
}
},
{
- "id": 21522,
+ "id": 21663,
"properties": {
"down": "false",
"east": "false",
@@ -212008,7 +212695,7 @@
}
},
{
- "id": 21523,
+ "id": 21664,
"properties": {
"down": "false",
"east": "false",
@@ -212020,7 +212707,7 @@
}
},
{
- "id": 21524,
+ "id": 21665,
"properties": {
"down": "false",
"east": "false",
@@ -212032,7 +212719,7 @@
}
},
{
- "id": 21525,
+ "id": 21666,
"properties": {
"down": "false",
"east": "false",
@@ -212044,7 +212731,7 @@
}
},
{
- "id": 21526,
+ "id": 21667,
"properties": {
"down": "false",
"east": "false",
@@ -212056,7 +212743,7 @@
}
},
{
- "id": 21527,
+ "id": 21668,
"properties": {
"down": "false",
"east": "false",
@@ -212068,7 +212755,7 @@
}
},
{
- "id": 21528,
+ "id": 21669,
"properties": {
"down": "false",
"east": "false",
@@ -212080,7 +212767,7 @@
}
},
{
- "id": 21529,
+ "id": 21670,
"properties": {
"down": "false",
"east": "false",
@@ -212092,7 +212779,7 @@
}
},
{
- "id": 21530,
+ "id": 21671,
"properties": {
"down": "false",
"east": "false",
@@ -212104,7 +212791,7 @@
}
},
{
- "id": 21531,
+ "id": 21672,
"properties": {
"down": "false",
"east": "false",
@@ -212116,7 +212803,7 @@
}
},
{
- "id": 21532,
+ "id": 21673,
"properties": {
"down": "false",
"east": "false",
@@ -212128,7 +212815,7 @@
}
},
{
- "id": 21533,
+ "id": 21674,
"properties": {
"down": "false",
"east": "false",
@@ -212140,7 +212827,7 @@
}
},
{
- "id": 21534,
+ "id": 21675,
"properties": {
"down": "false",
"east": "false",
@@ -212152,7 +212839,7 @@
}
},
{
- "id": 21535,
+ "id": 21676,
"properties": {
"down": "false",
"east": "false",
@@ -212164,7 +212851,7 @@
}
},
{
- "id": 21536,
+ "id": 21677,
"properties": {
"down": "false",
"east": "false",
@@ -212176,7 +212863,7 @@
}
},
{
- "id": 21537,
+ "id": 21678,
"properties": {
"down": "false",
"east": "false",
@@ -212188,7 +212875,7 @@
}
},
{
- "id": 21538,
+ "id": 21679,
"properties": {
"down": "false",
"east": "false",
@@ -212200,7 +212887,7 @@
}
},
{
- "id": 21539,
+ "id": 21680,
"properties": {
"down": "false",
"east": "false",
@@ -212212,7 +212899,7 @@
}
},
{
- "id": 21540,
+ "id": 21681,
"properties": {
"down": "false",
"east": "false",
@@ -212224,7 +212911,7 @@
}
},
{
- "id": 21541,
+ "id": 21682,
"properties": {
"down": "false",
"east": "false",
@@ -212236,7 +212923,7 @@
}
},
{
- "id": 21542,
+ "id": 21683,
"properties": {
"down": "false",
"east": "false",
@@ -212248,7 +212935,7 @@
}
},
{
- "id": 21543,
+ "id": 21684,
"properties": {
"down": "false",
"east": "false",
@@ -212260,7 +212947,7 @@
}
},
{
- "id": 21544,
+ "id": 21685,
"properties": {
"down": "false",
"east": "false",
@@ -212272,7 +212959,7 @@
}
},
{
- "id": 21545,
+ "id": 21686,
"properties": {
"down": "false",
"east": "false",
@@ -212284,7 +212971,7 @@
}
},
{
- "id": 21546,
+ "id": 21687,
"properties": {
"down": "false",
"east": "false",
@@ -212296,7 +212983,7 @@
}
},
{
- "id": 21547,
+ "id": 21688,
"properties": {
"down": "false",
"east": "false",
@@ -212308,7 +212995,7 @@
}
},
{
- "id": 21548,
+ "id": 21689,
"properties": {
"down": "false",
"east": "false",
@@ -212320,7 +213007,7 @@
}
},
{
- "id": 21549,
+ "id": 21690,
"properties": {
"down": "false",
"east": "false",
@@ -212332,7 +213019,7 @@
}
},
{
- "id": 21550,
+ "id": 21691,
"properties": {
"down": "false",
"east": "false",
@@ -212344,7 +213031,7 @@
}
},
{
- "id": 21551,
+ "id": 21692,
"properties": {
"down": "false",
"east": "false",
@@ -212357,7 +213044,7 @@
},
{
"default": true,
- "id": 21552,
+ "id": 21693,
"properties": {
"down": "false",
"east": "false",
@@ -212374,7 +213061,7 @@
"states": [
{
"default": true,
- "id": 10583
+ "id": 10724
}
]
},
@@ -212394,56 +213081,56 @@
"states": [
{
"default": true,
- "id": 12792,
+ "id": 12933,
"properties": {
"pickles": "1",
"waterlogged": "true"
}
},
{
- "id": 12793,
+ "id": 12934,
"properties": {
"pickles": "1",
"waterlogged": "false"
}
},
{
- "id": 12794,
+ "id": 12935,
"properties": {
"pickles": "2",
"waterlogged": "true"
}
},
{
- "id": 12795,
+ "id": 12936,
"properties": {
"pickles": "2",
"waterlogged": "false"
}
},
{
- "id": 12796,
+ "id": 12937,
"properties": {
"pickles": "3",
"waterlogged": "true"
}
},
{
- "id": 12797,
+ "id": 12938,
"properties": {
"pickles": "3",
"waterlogged": "false"
}
},
{
- "id": 12798,
+ "id": 12939,
"properties": {
"pickles": "4",
"waterlogged": "true"
}
},
{
- "id": 12799,
+ "id": 12940,
"properties": {
"pickles": "4",
"waterlogged": "false"
@@ -212463,7 +213150,7 @@
"states": [
{
"default": true,
- "id": 18469
+ "id": 18610
}
]
},
@@ -212480,38 +213167,38 @@
},
"states": [
{
- "id": 12421,
+ "id": 12562,
"properties": {
"facing": "north"
}
},
{
- "id": 12422,
+ "id": 12563,
"properties": {
"facing": "east"
}
},
{
- "id": 12423,
+ "id": 12564,
"properties": {
"facing": "south"
}
},
{
- "id": 12424,
+ "id": 12565,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12425,
+ "id": 12566,
"properties": {
"facing": "up"
}
},
{
- "id": 12426,
+ "id": 12567,
"properties": {
"facing": "down"
}
@@ -212520,6 +213207,10 @@
},
"minecraft:skeleton_skull": {
"properties": {
+ "powered": [
+ "true",
+ "false"
+ ],
"rotation": [
"0",
"1",
@@ -212541,99 +213232,227 @@
},
"states": [
{
- "default": true,
"id": 8827,
"properties": {
+ "powered": "true",
"rotation": "0"
}
},
{
"id": 8828,
"properties": {
+ "powered": "true",
"rotation": "1"
}
},
{
"id": 8829,
"properties": {
+ "powered": "true",
"rotation": "2"
}
},
{
"id": 8830,
"properties": {
+ "powered": "true",
"rotation": "3"
}
},
{
"id": 8831,
"properties": {
+ "powered": "true",
"rotation": "4"
}
},
{
"id": 8832,
"properties": {
+ "powered": "true",
"rotation": "5"
}
},
{
"id": 8833,
"properties": {
+ "powered": "true",
"rotation": "6"
}
},
{
"id": 8834,
"properties": {
+ "powered": "true",
"rotation": "7"
}
},
{
"id": 8835,
"properties": {
+ "powered": "true",
"rotation": "8"
}
},
{
"id": 8836,
"properties": {
+ "powered": "true",
"rotation": "9"
}
},
{
"id": 8837,
"properties": {
+ "powered": "true",
"rotation": "10"
}
},
{
"id": 8838,
"properties": {
+ "powered": "true",
"rotation": "11"
}
},
{
"id": 8839,
"properties": {
+ "powered": "true",
"rotation": "12"
}
},
{
"id": 8840,
"properties": {
+ "powered": "true",
"rotation": "13"
}
},
{
"id": 8841,
"properties": {
+ "powered": "true",
"rotation": "14"
}
},
{
"id": 8842,
"properties": {
+ "powered": "true",
+ "rotation": "15"
+ }
+ },
+ {
+ "default": true,
+ "id": 8843,
+ "properties": {
+ "powered": "false",
+ "rotation": "0"
+ }
+ },
+ {
+ "id": 8844,
+ "properties": {
+ "powered": "false",
+ "rotation": "1"
+ }
+ },
+ {
+ "id": 8845,
+ "properties": {
+ "powered": "false",
+ "rotation": "2"
+ }
+ },
+ {
+ "id": 8846,
+ "properties": {
+ "powered": "false",
+ "rotation": "3"
+ }
+ },
+ {
+ "id": 8847,
+ "properties": {
+ "powered": "false",
+ "rotation": "4"
+ }
+ },
+ {
+ "id": 8848,
+ "properties": {
+ "powered": "false",
+ "rotation": "5"
+ }
+ },
+ {
+ "id": 8849,
+ "properties": {
+ "powered": "false",
+ "rotation": "6"
+ }
+ },
+ {
+ "id": 8850,
+ "properties": {
+ "powered": "false",
+ "rotation": "7"
+ }
+ },
+ {
+ "id": 8851,
+ "properties": {
+ "powered": "false",
+ "rotation": "8"
+ }
+ },
+ {
+ "id": 8852,
+ "properties": {
+ "powered": "false",
+ "rotation": "9"
+ }
+ },
+ {
+ "id": 8853,
+ "properties": {
+ "powered": "false",
+ "rotation": "10"
+ }
+ },
+ {
+ "id": 8854,
+ "properties": {
+ "powered": "false",
+ "rotation": "11"
+ }
+ },
+ {
+ "id": 8855,
+ "properties": {
+ "powered": "false",
+ "rotation": "12"
+ }
+ },
+ {
+ "id": 8856,
+ "properties": {
+ "powered": "false",
+ "rotation": "13"
+ }
+ },
+ {
+ "id": 8857,
+ "properties": {
+ "powered": "false",
+ "rotation": "14"
+ }
+ },
+ {
+ "id": 8858,
+ "properties": {
+ "powered": "false",
"rotation": "15"
}
}
@@ -212646,32 +213465,68 @@
"south",
"west",
"east"
+ ],
+ "powered": [
+ "true",
+ "false"
]
},
"states": [
+ {
+ "id": 8859,
+ "properties": {
+ "facing": "north",
+ "powered": "true"
+ }
+ },
{
"default": true,
- "id": 8843,
+ "id": 8860,
"properties": {
- "facing": "north"
+ "facing": "north",
+ "powered": "false"
}
},
{
- "id": 8844,
+ "id": 8861,
"properties": {
- "facing": "south"
+ "facing": "south",
+ "powered": "true"
}
},
{
- "id": 8845,
+ "id": 8862,
"properties": {
- "facing": "west"
+ "facing": "south",
+ "powered": "false"
}
},
{
- "id": 8846,
+ "id": 8863,
"properties": {
- "facing": "east"
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8864,
+ "properties": {
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 8865,
+ "properties": {
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8866,
+ "properties": {
+ "facing": "east",
+ "powered": "false"
}
}
]
@@ -212680,7 +213535,7 @@
"states": [
{
"default": true,
- "id": 10224
+ "id": 10364
}
]
},
@@ -212701,63 +213556,63 @@
},
"states": [
{
- "id": 20928,
+ "id": 21069,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 20929,
+ "id": 21070,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 20930,
+ "id": 21071,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 20931,
+ "id": 21072,
"properties": {
"facing": "east",
"waterlogged": "false"
}
},
{
- "id": 20932,
+ "id": 21073,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 20933,
+ "id": 21074,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 20934,
+ "id": 21075,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 20935,
+ "id": 21076,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 20936,
+ "id": 21077,
"properties": {
"facing": "up",
"waterlogged": "true"
@@ -212765,21 +213620,21 @@
},
{
"default": true,
- "id": 20937,
+ "id": 21078,
"properties": {
"facing": "up",
"waterlogged": "false"
}
},
{
- "id": 20938,
+ "id": 21079,
"properties": {
"facing": "down",
"waterlogged": "true"
}
},
{
- "id": 20939,
+ "id": 21080,
"properties": {
"facing": "down",
"waterlogged": "false"
@@ -212806,7 +213661,7 @@
},
"states": [
{
- "id": 22429,
+ "id": 22570,
"properties": {
"facing": "north",
"half": "upper",
@@ -212814,7 +213669,7 @@
}
},
{
- "id": 22430,
+ "id": 22571,
"properties": {
"facing": "north",
"half": "upper",
@@ -212822,7 +213677,7 @@
}
},
{
- "id": 22431,
+ "id": 22572,
"properties": {
"facing": "north",
"half": "lower",
@@ -212831,7 +213686,7 @@
},
{
"default": true,
- "id": 22432,
+ "id": 22573,
"properties": {
"facing": "north",
"half": "lower",
@@ -212839,7 +213694,7 @@
}
},
{
- "id": 22433,
+ "id": 22574,
"properties": {
"facing": "south",
"half": "upper",
@@ -212847,7 +213702,7 @@
}
},
{
- "id": 22434,
+ "id": 22575,
"properties": {
"facing": "south",
"half": "upper",
@@ -212855,7 +213710,7 @@
}
},
{
- "id": 22435,
+ "id": 22576,
"properties": {
"facing": "south",
"half": "lower",
@@ -212863,7 +213718,7 @@
}
},
{
- "id": 22436,
+ "id": 22577,
"properties": {
"facing": "south",
"half": "lower",
@@ -212871,7 +213726,7 @@
}
},
{
- "id": 22437,
+ "id": 22578,
"properties": {
"facing": "west",
"half": "upper",
@@ -212879,7 +213734,7 @@
}
},
{
- "id": 22438,
+ "id": 22579,
"properties": {
"facing": "west",
"half": "upper",
@@ -212887,7 +213742,7 @@
}
},
{
- "id": 22439,
+ "id": 22580,
"properties": {
"facing": "west",
"half": "lower",
@@ -212895,7 +213750,7 @@
}
},
{
- "id": 22440,
+ "id": 22581,
"properties": {
"facing": "west",
"half": "lower",
@@ -212903,7 +213758,7 @@
}
},
{
- "id": 22441,
+ "id": 22582,
"properties": {
"facing": "east",
"half": "upper",
@@ -212911,7 +213766,7 @@
}
},
{
- "id": 22442,
+ "id": 22583,
"properties": {
"facing": "east",
"half": "upper",
@@ -212919,7 +213774,7 @@
}
},
{
- "id": 22443,
+ "id": 22584,
"properties": {
"facing": "east",
"half": "lower",
@@ -212927,7 +213782,7 @@
}
},
{
- "id": 22444,
+ "id": 22585,
"properties": {
"facing": "east",
"half": "lower",
@@ -212940,7 +213795,7 @@
"states": [
{
"default": true,
- "id": 18325
+ "id": 18466
}
]
},
@@ -212959,7 +213814,7 @@
},
"states": [
{
- "id": 18279,
+ "id": 18420,
"properties": {
"facing": "north",
"lit": "true"
@@ -212967,49 +213822,49 @@
},
{
"default": true,
- "id": 18280,
+ "id": 18421,
"properties": {
"facing": "north",
"lit": "false"
}
},
{
- "id": 18281,
+ "id": 18422,
"properties": {
"facing": "south",
"lit": "true"
}
},
{
- "id": 18282,
+ "id": 18423,
"properties": {
"facing": "south",
"lit": "false"
}
},
{
- "id": 18283,
+ "id": 18424,
"properties": {
"facing": "west",
"lit": "true"
}
},
{
- "id": 18284,
+ "id": 18425,
"properties": {
"facing": "west",
"lit": "false"
}
},
{
- "id": 18285,
+ "id": 18426,
"properties": {
"facing": "east",
"lit": "true"
}
},
{
- "id": 18286,
+ "id": 18427,
"properties": {
"facing": "east",
"lit": "false"
@@ -213021,7 +213876,7 @@
"states": [
{
"default": true,
- "id": 24102
+ "id": 24243
}
]
},
@@ -213029,7 +213884,7 @@
"states": [
{
"default": true,
- "id": 11167
+ "id": 11308
}
]
},
@@ -213047,21 +213902,21 @@
},
"states": [
{
- "id": 13983,
+ "id": 14124,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13984,
+ "id": 14125,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13985,
+ "id": 14126,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -213069,21 +213924,21 @@
},
{
"default": true,
- "id": 13986,
+ "id": 14127,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13987,
+ "id": 14128,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13988,
+ "id": 14129,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -213117,7 +213972,7 @@
},
"states": [
{
- "id": 13461,
+ "id": 13602,
"properties": {
"facing": "north",
"half": "top",
@@ -213126,7 +213981,7 @@
}
},
{
- "id": 13462,
+ "id": 13603,
"properties": {
"facing": "north",
"half": "top",
@@ -213135,7 +213990,7 @@
}
},
{
- "id": 13463,
+ "id": 13604,
"properties": {
"facing": "north",
"half": "top",
@@ -213144,7 +213999,7 @@
}
},
{
- "id": 13464,
+ "id": 13605,
"properties": {
"facing": "north",
"half": "top",
@@ -213153,7 +214008,7 @@
}
},
{
- "id": 13465,
+ "id": 13606,
"properties": {
"facing": "north",
"half": "top",
@@ -213162,7 +214017,7 @@
}
},
{
- "id": 13466,
+ "id": 13607,
"properties": {
"facing": "north",
"half": "top",
@@ -213171,7 +214026,7 @@
}
},
{
- "id": 13467,
+ "id": 13608,
"properties": {
"facing": "north",
"half": "top",
@@ -213180,7 +214035,7 @@
}
},
{
- "id": 13468,
+ "id": 13609,
"properties": {
"facing": "north",
"half": "top",
@@ -213189,7 +214044,7 @@
}
},
{
- "id": 13469,
+ "id": 13610,
"properties": {
"facing": "north",
"half": "top",
@@ -213198,7 +214053,7 @@
}
},
{
- "id": 13470,
+ "id": 13611,
"properties": {
"facing": "north",
"half": "top",
@@ -213207,7 +214062,7 @@
}
},
{
- "id": 13471,
+ "id": 13612,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213217,7 +214072,7 @@
},
{
"default": true,
- "id": 13472,
+ "id": 13613,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213226,7 +214081,7 @@
}
},
{
- "id": 13473,
+ "id": 13614,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213235,7 +214090,7 @@
}
},
{
- "id": 13474,
+ "id": 13615,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213244,7 +214099,7 @@
}
},
{
- "id": 13475,
+ "id": 13616,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213253,7 +214108,7 @@
}
},
{
- "id": 13476,
+ "id": 13617,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213262,7 +214117,7 @@
}
},
{
- "id": 13477,
+ "id": 13618,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213271,7 +214126,7 @@
}
},
{
- "id": 13478,
+ "id": 13619,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213280,7 +214135,7 @@
}
},
{
- "id": 13479,
+ "id": 13620,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213289,7 +214144,7 @@
}
},
{
- "id": 13480,
+ "id": 13621,
"properties": {
"facing": "north",
"half": "bottom",
@@ -213298,7 +214153,7 @@
}
},
{
- "id": 13481,
+ "id": 13622,
"properties": {
"facing": "south",
"half": "top",
@@ -213307,7 +214162,7 @@
}
},
{
- "id": 13482,
+ "id": 13623,
"properties": {
"facing": "south",
"half": "top",
@@ -213316,7 +214171,7 @@
}
},
{
- "id": 13483,
+ "id": 13624,
"properties": {
"facing": "south",
"half": "top",
@@ -213325,7 +214180,7 @@
}
},
{
- "id": 13484,
+ "id": 13625,
"properties": {
"facing": "south",
"half": "top",
@@ -213334,7 +214189,7 @@
}
},
{
- "id": 13485,
+ "id": 13626,
"properties": {
"facing": "south",
"half": "top",
@@ -213343,7 +214198,7 @@
}
},
{
- "id": 13486,
+ "id": 13627,
"properties": {
"facing": "south",
"half": "top",
@@ -213352,7 +214207,7 @@
}
},
{
- "id": 13487,
+ "id": 13628,
"properties": {
"facing": "south",
"half": "top",
@@ -213361,7 +214216,7 @@
}
},
{
- "id": 13488,
+ "id": 13629,
"properties": {
"facing": "south",
"half": "top",
@@ -213370,7 +214225,7 @@
}
},
{
- "id": 13489,
+ "id": 13630,
"properties": {
"facing": "south",
"half": "top",
@@ -213379,7 +214234,7 @@
}
},
{
- "id": 13490,
+ "id": 13631,
"properties": {
"facing": "south",
"half": "top",
@@ -213388,7 +214243,7 @@
}
},
{
- "id": 13491,
+ "id": 13632,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213397,7 +214252,7 @@
}
},
{
- "id": 13492,
+ "id": 13633,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213406,7 +214261,7 @@
}
},
{
- "id": 13493,
+ "id": 13634,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213415,7 +214270,7 @@
}
},
{
- "id": 13494,
+ "id": 13635,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213424,7 +214279,7 @@
}
},
{
- "id": 13495,
+ "id": 13636,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213433,7 +214288,7 @@
}
},
{
- "id": 13496,
+ "id": 13637,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213442,7 +214297,7 @@
}
},
{
- "id": 13497,
+ "id": 13638,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213451,7 +214306,7 @@
}
},
{
- "id": 13498,
+ "id": 13639,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213460,7 +214315,7 @@
}
},
{
- "id": 13499,
+ "id": 13640,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213469,7 +214324,7 @@
}
},
{
- "id": 13500,
+ "id": 13641,
"properties": {
"facing": "south",
"half": "bottom",
@@ -213478,7 +214333,7 @@
}
},
{
- "id": 13501,
+ "id": 13642,
"properties": {
"facing": "west",
"half": "top",
@@ -213487,7 +214342,7 @@
}
},
{
- "id": 13502,
+ "id": 13643,
"properties": {
"facing": "west",
"half": "top",
@@ -213496,7 +214351,7 @@
}
},
{
- "id": 13503,
+ "id": 13644,
"properties": {
"facing": "west",
"half": "top",
@@ -213505,7 +214360,7 @@
}
},
{
- "id": 13504,
+ "id": 13645,
"properties": {
"facing": "west",
"half": "top",
@@ -213514,7 +214369,7 @@
}
},
{
- "id": 13505,
+ "id": 13646,
"properties": {
"facing": "west",
"half": "top",
@@ -213523,7 +214378,7 @@
}
},
{
- "id": 13506,
+ "id": 13647,
"properties": {
"facing": "west",
"half": "top",
@@ -213532,7 +214387,7 @@
}
},
{
- "id": 13507,
+ "id": 13648,
"properties": {
"facing": "west",
"half": "top",
@@ -213541,7 +214396,7 @@
}
},
{
- "id": 13508,
+ "id": 13649,
"properties": {
"facing": "west",
"half": "top",
@@ -213550,7 +214405,7 @@
}
},
{
- "id": 13509,
+ "id": 13650,
"properties": {
"facing": "west",
"half": "top",
@@ -213559,7 +214414,7 @@
}
},
{
- "id": 13510,
+ "id": 13651,
"properties": {
"facing": "west",
"half": "top",
@@ -213568,7 +214423,7 @@
}
},
{
- "id": 13511,
+ "id": 13652,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213577,7 +214432,7 @@
}
},
{
- "id": 13512,
+ "id": 13653,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213586,7 +214441,7 @@
}
},
{
- "id": 13513,
+ "id": 13654,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213595,7 +214450,7 @@
}
},
{
- "id": 13514,
+ "id": 13655,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213604,7 +214459,7 @@
}
},
{
- "id": 13515,
+ "id": 13656,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213613,7 +214468,7 @@
}
},
{
- "id": 13516,
+ "id": 13657,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213622,7 +214477,7 @@
}
},
{
- "id": 13517,
+ "id": 13658,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213631,7 +214486,7 @@
}
},
{
- "id": 13518,
+ "id": 13659,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213640,7 +214495,7 @@
}
},
{
- "id": 13519,
+ "id": 13660,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213649,7 +214504,7 @@
}
},
{
- "id": 13520,
+ "id": 13661,
"properties": {
"facing": "west",
"half": "bottom",
@@ -213658,7 +214513,7 @@
}
},
{
- "id": 13521,
+ "id": 13662,
"properties": {
"facing": "east",
"half": "top",
@@ -213667,7 +214522,7 @@
}
},
{
- "id": 13522,
+ "id": 13663,
"properties": {
"facing": "east",
"half": "top",
@@ -213676,7 +214531,7 @@
}
},
{
- "id": 13523,
+ "id": 13664,
"properties": {
"facing": "east",
"half": "top",
@@ -213685,7 +214540,7 @@
}
},
{
- "id": 13524,
+ "id": 13665,
"properties": {
"facing": "east",
"half": "top",
@@ -213694,7 +214549,7 @@
}
},
{
- "id": 13525,
+ "id": 13666,
"properties": {
"facing": "east",
"half": "top",
@@ -213703,7 +214558,7 @@
}
},
{
- "id": 13526,
+ "id": 13667,
"properties": {
"facing": "east",
"half": "top",
@@ -213712,7 +214567,7 @@
}
},
{
- "id": 13527,
+ "id": 13668,
"properties": {
"facing": "east",
"half": "top",
@@ -213721,7 +214576,7 @@
}
},
{
- "id": 13528,
+ "id": 13669,
"properties": {
"facing": "east",
"half": "top",
@@ -213730,7 +214585,7 @@
}
},
{
- "id": 13529,
+ "id": 13670,
"properties": {
"facing": "east",
"half": "top",
@@ -213739,7 +214594,7 @@
}
},
{
- "id": 13530,
+ "id": 13671,
"properties": {
"facing": "east",
"half": "top",
@@ -213748,7 +214603,7 @@
}
},
{
- "id": 13531,
+ "id": 13672,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213757,7 +214612,7 @@
}
},
{
- "id": 13532,
+ "id": 13673,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213766,7 +214621,7 @@
}
},
{
- "id": 13533,
+ "id": 13674,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213775,7 +214630,7 @@
}
},
{
- "id": 13534,
+ "id": 13675,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213784,7 +214639,7 @@
}
},
{
- "id": 13535,
+ "id": 13676,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213793,7 +214648,7 @@
}
},
{
- "id": 13536,
+ "id": 13677,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213802,7 +214657,7 @@
}
},
{
- "id": 13537,
+ "id": 13678,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213811,7 +214666,7 @@
}
},
{
- "id": 13538,
+ "id": 13679,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213820,7 +214675,7 @@
}
},
{
- "id": 13539,
+ "id": 13680,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213829,7 +214684,7 @@
}
},
{
- "id": 13540,
+ "id": 13681,
"properties": {
"facing": "east",
"half": "bottom",
@@ -213843,7 +214698,7 @@
"states": [
{
"default": true,
- "id": 11168
+ "id": 11309
}
]
},
@@ -213861,21 +214716,21 @@
},
"states": [
{
- "id": 13947,
+ "id": 14088,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13948,
+ "id": 14089,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13949,
+ "id": 14090,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -213883,21 +214738,21 @@
},
{
"default": true,
- "id": 13950,
+ "id": 14091,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13951,
+ "id": 14092,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13952,
+ "id": 14093,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -213931,7 +214786,7 @@
},
"states": [
{
- "id": 12901,
+ "id": 13042,
"properties": {
"facing": "north",
"half": "top",
@@ -213940,7 +214795,7 @@
}
},
{
- "id": 12902,
+ "id": 13043,
"properties": {
"facing": "north",
"half": "top",
@@ -213949,7 +214804,7 @@
}
},
{
- "id": 12903,
+ "id": 13044,
"properties": {
"facing": "north",
"half": "top",
@@ -213958,7 +214813,7 @@
}
},
{
- "id": 12904,
+ "id": 13045,
"properties": {
"facing": "north",
"half": "top",
@@ -213967,7 +214822,7 @@
}
},
{
- "id": 12905,
+ "id": 13046,
"properties": {
"facing": "north",
"half": "top",
@@ -213976,7 +214831,7 @@
}
},
{
- "id": 12906,
+ "id": 13047,
"properties": {
"facing": "north",
"half": "top",
@@ -213985,7 +214840,7 @@
}
},
{
- "id": 12907,
+ "id": 13048,
"properties": {
"facing": "north",
"half": "top",
@@ -213994,7 +214849,7 @@
}
},
{
- "id": 12908,
+ "id": 13049,
"properties": {
"facing": "north",
"half": "top",
@@ -214003,7 +214858,7 @@
}
},
{
- "id": 12909,
+ "id": 13050,
"properties": {
"facing": "north",
"half": "top",
@@ -214012,7 +214867,7 @@
}
},
{
- "id": 12910,
+ "id": 13051,
"properties": {
"facing": "north",
"half": "top",
@@ -214021,7 +214876,7 @@
}
},
{
- "id": 12911,
+ "id": 13052,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214031,7 +214886,7 @@
},
{
"default": true,
- "id": 12912,
+ "id": 13053,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214040,7 +214895,7 @@
}
},
{
- "id": 12913,
+ "id": 13054,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214049,7 +214904,7 @@
}
},
{
- "id": 12914,
+ "id": 13055,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214058,7 +214913,7 @@
}
},
{
- "id": 12915,
+ "id": 13056,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214067,7 +214922,7 @@
}
},
{
- "id": 12916,
+ "id": 13057,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214076,7 +214931,7 @@
}
},
{
- "id": 12917,
+ "id": 13058,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214085,7 +214940,7 @@
}
},
{
- "id": 12918,
+ "id": 13059,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214094,7 +214949,7 @@
}
},
{
- "id": 12919,
+ "id": 13060,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214103,7 +214958,7 @@
}
},
{
- "id": 12920,
+ "id": 13061,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214112,7 +214967,7 @@
}
},
{
- "id": 12921,
+ "id": 13062,
"properties": {
"facing": "south",
"half": "top",
@@ -214121,7 +214976,7 @@
}
},
{
- "id": 12922,
+ "id": 13063,
"properties": {
"facing": "south",
"half": "top",
@@ -214130,7 +214985,7 @@
}
},
{
- "id": 12923,
+ "id": 13064,
"properties": {
"facing": "south",
"half": "top",
@@ -214139,7 +214994,7 @@
}
},
{
- "id": 12924,
+ "id": 13065,
"properties": {
"facing": "south",
"half": "top",
@@ -214148,7 +215003,7 @@
}
},
{
- "id": 12925,
+ "id": 13066,
"properties": {
"facing": "south",
"half": "top",
@@ -214157,7 +215012,7 @@
}
},
{
- "id": 12926,
+ "id": 13067,
"properties": {
"facing": "south",
"half": "top",
@@ -214166,7 +215021,7 @@
}
},
{
- "id": 12927,
+ "id": 13068,
"properties": {
"facing": "south",
"half": "top",
@@ -214175,7 +215030,7 @@
}
},
{
- "id": 12928,
+ "id": 13069,
"properties": {
"facing": "south",
"half": "top",
@@ -214184,7 +215039,7 @@
}
},
{
- "id": 12929,
+ "id": 13070,
"properties": {
"facing": "south",
"half": "top",
@@ -214193,7 +215048,7 @@
}
},
{
- "id": 12930,
+ "id": 13071,
"properties": {
"facing": "south",
"half": "top",
@@ -214202,7 +215057,7 @@
}
},
{
- "id": 12931,
+ "id": 13072,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214211,7 +215066,7 @@
}
},
{
- "id": 12932,
+ "id": 13073,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214220,7 +215075,7 @@
}
},
{
- "id": 12933,
+ "id": 13074,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214229,7 +215084,7 @@
}
},
{
- "id": 12934,
+ "id": 13075,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214238,7 +215093,7 @@
}
},
{
- "id": 12935,
+ "id": 13076,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214247,7 +215102,7 @@
}
},
{
- "id": 12936,
+ "id": 13077,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214256,7 +215111,7 @@
}
},
{
- "id": 12937,
+ "id": 13078,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214265,7 +215120,7 @@
}
},
{
- "id": 12938,
+ "id": 13079,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214274,7 +215129,7 @@
}
},
{
- "id": 12939,
+ "id": 13080,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214283,7 +215138,7 @@
}
},
{
- "id": 12940,
+ "id": 13081,
"properties": {
"facing": "south",
"half": "bottom",
@@ -214292,7 +215147,7 @@
}
},
{
- "id": 12941,
+ "id": 13082,
"properties": {
"facing": "west",
"half": "top",
@@ -214301,7 +215156,7 @@
}
},
{
- "id": 12942,
+ "id": 13083,
"properties": {
"facing": "west",
"half": "top",
@@ -214310,7 +215165,7 @@
}
},
{
- "id": 12943,
+ "id": 13084,
"properties": {
"facing": "west",
"half": "top",
@@ -214319,7 +215174,7 @@
}
},
{
- "id": 12944,
+ "id": 13085,
"properties": {
"facing": "west",
"half": "top",
@@ -214328,7 +215183,7 @@
}
},
{
- "id": 12945,
+ "id": 13086,
"properties": {
"facing": "west",
"half": "top",
@@ -214337,7 +215192,7 @@
}
},
{
- "id": 12946,
+ "id": 13087,
"properties": {
"facing": "west",
"half": "top",
@@ -214346,7 +215201,7 @@
}
},
{
- "id": 12947,
+ "id": 13088,
"properties": {
"facing": "west",
"half": "top",
@@ -214355,7 +215210,7 @@
}
},
{
- "id": 12948,
+ "id": 13089,
"properties": {
"facing": "west",
"half": "top",
@@ -214364,7 +215219,7 @@
}
},
{
- "id": 12949,
+ "id": 13090,
"properties": {
"facing": "west",
"half": "top",
@@ -214373,7 +215228,7 @@
}
},
{
- "id": 12950,
+ "id": 13091,
"properties": {
"facing": "west",
"half": "top",
@@ -214382,7 +215237,7 @@
}
},
{
- "id": 12951,
+ "id": 13092,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214391,7 +215246,7 @@
}
},
{
- "id": 12952,
+ "id": 13093,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214400,7 +215255,7 @@
}
},
{
- "id": 12953,
+ "id": 13094,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214409,7 +215264,7 @@
}
},
{
- "id": 12954,
+ "id": 13095,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214418,7 +215273,7 @@
}
},
{
- "id": 12955,
+ "id": 13096,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214427,7 +215282,7 @@
}
},
{
- "id": 12956,
+ "id": 13097,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214436,7 +215291,7 @@
}
},
{
- "id": 12957,
+ "id": 13098,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214445,7 +215300,7 @@
}
},
{
- "id": 12958,
+ "id": 13099,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214454,7 +215309,7 @@
}
},
{
- "id": 12959,
+ "id": 13100,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214463,7 +215318,7 @@
}
},
{
- "id": 12960,
+ "id": 13101,
"properties": {
"facing": "west",
"half": "bottom",
@@ -214472,7 +215327,7 @@
}
},
{
- "id": 12961,
+ "id": 13102,
"properties": {
"facing": "east",
"half": "top",
@@ -214481,7 +215336,7 @@
}
},
{
- "id": 12962,
+ "id": 13103,
"properties": {
"facing": "east",
"half": "top",
@@ -214490,7 +215345,7 @@
}
},
{
- "id": 12963,
+ "id": 13104,
"properties": {
"facing": "east",
"half": "top",
@@ -214499,7 +215354,7 @@
}
},
{
- "id": 12964,
+ "id": 13105,
"properties": {
"facing": "east",
"half": "top",
@@ -214508,7 +215363,7 @@
}
},
{
- "id": 12965,
+ "id": 13106,
"properties": {
"facing": "east",
"half": "top",
@@ -214517,7 +215372,7 @@
}
},
{
- "id": 12966,
+ "id": 13107,
"properties": {
"facing": "east",
"half": "top",
@@ -214526,7 +215381,7 @@
}
},
{
- "id": 12967,
+ "id": 13108,
"properties": {
"facing": "east",
"half": "top",
@@ -214535,7 +215390,7 @@
}
},
{
- "id": 12968,
+ "id": 13109,
"properties": {
"facing": "east",
"half": "top",
@@ -214544,7 +215399,7 @@
}
},
{
- "id": 12969,
+ "id": 13110,
"properties": {
"facing": "east",
"half": "top",
@@ -214553,7 +215408,7 @@
}
},
{
- "id": 12970,
+ "id": 13111,
"properties": {
"facing": "east",
"half": "top",
@@ -214562,7 +215417,7 @@
}
},
{
- "id": 12971,
+ "id": 13112,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214571,7 +215426,7 @@
}
},
{
- "id": 12972,
+ "id": 13113,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214580,7 +215435,7 @@
}
},
{
- "id": 12973,
+ "id": 13114,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214589,7 +215444,7 @@
}
},
{
- "id": 12974,
+ "id": 13115,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214598,7 +215453,7 @@
}
},
{
- "id": 12975,
+ "id": 13116,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214607,7 +215462,7 @@
}
},
{
- "id": 12976,
+ "id": 13117,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214616,7 +215471,7 @@
}
},
{
- "id": 12977,
+ "id": 13118,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214625,7 +215480,7 @@
}
},
{
- "id": 12978,
+ "id": 13119,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214634,7 +215489,7 @@
}
},
{
- "id": 12979,
+ "id": 13120,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214643,7 +215498,7 @@
}
},
{
- "id": 12980,
+ "id": 13121,
"properties": {
"facing": "east",
"half": "bottom",
@@ -214657,7 +215512,7 @@
"states": [
{
"default": true,
- "id": 11166
+ "id": 11307
}
]
},
@@ -214675,21 +215530,21 @@
},
"states": [
{
- "id": 13977,
+ "id": 14118,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 13978,
+ "id": 14119,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 13979,
+ "id": 14120,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -214697,21 +215552,21 @@
},
{
"default": true,
- "id": 13980,
+ "id": 14121,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 13981,
+ "id": 14122,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 13982,
+ "id": 14123,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -214745,7 +215600,7 @@
},
"states": [
{
- "id": 13381,
+ "id": 13522,
"properties": {
"facing": "north",
"half": "top",
@@ -214754,7 +215609,7 @@
}
},
{
- "id": 13382,
+ "id": 13523,
"properties": {
"facing": "north",
"half": "top",
@@ -214763,7 +215618,7 @@
}
},
{
- "id": 13383,
+ "id": 13524,
"properties": {
"facing": "north",
"half": "top",
@@ -214772,7 +215627,7 @@
}
},
{
- "id": 13384,
+ "id": 13525,
"properties": {
"facing": "north",
"half": "top",
@@ -214781,7 +215636,7 @@
}
},
{
- "id": 13385,
+ "id": 13526,
"properties": {
"facing": "north",
"half": "top",
@@ -214790,7 +215645,7 @@
}
},
{
- "id": 13386,
+ "id": 13527,
"properties": {
"facing": "north",
"half": "top",
@@ -214799,7 +215654,7 @@
}
},
{
- "id": 13387,
+ "id": 13528,
"properties": {
"facing": "north",
"half": "top",
@@ -214808,7 +215663,7 @@
}
},
{
- "id": 13388,
+ "id": 13529,
"properties": {
"facing": "north",
"half": "top",
@@ -214817,7 +215672,7 @@
}
},
{
- "id": 13389,
+ "id": 13530,
"properties": {
"facing": "north",
"half": "top",
@@ -214826,7 +215681,7 @@
}
},
{
- "id": 13390,
+ "id": 13531,
"properties": {
"facing": "north",
"half": "top",
@@ -214835,7 +215690,7 @@
}
},
{
- "id": 13391,
+ "id": 13532,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214845,7 +215700,7 @@
},
{
"default": true,
- "id": 13392,
+ "id": 13533,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214854,7 +215709,7 @@
}
},
{
- "id": 13393,
+ "id": 13534,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214863,7 +215718,7 @@
}
},
{
- "id": 13394,
+ "id": 13535,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214872,7 +215727,7 @@
}
},
{
- "id": 13395,
+ "id": 13536,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214881,7 +215736,7 @@
}
},
{
- "id": 13396,
+ "id": 13537,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214890,7 +215745,7 @@
}
},
{
- "id": 13397,
+ "id": 13538,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214899,7 +215754,7 @@
}
},
{
- "id": 13398,
+ "id": 13539,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214908,7 +215763,7 @@
}
},
{
- "id": 13399,
+ "id": 13540,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214917,7 +215772,7 @@
}
},
{
- "id": 13400,
+ "id": 13541,
"properties": {
"facing": "north",
"half": "bottom",
@@ -214926,7 +215781,7 @@
}
},
{
- "id": 13401,
+ "id": 13542,
"properties": {
"facing": "south",
"half": "top",
@@ -214935,7 +215790,7 @@
}
},
{
- "id": 13402,
+ "id": 13543,
"properties": {
"facing": "south",
"half": "top",
@@ -214944,7 +215799,7 @@
}
},
{
- "id": 13403,
+ "id": 13544,
"properties": {
"facing": "south",
"half": "top",
@@ -214953,7 +215808,7 @@
}
},
{
- "id": 13404,
+ "id": 13545,
"properties": {
"facing": "south",
"half": "top",
@@ -214962,7 +215817,7 @@
}
},
{
- "id": 13405,
+ "id": 13546,
"properties": {
"facing": "south",
"half": "top",
@@ -214971,7 +215826,7 @@
}
},
{
- "id": 13406,
+ "id": 13547,
"properties": {
"facing": "south",
"half": "top",
@@ -214980,7 +215835,7 @@
}
},
{
- "id": 13407,
+ "id": 13548,
"properties": {
"facing": "south",
"half": "top",
@@ -214989,7 +215844,7 @@
}
},
{
- "id": 13408,
+ "id": 13549,
"properties": {
"facing": "south",
"half": "top",
@@ -214998,7 +215853,7 @@
}
},
{
- "id": 13409,
+ "id": 13550,
"properties": {
"facing": "south",
"half": "top",
@@ -215007,7 +215862,7 @@
}
},
{
- "id": 13410,
+ "id": 13551,
"properties": {
"facing": "south",
"half": "top",
@@ -215016,7 +215871,7 @@
}
},
{
- "id": 13411,
+ "id": 13552,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215025,7 +215880,7 @@
}
},
{
- "id": 13412,
+ "id": 13553,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215034,7 +215889,7 @@
}
},
{
- "id": 13413,
+ "id": 13554,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215043,7 +215898,7 @@
}
},
{
- "id": 13414,
+ "id": 13555,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215052,7 +215907,7 @@
}
},
{
- "id": 13415,
+ "id": 13556,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215061,7 +215916,7 @@
}
},
{
- "id": 13416,
+ "id": 13557,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215070,7 +215925,7 @@
}
},
{
- "id": 13417,
+ "id": 13558,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215079,7 +215934,7 @@
}
},
{
- "id": 13418,
+ "id": 13559,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215088,7 +215943,7 @@
}
},
{
- "id": 13419,
+ "id": 13560,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215097,7 +215952,7 @@
}
},
{
- "id": 13420,
+ "id": 13561,
"properties": {
"facing": "south",
"half": "bottom",
@@ -215106,7 +215961,7 @@
}
},
{
- "id": 13421,
+ "id": 13562,
"properties": {
"facing": "west",
"half": "top",
@@ -215115,7 +215970,7 @@
}
},
{
- "id": 13422,
+ "id": 13563,
"properties": {
"facing": "west",
"half": "top",
@@ -215124,7 +215979,7 @@
}
},
{
- "id": 13423,
+ "id": 13564,
"properties": {
"facing": "west",
"half": "top",
@@ -215133,7 +215988,7 @@
}
},
{
- "id": 13424,
+ "id": 13565,
"properties": {
"facing": "west",
"half": "top",
@@ -215142,7 +215997,7 @@
}
},
{
- "id": 13425,
+ "id": 13566,
"properties": {
"facing": "west",
"half": "top",
@@ -215151,7 +216006,7 @@
}
},
{
- "id": 13426,
+ "id": 13567,
"properties": {
"facing": "west",
"half": "top",
@@ -215160,7 +216015,7 @@
}
},
{
- "id": 13427,
+ "id": 13568,
"properties": {
"facing": "west",
"half": "top",
@@ -215169,7 +216024,7 @@
}
},
{
- "id": 13428,
+ "id": 13569,
"properties": {
"facing": "west",
"half": "top",
@@ -215178,7 +216033,7 @@
}
},
{
- "id": 13429,
+ "id": 13570,
"properties": {
"facing": "west",
"half": "top",
@@ -215187,7 +216042,7 @@
}
},
{
- "id": 13430,
+ "id": 13571,
"properties": {
"facing": "west",
"half": "top",
@@ -215196,7 +216051,7 @@
}
},
{
- "id": 13431,
+ "id": 13572,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215205,7 +216060,7 @@
}
},
{
- "id": 13432,
+ "id": 13573,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215214,7 +216069,7 @@
}
},
{
- "id": 13433,
+ "id": 13574,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215223,7 +216078,7 @@
}
},
{
- "id": 13434,
+ "id": 13575,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215232,7 +216087,7 @@
}
},
{
- "id": 13435,
+ "id": 13576,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215241,7 +216096,7 @@
}
},
{
- "id": 13436,
+ "id": 13577,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215250,7 +216105,7 @@
}
},
{
- "id": 13437,
+ "id": 13578,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215259,7 +216114,7 @@
}
},
{
- "id": 13438,
+ "id": 13579,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215268,7 +216123,7 @@
}
},
{
- "id": 13439,
+ "id": 13580,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215277,7 +216132,7 @@
}
},
{
- "id": 13440,
+ "id": 13581,
"properties": {
"facing": "west",
"half": "bottom",
@@ -215286,7 +216141,7 @@
}
},
{
- "id": 13441,
+ "id": 13582,
"properties": {
"facing": "east",
"half": "top",
@@ -215295,7 +216150,7 @@
}
},
{
- "id": 13442,
+ "id": 13583,
"properties": {
"facing": "east",
"half": "top",
@@ -215304,7 +216159,7 @@
}
},
{
- "id": 13443,
+ "id": 13584,
"properties": {
"facing": "east",
"half": "top",
@@ -215313,7 +216168,7 @@
}
},
{
- "id": 13444,
+ "id": 13585,
"properties": {
"facing": "east",
"half": "top",
@@ -215322,7 +216177,7 @@
}
},
{
- "id": 13445,
+ "id": 13586,
"properties": {
"facing": "east",
"half": "top",
@@ -215331,7 +216186,7 @@
}
},
{
- "id": 13446,
+ "id": 13587,
"properties": {
"facing": "east",
"half": "top",
@@ -215340,7 +216195,7 @@
}
},
{
- "id": 13447,
+ "id": 13588,
"properties": {
"facing": "east",
"half": "top",
@@ -215349,7 +216204,7 @@
}
},
{
- "id": 13448,
+ "id": 13589,
"properties": {
"facing": "east",
"half": "top",
@@ -215358,7 +216213,7 @@
}
},
{
- "id": 13449,
+ "id": 13590,
"properties": {
"facing": "east",
"half": "top",
@@ -215367,7 +216222,7 @@
}
},
{
- "id": 13450,
+ "id": 13591,
"properties": {
"facing": "east",
"half": "top",
@@ -215376,7 +216231,7 @@
}
},
{
- "id": 13451,
+ "id": 13592,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215385,7 +216240,7 @@
}
},
{
- "id": 13452,
+ "id": 13593,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215394,7 +216249,7 @@
}
},
{
- "id": 13453,
+ "id": 13594,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215403,7 +216258,7 @@
}
},
{
- "id": 13454,
+ "id": 13595,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215412,7 +216267,7 @@
}
},
{
- "id": 13455,
+ "id": 13596,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215421,7 +216276,7 @@
}
},
{
- "id": 13456,
+ "id": 13597,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215430,7 +216285,7 @@
}
},
{
- "id": 13457,
+ "id": 13598,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215439,7 +216294,7 @@
}
},
{
- "id": 13458,
+ "id": 13599,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215448,7 +216303,7 @@
}
},
{
- "id": 13459,
+ "id": 13600,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215457,7 +216312,7 @@
}
},
{
- "id": 13460,
+ "id": 13601,
"properties": {
"facing": "east",
"half": "bottom",
@@ -215471,7 +216326,7 @@
"states": [
{
"default": true,
- "id": 11165
+ "id": 11306
}
]
},
@@ -215489,21 +216344,21 @@
},
"states": [
{
- "id": 11087,
+ "id": 11228,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11088,
+ "id": 11229,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11089,
+ "id": 11230,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -215511,21 +216366,21 @@
},
{
"default": true,
- "id": 11090,
+ "id": 11231,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11091,
+ "id": 11232,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11092,
+ "id": 11233,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -215544,19 +216399,19 @@
"states": [
{
"default": true,
- "id": 12659,
+ "id": 12800,
"properties": {
"hatch": "0"
}
},
{
- "id": 12660,
+ "id": 12801,
"properties": {
"hatch": "1"
}
},
{
- "id": 12661,
+ "id": 12802,
"properties": {
"hatch": "2"
}
@@ -215659,7 +216514,7 @@
},
"states": [
{
- "id": 18402,
+ "id": 18543,
"properties": {
"facing": "north",
"lit": "true",
@@ -215668,7 +216523,7 @@
}
},
{
- "id": 18403,
+ "id": 18544,
"properties": {
"facing": "north",
"lit": "true",
@@ -215677,7 +216532,7 @@
}
},
{
- "id": 18404,
+ "id": 18545,
"properties": {
"facing": "north",
"lit": "true",
@@ -215687,7 +216542,7 @@
},
{
"default": true,
- "id": 18405,
+ "id": 18546,
"properties": {
"facing": "north",
"lit": "true",
@@ -215696,7 +216551,7 @@
}
},
{
- "id": 18406,
+ "id": 18547,
"properties": {
"facing": "north",
"lit": "false",
@@ -215705,7 +216560,7 @@
}
},
{
- "id": 18407,
+ "id": 18548,
"properties": {
"facing": "north",
"lit": "false",
@@ -215714,7 +216569,7 @@
}
},
{
- "id": 18408,
+ "id": 18549,
"properties": {
"facing": "north",
"lit": "false",
@@ -215723,7 +216578,7 @@
}
},
{
- "id": 18409,
+ "id": 18550,
"properties": {
"facing": "north",
"lit": "false",
@@ -215732,7 +216587,7 @@
}
},
{
- "id": 18410,
+ "id": 18551,
"properties": {
"facing": "south",
"lit": "true",
@@ -215741,7 +216596,7 @@
}
},
{
- "id": 18411,
+ "id": 18552,
"properties": {
"facing": "south",
"lit": "true",
@@ -215750,7 +216605,7 @@
}
},
{
- "id": 18412,
+ "id": 18553,
"properties": {
"facing": "south",
"lit": "true",
@@ -215759,7 +216614,7 @@
}
},
{
- "id": 18413,
+ "id": 18554,
"properties": {
"facing": "south",
"lit": "true",
@@ -215768,7 +216623,7 @@
}
},
{
- "id": 18414,
+ "id": 18555,
"properties": {
"facing": "south",
"lit": "false",
@@ -215777,7 +216632,7 @@
}
},
{
- "id": 18415,
+ "id": 18556,
"properties": {
"facing": "south",
"lit": "false",
@@ -215786,7 +216641,7 @@
}
},
{
- "id": 18416,
+ "id": 18557,
"properties": {
"facing": "south",
"lit": "false",
@@ -215795,7 +216650,7 @@
}
},
{
- "id": 18417,
+ "id": 18558,
"properties": {
"facing": "south",
"lit": "false",
@@ -215804,7 +216659,7 @@
}
},
{
- "id": 18418,
+ "id": 18559,
"properties": {
"facing": "west",
"lit": "true",
@@ -215813,7 +216668,7 @@
}
},
{
- "id": 18419,
+ "id": 18560,
"properties": {
"facing": "west",
"lit": "true",
@@ -215822,7 +216677,7 @@
}
},
{
- "id": 18420,
+ "id": 18561,
"properties": {
"facing": "west",
"lit": "true",
@@ -215831,7 +216686,7 @@
}
},
{
- "id": 18421,
+ "id": 18562,
"properties": {
"facing": "west",
"lit": "true",
@@ -215840,7 +216695,7 @@
}
},
{
- "id": 18422,
+ "id": 18563,
"properties": {
"facing": "west",
"lit": "false",
@@ -215849,7 +216704,7 @@
}
},
{
- "id": 18423,
+ "id": 18564,
"properties": {
"facing": "west",
"lit": "false",
@@ -215858,7 +216713,7 @@
}
},
{
- "id": 18424,
+ "id": 18565,
"properties": {
"facing": "west",
"lit": "false",
@@ -215867,7 +216722,7 @@
}
},
{
- "id": 18425,
+ "id": 18566,
"properties": {
"facing": "west",
"lit": "false",
@@ -215876,7 +216731,7 @@
}
},
{
- "id": 18426,
+ "id": 18567,
"properties": {
"facing": "east",
"lit": "true",
@@ -215885,7 +216740,7 @@
}
},
{
- "id": 18427,
+ "id": 18568,
"properties": {
"facing": "east",
"lit": "true",
@@ -215894,7 +216749,7 @@
}
},
{
- "id": 18428,
+ "id": 18569,
"properties": {
"facing": "east",
"lit": "true",
@@ -215903,7 +216758,7 @@
}
},
{
- "id": 18429,
+ "id": 18570,
"properties": {
"facing": "east",
"lit": "true",
@@ -215912,7 +216767,7 @@
}
},
{
- "id": 18430,
+ "id": 18571,
"properties": {
"facing": "east",
"lit": "false",
@@ -215921,7 +216776,7 @@
}
},
{
- "id": 18431,
+ "id": 18572,
"properties": {
"facing": "east",
"lit": "false",
@@ -215930,7 +216785,7 @@
}
},
{
- "id": 18432,
+ "id": 18573,
"properties": {
"facing": "east",
"lit": "false",
@@ -215939,7 +216794,7 @@
}
},
{
- "id": 18433,
+ "id": 18574,
"properties": {
"facing": "east",
"lit": "false",
@@ -215970,21 +216825,21 @@
},
"states": [
{
- "id": 18366,
+ "id": 18507,
"properties": {
"hanging": "true",
"waterlogged": "true"
}
},
{
- "id": 18367,
+ "id": 18508,
"properties": {
"hanging": "true",
"waterlogged": "false"
}
},
{
- "id": 18368,
+ "id": 18509,
"properties": {
"hanging": "false",
"waterlogged": "true"
@@ -215992,7 +216847,7 @@
},
{
"default": true,
- "id": 18369,
+ "id": 18510,
"properties": {
"hanging": "false",
"waterlogged": "false"
@@ -216081,7 +216936,7 @@
"states": [
{
"default": true,
- "id": 22368
+ "id": 22509
}
]
},
@@ -216326,7 +217181,7 @@
},
"states": [
{
- "id": 11681,
+ "id": 11822,
"properties": {
"facing": "north",
"half": "upper",
@@ -216336,7 +217191,7 @@
}
},
{
- "id": 11682,
+ "id": 11823,
"properties": {
"facing": "north",
"half": "upper",
@@ -216346,7 +217201,7 @@
}
},
{
- "id": 11683,
+ "id": 11824,
"properties": {
"facing": "north",
"half": "upper",
@@ -216356,7 +217211,7 @@
}
},
{
- "id": 11684,
+ "id": 11825,
"properties": {
"facing": "north",
"half": "upper",
@@ -216366,7 +217221,7 @@
}
},
{
- "id": 11685,
+ "id": 11826,
"properties": {
"facing": "north",
"half": "upper",
@@ -216376,7 +217231,7 @@
}
},
{
- "id": 11686,
+ "id": 11827,
"properties": {
"facing": "north",
"half": "upper",
@@ -216386,7 +217241,7 @@
}
},
{
- "id": 11687,
+ "id": 11828,
"properties": {
"facing": "north",
"half": "upper",
@@ -216396,7 +217251,7 @@
}
},
{
- "id": 11688,
+ "id": 11829,
"properties": {
"facing": "north",
"half": "upper",
@@ -216406,7 +217261,7 @@
}
},
{
- "id": 11689,
+ "id": 11830,
"properties": {
"facing": "north",
"half": "lower",
@@ -216416,7 +217271,7 @@
}
},
{
- "id": 11690,
+ "id": 11831,
"properties": {
"facing": "north",
"half": "lower",
@@ -216426,7 +217281,7 @@
}
},
{
- "id": 11691,
+ "id": 11832,
"properties": {
"facing": "north",
"half": "lower",
@@ -216437,7 +217292,7 @@
},
{
"default": true,
- "id": 11692,
+ "id": 11833,
"properties": {
"facing": "north",
"half": "lower",
@@ -216447,7 +217302,7 @@
}
},
{
- "id": 11693,
+ "id": 11834,
"properties": {
"facing": "north",
"half": "lower",
@@ -216457,7 +217312,7 @@
}
},
{
- "id": 11694,
+ "id": 11835,
"properties": {
"facing": "north",
"half": "lower",
@@ -216467,7 +217322,7 @@
}
},
{
- "id": 11695,
+ "id": 11836,
"properties": {
"facing": "north",
"half": "lower",
@@ -216477,7 +217332,7 @@
}
},
{
- "id": 11696,
+ "id": 11837,
"properties": {
"facing": "north",
"half": "lower",
@@ -216487,7 +217342,7 @@
}
},
{
- "id": 11697,
+ "id": 11838,
"properties": {
"facing": "south",
"half": "upper",
@@ -216497,7 +217352,7 @@
}
},
{
- "id": 11698,
+ "id": 11839,
"properties": {
"facing": "south",
"half": "upper",
@@ -216507,7 +217362,7 @@
}
},
{
- "id": 11699,
+ "id": 11840,
"properties": {
"facing": "south",
"half": "upper",
@@ -216517,7 +217372,7 @@
}
},
{
- "id": 11700,
+ "id": 11841,
"properties": {
"facing": "south",
"half": "upper",
@@ -216527,7 +217382,7 @@
}
},
{
- "id": 11701,
+ "id": 11842,
"properties": {
"facing": "south",
"half": "upper",
@@ -216537,7 +217392,7 @@
}
},
{
- "id": 11702,
+ "id": 11843,
"properties": {
"facing": "south",
"half": "upper",
@@ -216547,7 +217402,7 @@
}
},
{
- "id": 11703,
+ "id": 11844,
"properties": {
"facing": "south",
"half": "upper",
@@ -216557,7 +217412,7 @@
}
},
{
- "id": 11704,
+ "id": 11845,
"properties": {
"facing": "south",
"half": "upper",
@@ -216567,7 +217422,7 @@
}
},
{
- "id": 11705,
+ "id": 11846,
"properties": {
"facing": "south",
"half": "lower",
@@ -216577,7 +217432,7 @@
}
},
{
- "id": 11706,
+ "id": 11847,
"properties": {
"facing": "south",
"half": "lower",
@@ -216587,7 +217442,7 @@
}
},
{
- "id": 11707,
+ "id": 11848,
"properties": {
"facing": "south",
"half": "lower",
@@ -216597,7 +217452,7 @@
}
},
{
- "id": 11708,
+ "id": 11849,
"properties": {
"facing": "south",
"half": "lower",
@@ -216607,7 +217462,7 @@
}
},
{
- "id": 11709,
+ "id": 11850,
"properties": {
"facing": "south",
"half": "lower",
@@ -216617,7 +217472,7 @@
}
},
{
- "id": 11710,
+ "id": 11851,
"properties": {
"facing": "south",
"half": "lower",
@@ -216627,7 +217482,7 @@
}
},
{
- "id": 11711,
+ "id": 11852,
"properties": {
"facing": "south",
"half": "lower",
@@ -216637,7 +217492,7 @@
}
},
{
- "id": 11712,
+ "id": 11853,
"properties": {
"facing": "south",
"half": "lower",
@@ -216647,7 +217502,7 @@
}
},
{
- "id": 11713,
+ "id": 11854,
"properties": {
"facing": "west",
"half": "upper",
@@ -216657,7 +217512,7 @@
}
},
{
- "id": 11714,
+ "id": 11855,
"properties": {
"facing": "west",
"half": "upper",
@@ -216667,7 +217522,7 @@
}
},
{
- "id": 11715,
+ "id": 11856,
"properties": {
"facing": "west",
"half": "upper",
@@ -216677,7 +217532,7 @@
}
},
{
- "id": 11716,
+ "id": 11857,
"properties": {
"facing": "west",
"half": "upper",
@@ -216687,7 +217542,7 @@
}
},
{
- "id": 11717,
+ "id": 11858,
"properties": {
"facing": "west",
"half": "upper",
@@ -216697,7 +217552,7 @@
}
},
{
- "id": 11718,
+ "id": 11859,
"properties": {
"facing": "west",
"half": "upper",
@@ -216707,7 +217562,7 @@
}
},
{
- "id": 11719,
+ "id": 11860,
"properties": {
"facing": "west",
"half": "upper",
@@ -216717,7 +217572,7 @@
}
},
{
- "id": 11720,
+ "id": 11861,
"properties": {
"facing": "west",
"half": "upper",
@@ -216727,7 +217582,7 @@
}
},
{
- "id": 11721,
+ "id": 11862,
"properties": {
"facing": "west",
"half": "lower",
@@ -216737,7 +217592,7 @@
}
},
{
- "id": 11722,
+ "id": 11863,
"properties": {
"facing": "west",
"half": "lower",
@@ -216747,7 +217602,7 @@
}
},
{
- "id": 11723,
+ "id": 11864,
"properties": {
"facing": "west",
"half": "lower",
@@ -216757,7 +217612,7 @@
}
},
{
- "id": 11724,
+ "id": 11865,
"properties": {
"facing": "west",
"half": "lower",
@@ -216767,7 +217622,7 @@
}
},
{
- "id": 11725,
+ "id": 11866,
"properties": {
"facing": "west",
"half": "lower",
@@ -216777,7 +217632,7 @@
}
},
{
- "id": 11726,
+ "id": 11867,
"properties": {
"facing": "west",
"half": "lower",
@@ -216787,7 +217642,7 @@
}
},
{
- "id": 11727,
+ "id": 11868,
"properties": {
"facing": "west",
"half": "lower",
@@ -216797,7 +217652,7 @@
}
},
{
- "id": 11728,
+ "id": 11869,
"properties": {
"facing": "west",
"half": "lower",
@@ -216807,7 +217662,7 @@
}
},
{
- "id": 11729,
+ "id": 11870,
"properties": {
"facing": "east",
"half": "upper",
@@ -216817,7 +217672,7 @@
}
},
{
- "id": 11730,
+ "id": 11871,
"properties": {
"facing": "east",
"half": "upper",
@@ -216827,7 +217682,7 @@
}
},
{
- "id": 11731,
+ "id": 11872,
"properties": {
"facing": "east",
"half": "upper",
@@ -216837,7 +217692,7 @@
}
},
{
- "id": 11732,
+ "id": 11873,
"properties": {
"facing": "east",
"half": "upper",
@@ -216847,7 +217702,7 @@
}
},
{
- "id": 11733,
+ "id": 11874,
"properties": {
"facing": "east",
"half": "upper",
@@ -216857,7 +217712,7 @@
}
},
{
- "id": 11734,
+ "id": 11875,
"properties": {
"facing": "east",
"half": "upper",
@@ -216867,7 +217722,7 @@
}
},
{
- "id": 11735,
+ "id": 11876,
"properties": {
"facing": "east",
"half": "upper",
@@ -216877,7 +217732,7 @@
}
},
{
- "id": 11736,
+ "id": 11877,
"properties": {
"facing": "east",
"half": "upper",
@@ -216887,7 +217742,7 @@
}
},
{
- "id": 11737,
+ "id": 11878,
"properties": {
"facing": "east",
"half": "lower",
@@ -216897,7 +217752,7 @@
}
},
{
- "id": 11738,
+ "id": 11879,
"properties": {
"facing": "east",
"half": "lower",
@@ -216907,7 +217762,7 @@
}
},
{
- "id": 11739,
+ "id": 11880,
"properties": {
"facing": "east",
"half": "lower",
@@ -216917,7 +217772,7 @@
}
},
{
- "id": 11740,
+ "id": 11881,
"properties": {
"facing": "east",
"half": "lower",
@@ -216927,7 +217782,7 @@
}
},
{
- "id": 11741,
+ "id": 11882,
"properties": {
"facing": "east",
"half": "lower",
@@ -216937,7 +217792,7 @@
}
},
{
- "id": 11742,
+ "id": 11883,
"properties": {
"facing": "east",
"half": "lower",
@@ -216947,7 +217802,7 @@
}
},
{
- "id": 11743,
+ "id": 11884,
"properties": {
"facing": "east",
"half": "lower",
@@ -216957,7 +217812,7 @@
}
},
{
- "id": 11744,
+ "id": 11885,
"properties": {
"facing": "east",
"half": "lower",
@@ -216993,7 +217848,7 @@
},
"states": [
{
- "id": 11425,
+ "id": 11566,
"properties": {
"east": "true",
"north": "true",
@@ -217003,7 +217858,7 @@
}
},
{
- "id": 11426,
+ "id": 11567,
"properties": {
"east": "true",
"north": "true",
@@ -217013,7 +217868,7 @@
}
},
{
- "id": 11427,
+ "id": 11568,
"properties": {
"east": "true",
"north": "true",
@@ -217023,7 +217878,7 @@
}
},
{
- "id": 11428,
+ "id": 11569,
"properties": {
"east": "true",
"north": "true",
@@ -217033,7 +217888,7 @@
}
},
{
- "id": 11429,
+ "id": 11570,
"properties": {
"east": "true",
"north": "true",
@@ -217043,7 +217898,7 @@
}
},
{
- "id": 11430,
+ "id": 11571,
"properties": {
"east": "true",
"north": "true",
@@ -217053,7 +217908,7 @@
}
},
{
- "id": 11431,
+ "id": 11572,
"properties": {
"east": "true",
"north": "true",
@@ -217063,7 +217918,7 @@
}
},
{
- "id": 11432,
+ "id": 11573,
"properties": {
"east": "true",
"north": "true",
@@ -217073,7 +217928,7 @@
}
},
{
- "id": 11433,
+ "id": 11574,
"properties": {
"east": "true",
"north": "false",
@@ -217083,7 +217938,7 @@
}
},
{
- "id": 11434,
+ "id": 11575,
"properties": {
"east": "true",
"north": "false",
@@ -217093,7 +217948,7 @@
}
},
{
- "id": 11435,
+ "id": 11576,
"properties": {
"east": "true",
"north": "false",
@@ -217103,7 +217958,7 @@
}
},
{
- "id": 11436,
+ "id": 11577,
"properties": {
"east": "true",
"north": "false",
@@ -217113,7 +217968,7 @@
}
},
{
- "id": 11437,
+ "id": 11578,
"properties": {
"east": "true",
"north": "false",
@@ -217123,7 +217978,7 @@
}
},
{
- "id": 11438,
+ "id": 11579,
"properties": {
"east": "true",
"north": "false",
@@ -217133,7 +217988,7 @@
}
},
{
- "id": 11439,
+ "id": 11580,
"properties": {
"east": "true",
"north": "false",
@@ -217143,7 +217998,7 @@
}
},
{
- "id": 11440,
+ "id": 11581,
"properties": {
"east": "true",
"north": "false",
@@ -217153,7 +218008,7 @@
}
},
{
- "id": 11441,
+ "id": 11582,
"properties": {
"east": "false",
"north": "true",
@@ -217163,7 +218018,7 @@
}
},
{
- "id": 11442,
+ "id": 11583,
"properties": {
"east": "false",
"north": "true",
@@ -217173,7 +218028,7 @@
}
},
{
- "id": 11443,
+ "id": 11584,
"properties": {
"east": "false",
"north": "true",
@@ -217183,7 +218038,7 @@
}
},
{
- "id": 11444,
+ "id": 11585,
"properties": {
"east": "false",
"north": "true",
@@ -217193,7 +218048,7 @@
}
},
{
- "id": 11445,
+ "id": 11586,
"properties": {
"east": "false",
"north": "true",
@@ -217203,7 +218058,7 @@
}
},
{
- "id": 11446,
+ "id": 11587,
"properties": {
"east": "false",
"north": "true",
@@ -217213,7 +218068,7 @@
}
},
{
- "id": 11447,
+ "id": 11588,
"properties": {
"east": "false",
"north": "true",
@@ -217223,7 +218078,7 @@
}
},
{
- "id": 11448,
+ "id": 11589,
"properties": {
"east": "false",
"north": "true",
@@ -217233,7 +218088,7 @@
}
},
{
- "id": 11449,
+ "id": 11590,
"properties": {
"east": "false",
"north": "false",
@@ -217243,7 +218098,7 @@
}
},
{
- "id": 11450,
+ "id": 11591,
"properties": {
"east": "false",
"north": "false",
@@ -217253,7 +218108,7 @@
}
},
{
- "id": 11451,
+ "id": 11592,
"properties": {
"east": "false",
"north": "false",
@@ -217263,7 +218118,7 @@
}
},
{
- "id": 11452,
+ "id": 11593,
"properties": {
"east": "false",
"north": "false",
@@ -217273,7 +218128,7 @@
}
},
{
- "id": 11453,
+ "id": 11594,
"properties": {
"east": "false",
"north": "false",
@@ -217283,7 +218138,7 @@
}
},
{
- "id": 11454,
+ "id": 11595,
"properties": {
"east": "false",
"north": "false",
@@ -217293,7 +218148,7 @@
}
},
{
- "id": 11455,
+ "id": 11596,
"properties": {
"east": "false",
"north": "false",
@@ -217304,7 +218159,7 @@
},
{
"default": true,
- "id": 11456,
+ "id": 11597,
"properties": {
"east": "false",
"north": "false",
@@ -217338,7 +218193,7 @@
},
"states": [
{
- "id": 11169,
+ "id": 11310,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -217347,7 +218202,7 @@
}
},
{
- "id": 11170,
+ "id": 11311,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -217356,7 +218211,7 @@
}
},
{
- "id": 11171,
+ "id": 11312,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -217365,7 +218220,7 @@
}
},
{
- "id": 11172,
+ "id": 11313,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -217374,7 +218229,7 @@
}
},
{
- "id": 11173,
+ "id": 11314,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -217383,7 +218238,7 @@
}
},
{
- "id": 11174,
+ "id": 11315,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -217392,7 +218247,7 @@
}
},
{
- "id": 11175,
+ "id": 11316,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -217402,7 +218257,7 @@
},
{
"default": true,
- "id": 11176,
+ "id": 11317,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -217411,7 +218266,7 @@
}
},
{
- "id": 11177,
+ "id": 11318,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -217420,7 +218275,7 @@
}
},
{
- "id": 11178,
+ "id": 11319,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -217429,7 +218284,7 @@
}
},
{
- "id": 11179,
+ "id": 11320,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -217438,7 +218293,7 @@
}
},
{
- "id": 11180,
+ "id": 11321,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -217447,7 +218302,7 @@
}
},
{
- "id": 11181,
+ "id": 11322,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -217456,7 +218311,7 @@
}
},
{
- "id": 11182,
+ "id": 11323,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -217465,7 +218320,7 @@
}
},
{
- "id": 11183,
+ "id": 11324,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -217474,7 +218329,7 @@
}
},
{
- "id": 11184,
+ "id": 11325,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -217483,7 +218338,7 @@
}
},
{
- "id": 11185,
+ "id": 11326,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -217492,7 +218347,7 @@
}
},
{
- "id": 11186,
+ "id": 11327,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -217501,7 +218356,7 @@
}
},
{
- "id": 11187,
+ "id": 11328,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -217510,7 +218365,7 @@
}
},
{
- "id": 11188,
+ "id": 11329,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -217519,7 +218374,7 @@
}
},
{
- "id": 11189,
+ "id": 11330,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -217528,7 +218383,7 @@
}
},
{
- "id": 11190,
+ "id": 11331,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -217537,7 +218392,7 @@
}
},
{
- "id": 11191,
+ "id": 11332,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -217546,7 +218401,7 @@
}
},
{
- "id": 11192,
+ "id": 11333,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -217555,7 +218410,7 @@
}
},
{
- "id": 11193,
+ "id": 11334,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -217564,7 +218419,7 @@
}
},
{
- "id": 11194,
+ "id": 11335,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -217573,7 +218428,7 @@
}
},
{
- "id": 11195,
+ "id": 11336,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -217582,7 +218437,7 @@
}
},
{
- "id": 11196,
+ "id": 11337,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -217591,7 +218446,7 @@
}
},
{
- "id": 11197,
+ "id": 11338,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -217600,7 +218455,7 @@
}
},
{
- "id": 11198,
+ "id": 11339,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -217609,7 +218464,7 @@
}
},
{
- "id": 11199,
+ "id": 11340,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -217618,7 +218473,7 @@
}
},
{
- "id": 11200,
+ "id": 11341,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -218772,21 +219627,21 @@
},
"states": [
{
- "id": 11027,
+ "id": 11168,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11028,
+ "id": 11169,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11029,
+ "id": 11170,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -218794,21 +219649,21 @@
},
{
"default": true,
- "id": 11030,
+ "id": 11171,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11031,
+ "id": 11172,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11032,
+ "id": 11173,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -220534,21 +221389,21 @@
},
"states": [
{
- "id": 11123,
+ "id": 11264,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11124,
+ "id": 11265,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11125,
+ "id": 11266,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -220556,21 +221411,21 @@
},
{
"default": true,
- "id": 11126,
+ "id": 11267,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11127,
+ "id": 11268,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11128,
+ "id": 11269,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -221359,7 +222214,7 @@
},
"states": [
{
- "id": 15639,
+ "id": 15780,
"properties": {
"east": "none",
"north": "none",
@@ -221370,7 +222225,7 @@
}
},
{
- "id": 15640,
+ "id": 15781,
"properties": {
"east": "none",
"north": "none",
@@ -221381,7 +222236,7 @@
}
},
{
- "id": 15641,
+ "id": 15782,
"properties": {
"east": "none",
"north": "none",
@@ -221393,2339 +222248,2339 @@
},
{
"default": true,
- "id": 15642,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15643,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15644,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15645,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15646,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15647,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15648,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15649,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15650,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15651,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15652,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15653,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15654,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15655,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15656,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15657,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15658,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15659,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15660,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15661,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15662,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15663,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15664,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15665,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15666,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15667,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15668,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15669,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15670,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15671,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15672,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15673,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15674,
- "properties": {
- "east": "none",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15675,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15676,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15677,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15678,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15679,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15680,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15681,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15682,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15683,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15684,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15685,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15686,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15687,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15688,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15689,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15690,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15691,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15692,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15693,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15694,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15695,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15696,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15697,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15698,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15699,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15700,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15701,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15702,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15703,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15704,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15705,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15706,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15707,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15708,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15709,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15710,
- "properties": {
- "east": "none",
- "north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15711,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15712,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15713,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15714,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15715,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15716,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15717,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15718,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15719,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15720,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15721,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15722,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15723,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15724,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15725,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15726,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15727,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15728,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15729,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15730,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15731,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15732,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15733,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15734,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15735,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15736,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15737,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15738,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15739,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15740,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15741,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15742,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15743,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15744,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15745,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15746,
- "properties": {
- "east": "none",
- "north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15747,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15748,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15749,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15750,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15751,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15752,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15753,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15754,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15755,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15756,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15757,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15758,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15759,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15760,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15761,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15762,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15763,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15764,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15765,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15766,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15767,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15768,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15769,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15770,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15771,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15772,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15773,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15774,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15775,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15776,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "true",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
- "id": 15777,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "none"
- }
- },
- {
- "id": 15778,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "low"
- }
- },
- {
- "id": 15779,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "true",
- "west": "tall"
- }
- },
- {
- "id": 15780,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "none"
- }
- },
- {
- "id": 15781,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "low"
- }
- },
- {
- "id": 15782,
- "properties": {
- "east": "low",
- "north": "none",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
- "west": "tall"
- }
- },
- {
"id": 15783,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15784,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15785,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15786,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15787,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15788,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15789,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15790,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15791,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15792,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15793,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15794,
"properties": {
- "east": "low",
- "north": "low",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15795,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15796,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15797,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15798,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15799,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15800,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15801,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15802,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15803,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15804,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15805,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15806,
"properties": {
- "east": "low",
- "north": "low",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15807,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15808,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15809,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15810,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15811,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15812,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15813,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15814,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15815,
"properties": {
- "east": "low",
- "north": "low",
+ "east": "none",
+ "north": "none",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15816,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15817,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15818,
"properties": {
- "east": "low",
+ "east": "none",
"north": "low",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15819,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15820,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15821,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15822,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15823,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15824,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15825,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15826,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15827,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "none",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15828,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15829,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15830,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "none",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15831,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15832,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15833,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15834,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15835,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15836,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15837,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15838,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15839,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "low",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15840,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15841,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15842,
"properties": {
- "east": "low",
- "north": "tall",
- "south": "low",
- "up": "false",
- "waterlogged": "false",
+ "east": "none",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15843,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15844,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15845,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "true",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15846,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15847,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15848,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
- "up": "true",
- "waterlogged": "false",
+ "up": "false",
+ "waterlogged": "true",
"west": "tall"
}
},
{
"id": 15849,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "none"
}
},
{
"id": 15850,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "low"
}
},
{
"id": 15851,
"properties": {
- "east": "low",
- "north": "tall",
+ "east": "none",
+ "north": "low",
"south": "tall",
"up": "false",
- "waterlogged": "true",
+ "waterlogged": "false",
"west": "tall"
}
},
{
"id": 15852,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "none"
}
},
{
"id": 15853,
"properties": {
- "east": "low",
+ "east": "none",
"north": "tall",
- "south": "tall",
- "up": "false",
- "waterlogged": "false",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
"west": "low"
}
},
{
"id": 15854,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15855,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15856,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15857,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15858,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15859,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15860,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15861,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15862,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15863,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15864,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15865,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15866,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15867,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15868,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15869,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15870,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15871,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15872,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15873,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15874,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15875,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15876,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15877,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15878,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15879,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15880,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15881,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15882,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15883,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15884,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15885,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15886,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15887,
+ "properties": {
+ "east": "none",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15888,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15889,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15890,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15891,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15892,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15893,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15894,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15895,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15896,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15897,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15898,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15899,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15900,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15901,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15902,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15903,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15904,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15905,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15906,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15907,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15908,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15909,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15910,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15911,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15912,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15913,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15914,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15915,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15916,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15917,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15918,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15919,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15920,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15921,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15922,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15923,
+ "properties": {
+ "east": "low",
+ "north": "none",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15924,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15925,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15926,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15927,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15928,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15929,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15930,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15931,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15932,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15933,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15934,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15935,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15936,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15937,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15938,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15939,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15940,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15941,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15942,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15943,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15944,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15945,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15946,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15947,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15948,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15949,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15950,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15951,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15952,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15953,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15954,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15955,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15956,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15957,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15958,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15959,
+ "properties": {
+ "east": "low",
+ "north": "low",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15960,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15961,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15962,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15963,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15964,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15965,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15966,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15967,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15968,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15969,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15970,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15971,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "none",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15972,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15973,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15974,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15975,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15976,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15977,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15978,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15979,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15980,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15981,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15982,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15983,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "low",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15984,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15985,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15986,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15987,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15988,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15989,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "true",
+ "waterlogged": "false",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15990,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15991,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15992,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "true",
+ "west": "tall"
+ }
+ },
+ {
+ "id": 15993,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "none"
+ }
+ },
+ {
+ "id": 15994,
+ "properties": {
+ "east": "low",
+ "north": "tall",
+ "south": "tall",
+ "up": "false",
+ "waterlogged": "false",
+ "west": "low"
+ }
+ },
+ {
+ "id": 15995,
"properties": {
"east": "low",
"north": "tall",
@@ -223736,7 +224591,7 @@
}
},
{
- "id": 15855,
+ "id": 15996,
"properties": {
"east": "tall",
"north": "none",
@@ -223747,7 +224602,7 @@
}
},
{
- "id": 15856,
+ "id": 15997,
"properties": {
"east": "tall",
"north": "none",
@@ -223758,7 +224613,7 @@
}
},
{
- "id": 15857,
+ "id": 15998,
"properties": {
"east": "tall",
"north": "none",
@@ -223769,7 +224624,7 @@
}
},
{
- "id": 15858,
+ "id": 15999,
"properties": {
"east": "tall",
"north": "none",
@@ -223780,7 +224635,7 @@
}
},
{
- "id": 15859,
+ "id": 16000,
"properties": {
"east": "tall",
"north": "none",
@@ -223791,7 +224646,7 @@
}
},
{
- "id": 15860,
+ "id": 16001,
"properties": {
"east": "tall",
"north": "none",
@@ -223802,7 +224657,7 @@
}
},
{
- "id": 15861,
+ "id": 16002,
"properties": {
"east": "tall",
"north": "none",
@@ -223813,7 +224668,7 @@
}
},
{
- "id": 15862,
+ "id": 16003,
"properties": {
"east": "tall",
"north": "none",
@@ -223824,7 +224679,7 @@
}
},
{
- "id": 15863,
+ "id": 16004,
"properties": {
"east": "tall",
"north": "none",
@@ -223835,7 +224690,7 @@
}
},
{
- "id": 15864,
+ "id": 16005,
"properties": {
"east": "tall",
"north": "none",
@@ -223846,7 +224701,7 @@
}
},
{
- "id": 15865,
+ "id": 16006,
"properties": {
"east": "tall",
"north": "none",
@@ -223857,7 +224712,7 @@
}
},
{
- "id": 15866,
+ "id": 16007,
"properties": {
"east": "tall",
"north": "none",
@@ -223868,7 +224723,7 @@
}
},
{
- "id": 15867,
+ "id": 16008,
"properties": {
"east": "tall",
"north": "none",
@@ -223879,7 +224734,7 @@
}
},
{
- "id": 15868,
+ "id": 16009,
"properties": {
"east": "tall",
"north": "none",
@@ -223890,7 +224745,7 @@
}
},
{
- "id": 15869,
+ "id": 16010,
"properties": {
"east": "tall",
"north": "none",
@@ -223901,7 +224756,7 @@
}
},
{
- "id": 15870,
+ "id": 16011,
"properties": {
"east": "tall",
"north": "none",
@@ -223912,7 +224767,7 @@
}
},
{
- "id": 15871,
+ "id": 16012,
"properties": {
"east": "tall",
"north": "none",
@@ -223923,7 +224778,7 @@
}
},
{
- "id": 15872,
+ "id": 16013,
"properties": {
"east": "tall",
"north": "none",
@@ -223934,7 +224789,7 @@
}
},
{
- "id": 15873,
+ "id": 16014,
"properties": {
"east": "tall",
"north": "none",
@@ -223945,7 +224800,7 @@
}
},
{
- "id": 15874,
+ "id": 16015,
"properties": {
"east": "tall",
"north": "none",
@@ -223956,7 +224811,7 @@
}
},
{
- "id": 15875,
+ "id": 16016,
"properties": {
"east": "tall",
"north": "none",
@@ -223967,7 +224822,7 @@
}
},
{
- "id": 15876,
+ "id": 16017,
"properties": {
"east": "tall",
"north": "none",
@@ -223978,7 +224833,7 @@
}
},
{
- "id": 15877,
+ "id": 16018,
"properties": {
"east": "tall",
"north": "none",
@@ -223989,7 +224844,7 @@
}
},
{
- "id": 15878,
+ "id": 16019,
"properties": {
"east": "tall",
"north": "none",
@@ -224000,7 +224855,7 @@
}
},
{
- "id": 15879,
+ "id": 16020,
"properties": {
"east": "tall",
"north": "none",
@@ -224011,7 +224866,7 @@
}
},
{
- "id": 15880,
+ "id": 16021,
"properties": {
"east": "tall",
"north": "none",
@@ -224022,7 +224877,7 @@
}
},
{
- "id": 15881,
+ "id": 16022,
"properties": {
"east": "tall",
"north": "none",
@@ -224033,7 +224888,7 @@
}
},
{
- "id": 15882,
+ "id": 16023,
"properties": {
"east": "tall",
"north": "none",
@@ -224044,7 +224899,7 @@
}
},
{
- "id": 15883,
+ "id": 16024,
"properties": {
"east": "tall",
"north": "none",
@@ -224055,7 +224910,7 @@
}
},
{
- "id": 15884,
+ "id": 16025,
"properties": {
"east": "tall",
"north": "none",
@@ -224066,7 +224921,7 @@
}
},
{
- "id": 15885,
+ "id": 16026,
"properties": {
"east": "tall",
"north": "none",
@@ -224077,7 +224932,7 @@
}
},
{
- "id": 15886,
+ "id": 16027,
"properties": {
"east": "tall",
"north": "none",
@@ -224088,7 +224943,7 @@
}
},
{
- "id": 15887,
+ "id": 16028,
"properties": {
"east": "tall",
"north": "none",
@@ -224099,7 +224954,7 @@
}
},
{
- "id": 15888,
+ "id": 16029,
"properties": {
"east": "tall",
"north": "none",
@@ -224110,7 +224965,7 @@
}
},
{
- "id": 15889,
+ "id": 16030,
"properties": {
"east": "tall",
"north": "none",
@@ -224121,7 +224976,7 @@
}
},
{
- "id": 15890,
+ "id": 16031,
"properties": {
"east": "tall",
"north": "none",
@@ -224132,7 +224987,7 @@
}
},
{
- "id": 15891,
+ "id": 16032,
"properties": {
"east": "tall",
"north": "low",
@@ -224143,7 +224998,7 @@
}
},
{
- "id": 15892,
+ "id": 16033,
"properties": {
"east": "tall",
"north": "low",
@@ -224154,7 +225009,7 @@
}
},
{
- "id": 15893,
+ "id": 16034,
"properties": {
"east": "tall",
"north": "low",
@@ -224165,7 +225020,7 @@
}
},
{
- "id": 15894,
+ "id": 16035,
"properties": {
"east": "tall",
"north": "low",
@@ -224176,7 +225031,7 @@
}
},
{
- "id": 15895,
+ "id": 16036,
"properties": {
"east": "tall",
"north": "low",
@@ -224187,7 +225042,7 @@
}
},
{
- "id": 15896,
+ "id": 16037,
"properties": {
"east": "tall",
"north": "low",
@@ -224198,7 +225053,7 @@
}
},
{
- "id": 15897,
+ "id": 16038,
"properties": {
"east": "tall",
"north": "low",
@@ -224209,7 +225064,7 @@
}
},
{
- "id": 15898,
+ "id": 16039,
"properties": {
"east": "tall",
"north": "low",
@@ -224220,7 +225075,7 @@
}
},
{
- "id": 15899,
+ "id": 16040,
"properties": {
"east": "tall",
"north": "low",
@@ -224231,7 +225086,7 @@
}
},
{
- "id": 15900,
+ "id": 16041,
"properties": {
"east": "tall",
"north": "low",
@@ -224242,7 +225097,7 @@
}
},
{
- "id": 15901,
+ "id": 16042,
"properties": {
"east": "tall",
"north": "low",
@@ -224253,7 +225108,7 @@
}
},
{
- "id": 15902,
+ "id": 16043,
"properties": {
"east": "tall",
"north": "low",
@@ -224264,7 +225119,7 @@
}
},
{
- "id": 15903,
+ "id": 16044,
"properties": {
"east": "tall",
"north": "low",
@@ -224275,7 +225130,7 @@
}
},
{
- "id": 15904,
+ "id": 16045,
"properties": {
"east": "tall",
"north": "low",
@@ -224286,7 +225141,7 @@
}
},
{
- "id": 15905,
+ "id": 16046,
"properties": {
"east": "tall",
"north": "low",
@@ -224297,7 +225152,7 @@
}
},
{
- "id": 15906,
+ "id": 16047,
"properties": {
"east": "tall",
"north": "low",
@@ -224308,7 +225163,7 @@
}
},
{
- "id": 15907,
+ "id": 16048,
"properties": {
"east": "tall",
"north": "low",
@@ -224319,7 +225174,7 @@
}
},
{
- "id": 15908,
+ "id": 16049,
"properties": {
"east": "tall",
"north": "low",
@@ -224330,7 +225185,7 @@
}
},
{
- "id": 15909,
+ "id": 16050,
"properties": {
"east": "tall",
"north": "low",
@@ -224341,7 +225196,7 @@
}
},
{
- "id": 15910,
+ "id": 16051,
"properties": {
"east": "tall",
"north": "low",
@@ -224352,7 +225207,7 @@
}
},
{
- "id": 15911,
+ "id": 16052,
"properties": {
"east": "tall",
"north": "low",
@@ -224363,7 +225218,7 @@
}
},
{
- "id": 15912,
+ "id": 16053,
"properties": {
"east": "tall",
"north": "low",
@@ -224374,7 +225229,7 @@
}
},
{
- "id": 15913,
+ "id": 16054,
"properties": {
"east": "tall",
"north": "low",
@@ -224385,7 +225240,7 @@
}
},
{
- "id": 15914,
+ "id": 16055,
"properties": {
"east": "tall",
"north": "low",
@@ -224396,7 +225251,7 @@
}
},
{
- "id": 15915,
+ "id": 16056,
"properties": {
"east": "tall",
"north": "low",
@@ -224407,7 +225262,7 @@
}
},
{
- "id": 15916,
+ "id": 16057,
"properties": {
"east": "tall",
"north": "low",
@@ -224418,7 +225273,7 @@
}
},
{
- "id": 15917,
+ "id": 16058,
"properties": {
"east": "tall",
"north": "low",
@@ -224429,7 +225284,7 @@
}
},
{
- "id": 15918,
+ "id": 16059,
"properties": {
"east": "tall",
"north": "low",
@@ -224440,7 +225295,7 @@
}
},
{
- "id": 15919,
+ "id": 16060,
"properties": {
"east": "tall",
"north": "low",
@@ -224451,7 +225306,7 @@
}
},
{
- "id": 15920,
+ "id": 16061,
"properties": {
"east": "tall",
"north": "low",
@@ -224462,7 +225317,7 @@
}
},
{
- "id": 15921,
+ "id": 16062,
"properties": {
"east": "tall",
"north": "low",
@@ -224473,7 +225328,7 @@
}
},
{
- "id": 15922,
+ "id": 16063,
"properties": {
"east": "tall",
"north": "low",
@@ -224484,7 +225339,7 @@
}
},
{
- "id": 15923,
+ "id": 16064,
"properties": {
"east": "tall",
"north": "low",
@@ -224495,7 +225350,7 @@
}
},
{
- "id": 15924,
+ "id": 16065,
"properties": {
"east": "tall",
"north": "low",
@@ -224506,7 +225361,7 @@
}
},
{
- "id": 15925,
+ "id": 16066,
"properties": {
"east": "tall",
"north": "low",
@@ -224517,7 +225372,7 @@
}
},
{
- "id": 15926,
+ "id": 16067,
"properties": {
"east": "tall",
"north": "low",
@@ -224528,7 +225383,7 @@
}
},
{
- "id": 15927,
+ "id": 16068,
"properties": {
"east": "tall",
"north": "tall",
@@ -224539,7 +225394,7 @@
}
},
{
- "id": 15928,
+ "id": 16069,
"properties": {
"east": "tall",
"north": "tall",
@@ -224550,7 +225405,7 @@
}
},
{
- "id": 15929,
+ "id": 16070,
"properties": {
"east": "tall",
"north": "tall",
@@ -224561,7 +225416,7 @@
}
},
{
- "id": 15930,
+ "id": 16071,
"properties": {
"east": "tall",
"north": "tall",
@@ -224572,7 +225427,7 @@
}
},
{
- "id": 15931,
+ "id": 16072,
"properties": {
"east": "tall",
"north": "tall",
@@ -224583,7 +225438,7 @@
}
},
{
- "id": 15932,
+ "id": 16073,
"properties": {
"east": "tall",
"north": "tall",
@@ -224594,7 +225449,7 @@
}
},
{
- "id": 15933,
+ "id": 16074,
"properties": {
"east": "tall",
"north": "tall",
@@ -224605,7 +225460,7 @@
}
},
{
- "id": 15934,
+ "id": 16075,
"properties": {
"east": "tall",
"north": "tall",
@@ -224616,7 +225471,7 @@
}
},
{
- "id": 15935,
+ "id": 16076,
"properties": {
"east": "tall",
"north": "tall",
@@ -224627,7 +225482,7 @@
}
},
{
- "id": 15936,
+ "id": 16077,
"properties": {
"east": "tall",
"north": "tall",
@@ -224638,7 +225493,7 @@
}
},
{
- "id": 15937,
+ "id": 16078,
"properties": {
"east": "tall",
"north": "tall",
@@ -224649,7 +225504,7 @@
}
},
{
- "id": 15938,
+ "id": 16079,
"properties": {
"east": "tall",
"north": "tall",
@@ -224660,7 +225515,7 @@
}
},
{
- "id": 15939,
+ "id": 16080,
"properties": {
"east": "tall",
"north": "tall",
@@ -224671,7 +225526,7 @@
}
},
{
- "id": 15940,
+ "id": 16081,
"properties": {
"east": "tall",
"north": "tall",
@@ -224682,7 +225537,7 @@
}
},
{
- "id": 15941,
+ "id": 16082,
"properties": {
"east": "tall",
"north": "tall",
@@ -224693,7 +225548,7 @@
}
},
{
- "id": 15942,
+ "id": 16083,
"properties": {
"east": "tall",
"north": "tall",
@@ -224704,7 +225559,7 @@
}
},
{
- "id": 15943,
+ "id": 16084,
"properties": {
"east": "tall",
"north": "tall",
@@ -224715,7 +225570,7 @@
}
},
{
- "id": 15944,
+ "id": 16085,
"properties": {
"east": "tall",
"north": "tall",
@@ -224726,7 +225581,7 @@
}
},
{
- "id": 15945,
+ "id": 16086,
"properties": {
"east": "tall",
"north": "tall",
@@ -224737,7 +225592,7 @@
}
},
{
- "id": 15946,
+ "id": 16087,
"properties": {
"east": "tall",
"north": "tall",
@@ -224748,7 +225603,7 @@
}
},
{
- "id": 15947,
+ "id": 16088,
"properties": {
"east": "tall",
"north": "tall",
@@ -224759,7 +225614,7 @@
}
},
{
- "id": 15948,
+ "id": 16089,
"properties": {
"east": "tall",
"north": "tall",
@@ -224770,7 +225625,7 @@
}
},
{
- "id": 15949,
+ "id": 16090,
"properties": {
"east": "tall",
"north": "tall",
@@ -224781,7 +225636,7 @@
}
},
{
- "id": 15950,
+ "id": 16091,
"properties": {
"east": "tall",
"north": "tall",
@@ -224792,7 +225647,7 @@
}
},
{
- "id": 15951,
+ "id": 16092,
"properties": {
"east": "tall",
"north": "tall",
@@ -224803,7 +225658,7 @@
}
},
{
- "id": 15952,
+ "id": 16093,
"properties": {
"east": "tall",
"north": "tall",
@@ -224814,7 +225669,7 @@
}
},
{
- "id": 15953,
+ "id": 16094,
"properties": {
"east": "tall",
"north": "tall",
@@ -224825,7 +225680,7 @@
}
},
{
- "id": 15954,
+ "id": 16095,
"properties": {
"east": "tall",
"north": "tall",
@@ -224836,7 +225691,7 @@
}
},
{
- "id": 15955,
+ "id": 16096,
"properties": {
"east": "tall",
"north": "tall",
@@ -224847,7 +225702,7 @@
}
},
{
- "id": 15956,
+ "id": 16097,
"properties": {
"east": "tall",
"north": "tall",
@@ -224858,7 +225713,7 @@
}
},
{
- "id": 15957,
+ "id": 16098,
"properties": {
"east": "tall",
"north": "tall",
@@ -224869,7 +225724,7 @@
}
},
{
- "id": 15958,
+ "id": 16099,
"properties": {
"east": "tall",
"north": "tall",
@@ -224880,7 +225735,7 @@
}
},
{
- "id": 15959,
+ "id": 16100,
"properties": {
"east": "tall",
"north": "tall",
@@ -224891,7 +225746,7 @@
}
},
{
- "id": 15960,
+ "id": 16101,
"properties": {
"east": "tall",
"north": "tall",
@@ -224902,7 +225757,7 @@
}
},
{
- "id": 15961,
+ "id": 16102,
"properties": {
"east": "tall",
"north": "tall",
@@ -224913,7 +225768,7 @@
}
},
{
- "id": 15962,
+ "id": 16103,
"properties": {
"east": "tall",
"north": "tall",
@@ -225184,21 +226039,21 @@
},
"states": [
{
- "id": 11081,
+ "id": 11222,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 11082,
+ "id": 11223,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 11083,
+ "id": 11224,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -225206,21 +226061,21 @@
},
{
"default": true,
- "id": 11084,
+ "id": 11225,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 11085,
+ "id": 11226,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 11086,
+ "id": 11227,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -225254,7 +226109,7 @@
},
"states": [
{
- "id": 13301,
+ "id": 13442,
"properties": {
"facing": "north",
"half": "top",
@@ -225263,7 +226118,7 @@
}
},
{
- "id": 13302,
+ "id": 13443,
"properties": {
"facing": "north",
"half": "top",
@@ -225272,7 +226127,7 @@
}
},
{
- "id": 13303,
+ "id": 13444,
"properties": {
"facing": "north",
"half": "top",
@@ -225281,7 +226136,7 @@
}
},
{
- "id": 13304,
+ "id": 13445,
"properties": {
"facing": "north",
"half": "top",
@@ -225290,7 +226145,7 @@
}
},
{
- "id": 13305,
+ "id": 13446,
"properties": {
"facing": "north",
"half": "top",
@@ -225299,7 +226154,7 @@
}
},
{
- "id": 13306,
+ "id": 13447,
"properties": {
"facing": "north",
"half": "top",
@@ -225308,7 +226163,7 @@
}
},
{
- "id": 13307,
+ "id": 13448,
"properties": {
"facing": "north",
"half": "top",
@@ -225317,7 +226172,7 @@
}
},
{
- "id": 13308,
+ "id": 13449,
"properties": {
"facing": "north",
"half": "top",
@@ -225326,7 +226181,7 @@
}
},
{
- "id": 13309,
+ "id": 13450,
"properties": {
"facing": "north",
"half": "top",
@@ -225335,7 +226190,7 @@
}
},
{
- "id": 13310,
+ "id": 13451,
"properties": {
"facing": "north",
"half": "top",
@@ -225344,7 +226199,7 @@
}
},
{
- "id": 13311,
+ "id": 13452,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225354,7 +226209,7 @@
},
{
"default": true,
- "id": 13312,
+ "id": 13453,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225363,7 +226218,7 @@
}
},
{
- "id": 13313,
+ "id": 13454,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225372,7 +226227,7 @@
}
},
{
- "id": 13314,
+ "id": 13455,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225381,7 +226236,7 @@
}
},
{
- "id": 13315,
+ "id": 13456,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225390,7 +226245,7 @@
}
},
{
- "id": 13316,
+ "id": 13457,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225399,7 +226254,7 @@
}
},
{
- "id": 13317,
+ "id": 13458,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225408,7 +226263,7 @@
}
},
{
- "id": 13318,
+ "id": 13459,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225417,7 +226272,7 @@
}
},
{
- "id": 13319,
+ "id": 13460,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225426,7 +226281,7 @@
}
},
{
- "id": 13320,
+ "id": 13461,
"properties": {
"facing": "north",
"half": "bottom",
@@ -225435,7 +226290,7 @@
}
},
{
- "id": 13321,
+ "id": 13462,
"properties": {
"facing": "south",
"half": "top",
@@ -225444,7 +226299,7 @@
}
},
{
- "id": 13322,
+ "id": 13463,
"properties": {
"facing": "south",
"half": "top",
@@ -225453,7 +226308,7 @@
}
},
{
- "id": 13323,
+ "id": 13464,
"properties": {
"facing": "south",
"half": "top",
@@ -225462,7 +226317,7 @@
}
},
{
- "id": 13324,
+ "id": 13465,
"properties": {
"facing": "south",
"half": "top",
@@ -225471,7 +226326,7 @@
}
},
{
- "id": 13325,
+ "id": 13466,
"properties": {
"facing": "south",
"half": "top",
@@ -225480,7 +226335,7 @@
}
},
{
- "id": 13326,
+ "id": 13467,
"properties": {
"facing": "south",
"half": "top",
@@ -225489,7 +226344,7 @@
}
},
{
- "id": 13327,
+ "id": 13468,
"properties": {
"facing": "south",
"half": "top",
@@ -225498,7 +226353,7 @@
}
},
{
- "id": 13328,
+ "id": 13469,
"properties": {
"facing": "south",
"half": "top",
@@ -225507,7 +226362,7 @@
}
},
{
- "id": 13329,
+ "id": 13470,
"properties": {
"facing": "south",
"half": "top",
@@ -225516,7 +226371,7 @@
}
},
{
- "id": 13330,
+ "id": 13471,
"properties": {
"facing": "south",
"half": "top",
@@ -225525,7 +226380,7 @@
}
},
{
- "id": 13331,
+ "id": 13472,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225534,7 +226389,7 @@
}
},
{
- "id": 13332,
+ "id": 13473,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225543,7 +226398,7 @@
}
},
{
- "id": 13333,
+ "id": 13474,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225552,7 +226407,7 @@
}
},
{
- "id": 13334,
+ "id": 13475,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225561,7 +226416,7 @@
}
},
{
- "id": 13335,
+ "id": 13476,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225570,7 +226425,7 @@
}
},
{
- "id": 13336,
+ "id": 13477,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225579,7 +226434,7 @@
}
},
{
- "id": 13337,
+ "id": 13478,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225588,7 +226443,7 @@
}
},
{
- "id": 13338,
+ "id": 13479,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225597,7 +226452,7 @@
}
},
{
- "id": 13339,
+ "id": 13480,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225606,7 +226461,7 @@
}
},
{
- "id": 13340,
+ "id": 13481,
"properties": {
"facing": "south",
"half": "bottom",
@@ -225615,7 +226470,7 @@
}
},
{
- "id": 13341,
+ "id": 13482,
"properties": {
"facing": "west",
"half": "top",
@@ -225624,7 +226479,7 @@
}
},
{
- "id": 13342,
+ "id": 13483,
"properties": {
"facing": "west",
"half": "top",
@@ -225633,7 +226488,7 @@
}
},
{
- "id": 13343,
+ "id": 13484,
"properties": {
"facing": "west",
"half": "top",
@@ -225642,7 +226497,7 @@
}
},
{
- "id": 13344,
+ "id": 13485,
"properties": {
"facing": "west",
"half": "top",
@@ -225651,7 +226506,7 @@
}
},
{
- "id": 13345,
+ "id": 13486,
"properties": {
"facing": "west",
"half": "top",
@@ -225660,7 +226515,7 @@
}
},
{
- "id": 13346,
+ "id": 13487,
"properties": {
"facing": "west",
"half": "top",
@@ -225669,7 +226524,7 @@
}
},
{
- "id": 13347,
+ "id": 13488,
"properties": {
"facing": "west",
"half": "top",
@@ -225678,7 +226533,7 @@
}
},
{
- "id": 13348,
+ "id": 13489,
"properties": {
"facing": "west",
"half": "top",
@@ -225687,7 +226542,7 @@
}
},
{
- "id": 13349,
+ "id": 13490,
"properties": {
"facing": "west",
"half": "top",
@@ -225696,7 +226551,7 @@
}
},
{
- "id": 13350,
+ "id": 13491,
"properties": {
"facing": "west",
"half": "top",
@@ -225705,7 +226560,7 @@
}
},
{
- "id": 13351,
+ "id": 13492,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225714,7 +226569,7 @@
}
},
{
- "id": 13352,
+ "id": 13493,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225723,7 +226578,7 @@
}
},
{
- "id": 13353,
+ "id": 13494,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225732,7 +226587,7 @@
}
},
{
- "id": 13354,
+ "id": 13495,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225741,7 +226596,7 @@
}
},
{
- "id": 13355,
+ "id": 13496,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225750,7 +226605,7 @@
}
},
{
- "id": 13356,
+ "id": 13497,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225759,7 +226614,7 @@
}
},
{
- "id": 13357,
+ "id": 13498,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225768,7 +226623,7 @@
}
},
{
- "id": 13358,
+ "id": 13499,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225777,7 +226632,7 @@
}
},
{
- "id": 13359,
+ "id": 13500,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225786,7 +226641,7 @@
}
},
{
- "id": 13360,
+ "id": 13501,
"properties": {
"facing": "west",
"half": "bottom",
@@ -225795,7 +226650,7 @@
}
},
{
- "id": 13361,
+ "id": 13502,
"properties": {
"facing": "east",
"half": "top",
@@ -225804,7 +226659,7 @@
}
},
{
- "id": 13362,
+ "id": 13503,
"properties": {
"facing": "east",
"half": "top",
@@ -225813,7 +226668,7 @@
}
},
{
- "id": 13363,
+ "id": 13504,
"properties": {
"facing": "east",
"half": "top",
@@ -225822,7 +226677,7 @@
}
},
{
- "id": 13364,
+ "id": 13505,
"properties": {
"facing": "east",
"half": "top",
@@ -225831,7 +226686,7 @@
}
},
{
- "id": 13365,
+ "id": 13506,
"properties": {
"facing": "east",
"half": "top",
@@ -225840,7 +226695,7 @@
}
},
{
- "id": 13366,
+ "id": 13507,
"properties": {
"facing": "east",
"half": "top",
@@ -225849,7 +226704,7 @@
}
},
{
- "id": 13367,
+ "id": 13508,
"properties": {
"facing": "east",
"half": "top",
@@ -225858,7 +226713,7 @@
}
},
{
- "id": 13368,
+ "id": 13509,
"properties": {
"facing": "east",
"half": "top",
@@ -225867,7 +226722,7 @@
}
},
{
- "id": 13369,
+ "id": 13510,
"properties": {
"facing": "east",
"half": "top",
@@ -225876,7 +226731,7 @@
}
},
{
- "id": 13370,
+ "id": 13511,
"properties": {
"facing": "east",
"half": "top",
@@ -225885,7 +226740,7 @@
}
},
{
- "id": 13371,
+ "id": 13512,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225894,7 +226749,7 @@
}
},
{
- "id": 13372,
+ "id": 13513,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225903,7 +226758,7 @@
}
},
{
- "id": 13373,
+ "id": 13514,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225912,7 +226767,7 @@
}
},
{
- "id": 13374,
+ "id": 13515,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225921,7 +226776,7 @@
}
},
{
- "id": 13375,
+ "id": 13516,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225930,7 +226785,7 @@
}
},
{
- "id": 13376,
+ "id": 13517,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225939,7 +226794,7 @@
}
},
{
- "id": 13377,
+ "id": 13518,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225948,7 +226803,7 @@
}
},
{
- "id": 13378,
+ "id": 13519,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225957,7 +226812,7 @@
}
},
{
- "id": 13379,
+ "id": 13520,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225966,7 +226821,7 @@
}
},
{
- "id": 13380,
+ "id": 13521,
"properties": {
"facing": "east",
"half": "bottom",
@@ -225988,25 +226843,25 @@
"states": [
{
"default": true,
- "id": 18326,
+ "id": 18467,
"properties": {
"facing": "north"
}
},
{
- "id": 18327,
+ "id": 18468,
"properties": {
"facing": "south"
}
},
{
- "id": 18328,
+ "id": 18469,
"properties": {
"facing": "west"
}
},
{
- "id": 18329,
+ "id": 18470,
"properties": {
"facing": "east"
}
@@ -226233,20 +227088,20 @@
},
"states": [
{
- "id": 18464,
+ "id": 18605,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18465,
+ "id": 18606,
"properties": {
"axis": "y"
}
},
{
- "id": 18466,
+ "id": 18607,
"properties": {
"axis": "z"
}
@@ -226263,20 +227118,20 @@
},
"states": [
{
- "id": 18458,
+ "id": 18599,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18459,
+ "id": 18600,
"properties": {
"axis": "y"
}
},
{
- "id": 18460,
+ "id": 18601,
"properties": {
"axis": "z"
}
@@ -226593,20 +227448,20 @@
},
"states": [
{
- "id": 18447,
+ "id": 18588,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18448,
+ "id": 18589,
"properties": {
"axis": "y"
}
},
{
- "id": 18449,
+ "id": 18590,
"properties": {
"axis": "z"
}
@@ -226623,20 +227478,20 @@
},
"states": [
{
- "id": 18441,
+ "id": 18582,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18442,
+ "id": 18583,
"properties": {
"axis": "y"
}
},
{
- "id": 18443,
+ "id": 18584,
"properties": {
"axis": "z"
}
@@ -226654,26 +227509,26 @@
},
"states": [
{
- "id": 19215,
+ "id": 19356,
"properties": {
"mode": "save"
}
},
{
"default": true,
- "id": 19216,
+ "id": 19357,
"properties": {
"mode": "load"
}
},
{
- "id": 19217,
+ "id": 19358,
"properties": {
"mode": "corner"
}
},
{
- "id": 19218,
+ "id": 19359,
"properties": {
"mode": "data"
}
@@ -226684,7 +227539,7 @@
"states": [
{
"default": true,
- "id": 12408
+ "id": 12549
}
]
},
@@ -226818,14 +227673,14 @@
},
"states": [
{
- "id": 10606,
+ "id": 10747,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10607,
+ "id": 10748,
"properties": {
"half": "lower"
}
@@ -226918,25 +227773,25 @@
"states": [
{
"default": true,
- "id": 18434,
+ "id": 18575,
"properties": {
"age": "0"
}
},
{
- "id": 18435,
+ "id": 18576,
"properties": {
"age": "1"
}
},
{
- "id": 18436,
+ "id": 18577,
"properties": {
"age": "2"
}
},
{
- "id": 18437,
+ "id": 18578,
"properties": {
"age": "3"
}
@@ -226952,14 +227807,14 @@
},
"states": [
{
- "id": 10614,
+ "id": 10755,
"properties": {
"half": "upper"
}
},
{
"default": true,
- "id": 10615,
+ "id": 10756,
"properties": {
"half": "lower"
}
@@ -227013,97 +227868,97 @@
"states": [
{
"default": true,
- "id": 19240,
+ "id": 19381,
"properties": {
"power": "0"
}
},
{
- "id": 19241,
+ "id": 19382,
"properties": {
"power": "1"
}
},
{
- "id": 19242,
+ "id": 19383,
"properties": {
"power": "2"
}
},
{
- "id": 19243,
+ "id": 19384,
"properties": {
"power": "3"
}
},
{
- "id": 19244,
+ "id": 19385,
"properties": {
"power": "4"
}
},
{
- "id": 19245,
+ "id": 19386,
"properties": {
"power": "5"
}
},
{
- "id": 19246,
+ "id": 19387,
"properties": {
"power": "6"
}
},
{
- "id": 19247,
+ "id": 19388,
"properties": {
"power": "7"
}
},
{
- "id": 19248,
+ "id": 19389,
"properties": {
"power": "8"
}
},
{
- "id": 19249,
+ "id": 19390,
"properties": {
"power": "9"
}
},
{
- "id": 19250,
+ "id": 19391,
"properties": {
"power": "10"
}
},
{
- "id": 19251,
+ "id": 19392,
"properties": {
"power": "11"
}
},
{
- "id": 19252,
+ "id": 19393,
"properties": {
"power": "12"
}
},
{
- "id": 19253,
+ "id": 19394,
"properties": {
"power": "13"
}
},
{
- "id": 19254,
+ "id": 19395,
"properties": {
"power": "14"
}
},
{
- "id": 19255,
+ "id": 19396,
"properties": {
"power": "15"
}
@@ -227114,7 +227969,7 @@
"states": [
{
"default": true,
- "id": 10603
+ "id": 10744
}
]
},
@@ -227122,7 +227977,7 @@
"states": [
{
"default": true,
- "id": 20942
+ "id": 21083
}
]
},
@@ -227175,13 +228030,13 @@
"states": [
{
"default": true,
- "id": 12354,
+ "id": 12495,
"properties": {
"age": "0"
}
},
{
- "id": 12355,
+ "id": 12496,
"properties": {
"age": "1"
}
@@ -227208,7 +228063,7 @@
},
"states": [
{
- "id": 8979,
+ "id": 9119,
"properties": {
"type": "single",
"facing": "north",
@@ -227217,7 +228072,7 @@
},
{
"default": true,
- "id": 8980,
+ "id": 9120,
"properties": {
"type": "single",
"facing": "north",
@@ -227225,7 +228080,7 @@
}
},
{
- "id": 8981,
+ "id": 9121,
"properties": {
"type": "left",
"facing": "north",
@@ -227233,7 +228088,7 @@
}
},
{
- "id": 8982,
+ "id": 9122,
"properties": {
"type": "left",
"facing": "north",
@@ -227241,7 +228096,7 @@
}
},
{
- "id": 8983,
+ "id": 9123,
"properties": {
"type": "right",
"facing": "north",
@@ -227249,7 +228104,7 @@
}
},
{
- "id": 8984,
+ "id": 9124,
"properties": {
"type": "right",
"facing": "north",
@@ -227257,7 +228112,7 @@
}
},
{
- "id": 8985,
+ "id": 9125,
"properties": {
"type": "single",
"facing": "south",
@@ -227265,7 +228120,7 @@
}
},
{
- "id": 8986,
+ "id": 9126,
"properties": {
"type": "single",
"facing": "south",
@@ -227273,7 +228128,7 @@
}
},
{
- "id": 8987,
+ "id": 9127,
"properties": {
"type": "left",
"facing": "south",
@@ -227281,7 +228136,7 @@
}
},
{
- "id": 8988,
+ "id": 9128,
"properties": {
"type": "left",
"facing": "south",
@@ -227289,7 +228144,7 @@
}
},
{
- "id": 8989,
+ "id": 9129,
"properties": {
"type": "right",
"facing": "south",
@@ -227297,7 +228152,7 @@
}
},
{
- "id": 8990,
+ "id": 9130,
"properties": {
"type": "right",
"facing": "south",
@@ -227305,7 +228160,7 @@
}
},
{
- "id": 8991,
+ "id": 9131,
"properties": {
"type": "single",
"facing": "west",
@@ -227313,7 +228168,7 @@
}
},
{
- "id": 8992,
+ "id": 9132,
"properties": {
"type": "single",
"facing": "west",
@@ -227321,7 +228176,7 @@
}
},
{
- "id": 8993,
+ "id": 9133,
"properties": {
"type": "left",
"facing": "west",
@@ -227329,7 +228184,7 @@
}
},
{
- "id": 8994,
+ "id": 9134,
"properties": {
"type": "left",
"facing": "west",
@@ -227337,7 +228192,7 @@
}
},
{
- "id": 8995,
+ "id": 9135,
"properties": {
"type": "right",
"facing": "west",
@@ -227345,7 +228200,7 @@
}
},
{
- "id": 8996,
+ "id": 9136,
"properties": {
"type": "right",
"facing": "west",
@@ -227353,7 +228208,7 @@
}
},
{
- "id": 8997,
+ "id": 9137,
"properties": {
"type": "single",
"facing": "east",
@@ -227361,7 +228216,7 @@
}
},
{
- "id": 8998,
+ "id": 9138,
"properties": {
"type": "single",
"facing": "east",
@@ -227369,7 +228224,7 @@
}
},
{
- "id": 8999,
+ "id": 9139,
"properties": {
"type": "left",
"facing": "east",
@@ -227377,7 +228232,7 @@
}
},
{
- "id": 9000,
+ "id": 9140,
"properties": {
"type": "left",
"facing": "east",
@@ -227385,7 +228240,7 @@
}
},
{
- "id": 9001,
+ "id": 9141,
"properties": {
"type": "right",
"facing": "east",
@@ -227393,7 +228248,7 @@
}
},
{
- "id": 9002,
+ "id": 9142,
"properties": {
"type": "right",
"facing": "east",
@@ -229132,13 +229987,13 @@
"states": [
{
"default": true,
- "id": 12682,
+ "id": 12823,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12683,
+ "id": 12824,
"properties": {
"waterlogged": "false"
}
@@ -229149,7 +230004,7 @@
"states": [
{
"default": true,
- "id": 12667
+ "id": 12808
}
]
},
@@ -229163,13 +230018,13 @@
"states": [
{
"default": true,
- "id": 12702,
+ "id": 12843,
"properties": {
"waterlogged": "true"
}
},
{
- "id": 12703,
+ "id": 12844,
"properties": {
"waterlogged": "false"
}
@@ -229192,56 +230047,56 @@
"states": [
{
"default": true,
- "id": 12752,
+ "id": 12893,
"properties": {
"facing": "north",
"waterlogged": "true"
}
},
{
- "id": 12753,
+ "id": 12894,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 12754,
+ "id": 12895,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 12755,
+ "id": 12896,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 12756,
+ "id": 12897,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 12757,
+ "id": 12898,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 12758,
+ "id": 12899,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 12759,
+ "id": 12900,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -229253,7 +230108,7 @@
"states": [
{
"default": true,
- "id": 20940
+ "id": 21081
}
]
},
@@ -229274,84 +230129,84 @@
"states": [
{
"default": true,
- "id": 12647,
+ "id": 12788,
"properties": {
"eggs": "1",
"hatch": "0"
}
},
{
- "id": 12648,
+ "id": 12789,
"properties": {
"eggs": "1",
"hatch": "1"
}
},
{
- "id": 12649,
+ "id": 12790,
"properties": {
"eggs": "1",
"hatch": "2"
}
},
{
- "id": 12650,
+ "id": 12791,
"properties": {
"eggs": "2",
"hatch": "0"
}
},
{
- "id": 12651,
+ "id": 12792,
"properties": {
"eggs": "2",
"hatch": "1"
}
},
{
- "id": 12652,
+ "id": 12793,
"properties": {
"eggs": "2",
"hatch": "2"
}
},
{
- "id": 12653,
+ "id": 12794,
"properties": {
"eggs": "3",
"hatch": "0"
}
},
{
- "id": 12654,
+ "id": 12795,
"properties": {
"eggs": "3",
"hatch": "1"
}
},
{
- "id": 12655,
+ "id": 12796,
"properties": {
"eggs": "3",
"hatch": "2"
}
},
{
- "id": 12656,
+ "id": 12797,
"properties": {
"eggs": "4",
"hatch": "0"
}
},
{
- "id": 12657,
+ "id": 12798,
"properties": {
"eggs": "4",
"hatch": "1"
}
},
{
- "id": 12658,
+ "id": 12799,
"properties": {
"eggs": "4",
"hatch": "2"
@@ -229393,157 +230248,157 @@
"states": [
{
"default": true,
- "id": 18497,
+ "id": 18638,
"properties": {
"age": "0"
}
},
{
- "id": 18498,
+ "id": 18639,
"properties": {
"age": "1"
}
},
{
- "id": 18499,
+ "id": 18640,
"properties": {
"age": "2"
}
},
{
- "id": 18500,
+ "id": 18641,
"properties": {
"age": "3"
}
},
{
- "id": 18501,
+ "id": 18642,
"properties": {
"age": "4"
}
},
{
- "id": 18502,
+ "id": 18643,
"properties": {
"age": "5"
}
},
{
- "id": 18503,
+ "id": 18644,
"properties": {
"age": "6"
}
},
{
- "id": 18504,
+ "id": 18645,
"properties": {
"age": "7"
}
},
{
- "id": 18505,
+ "id": 18646,
"properties": {
"age": "8"
}
},
{
- "id": 18506,
+ "id": 18647,
"properties": {
"age": "9"
}
},
{
- "id": 18507,
+ "id": 18648,
"properties": {
"age": "10"
}
},
{
- "id": 18508,
+ "id": 18649,
"properties": {
"age": "11"
}
},
{
- "id": 18509,
+ "id": 18650,
"properties": {
"age": "12"
}
},
{
- "id": 18510,
+ "id": 18651,
"properties": {
"age": "13"
}
},
{
- "id": 18511,
+ "id": 18652,
"properties": {
"age": "14"
}
},
{
- "id": 18512,
+ "id": 18653,
"properties": {
"age": "15"
}
},
{
- "id": 18513,
+ "id": 18654,
"properties": {
"age": "16"
}
},
{
- "id": 18514,
+ "id": 18655,
"properties": {
"age": "17"
}
},
{
- "id": 18515,
+ "id": 18656,
"properties": {
"age": "18"
}
},
{
- "id": 18516,
+ "id": 18657,
"properties": {
"age": "19"
}
},
{
- "id": 18517,
+ "id": 18658,
"properties": {
"age": "20"
}
},
{
- "id": 18518,
+ "id": 18659,
"properties": {
"age": "21"
}
},
{
- "id": 18519,
+ "id": 18660,
"properties": {
"age": "22"
}
},
{
- "id": 18520,
+ "id": 18661,
"properties": {
"age": "23"
}
},
{
- "id": 18521,
+ "id": 18662,
"properties": {
"age": "24"
}
},
{
- "id": 18522,
+ "id": 18663,
"properties": {
"age": "25"
}
@@ -229554,7 +230409,7 @@
"states": [
{
"default": true,
- "id": 18523
+ "id": 18664
}
]
},
@@ -229568,20 +230423,20 @@
},
"states": [
{
- "id": 24111,
+ "id": 24252,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 24112,
+ "id": 24253,
"properties": {
"axis": "y"
}
},
{
- "id": 24113,
+ "id": 24254,
"properties": {
"axis": "z"
}
@@ -229939,7 +230794,7 @@
"states": [
{
"default": true,
- "id": 12817
+ "id": 12958
}
]
},
@@ -230000,7 +230855,7 @@
},
"states": [
{
- "id": 18983,
+ "id": 19124,
"properties": {
"face": "floor",
"facing": "north",
@@ -230008,7 +230863,7 @@
}
},
{
- "id": 18984,
+ "id": 19125,
"properties": {
"face": "floor",
"facing": "north",
@@ -230016,7 +230871,7 @@
}
},
{
- "id": 18985,
+ "id": 19126,
"properties": {
"face": "floor",
"facing": "south",
@@ -230024,7 +230879,7 @@
}
},
{
- "id": 18986,
+ "id": 19127,
"properties": {
"face": "floor",
"facing": "south",
@@ -230032,7 +230887,7 @@
}
},
{
- "id": 18987,
+ "id": 19128,
"properties": {
"face": "floor",
"facing": "west",
@@ -230040,7 +230895,7 @@
}
},
{
- "id": 18988,
+ "id": 19129,
"properties": {
"face": "floor",
"facing": "west",
@@ -230048,7 +230903,7 @@
}
},
{
- "id": 18989,
+ "id": 19130,
"properties": {
"face": "floor",
"facing": "east",
@@ -230056,7 +230911,7 @@
}
},
{
- "id": 18990,
+ "id": 19131,
"properties": {
"face": "floor",
"facing": "east",
@@ -230064,7 +230919,7 @@
}
},
{
- "id": 18991,
+ "id": 19132,
"properties": {
"face": "wall",
"facing": "north",
@@ -230073,7 +230928,7 @@
},
{
"default": true,
- "id": 18992,
+ "id": 19133,
"properties": {
"face": "wall",
"facing": "north",
@@ -230081,7 +230936,7 @@
}
},
{
- "id": 18993,
+ "id": 19134,
"properties": {
"face": "wall",
"facing": "south",
@@ -230089,7 +230944,7 @@
}
},
{
- "id": 18994,
+ "id": 19135,
"properties": {
"face": "wall",
"facing": "south",
@@ -230097,7 +230952,7 @@
}
},
{
- "id": 18995,
+ "id": 19136,
"properties": {
"face": "wall",
"facing": "west",
@@ -230105,7 +230960,7 @@
}
},
{
- "id": 18996,
+ "id": 19137,
"properties": {
"face": "wall",
"facing": "west",
@@ -230113,7 +230968,7 @@
}
},
{
- "id": 18997,
+ "id": 19138,
"properties": {
"face": "wall",
"facing": "east",
@@ -230121,7 +230976,7 @@
}
},
{
- "id": 18998,
+ "id": 19139,
"properties": {
"face": "wall",
"facing": "east",
@@ -230129,7 +230984,7 @@
}
},
{
- "id": 18999,
+ "id": 19140,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -230137,7 +230992,7 @@
}
},
{
- "id": 19000,
+ "id": 19141,
"properties": {
"face": "ceiling",
"facing": "north",
@@ -230145,7 +231000,7 @@
}
},
{
- "id": 19001,
+ "id": 19142,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -230153,7 +231008,7 @@
}
},
{
- "id": 19002,
+ "id": 19143,
"properties": {
"face": "ceiling",
"facing": "south",
@@ -230161,7 +231016,7 @@
}
},
{
- "id": 19003,
+ "id": 19144,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -230169,7 +231024,7 @@
}
},
{
- "id": 19004,
+ "id": 19145,
"properties": {
"face": "ceiling",
"facing": "west",
@@ -230177,7 +231032,7 @@
}
},
{
- "id": 19005,
+ "id": 19146,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -230185,7 +231040,7 @@
}
},
{
- "id": 19006,
+ "id": 19147,
"properties": {
"face": "ceiling",
"facing": "east",
@@ -230221,7 +231076,7 @@
},
"states": [
{
- "id": 19071,
+ "id": 19212,
"properties": {
"facing": "north",
"half": "upper",
@@ -230231,7 +231086,7 @@
}
},
{
- "id": 19072,
+ "id": 19213,
"properties": {
"facing": "north",
"half": "upper",
@@ -230241,7 +231096,7 @@
}
},
{
- "id": 19073,
+ "id": 19214,
"properties": {
"facing": "north",
"half": "upper",
@@ -230251,7 +231106,7 @@
}
},
{
- "id": 19074,
+ "id": 19215,
"properties": {
"facing": "north",
"half": "upper",
@@ -230261,7 +231116,7 @@
}
},
{
- "id": 19075,
+ "id": 19216,
"properties": {
"facing": "north",
"half": "upper",
@@ -230271,7 +231126,7 @@
}
},
{
- "id": 19076,
+ "id": 19217,
"properties": {
"facing": "north",
"half": "upper",
@@ -230281,7 +231136,7 @@
}
},
{
- "id": 19077,
+ "id": 19218,
"properties": {
"facing": "north",
"half": "upper",
@@ -230291,7 +231146,7 @@
}
},
{
- "id": 19078,
+ "id": 19219,
"properties": {
"facing": "north",
"half": "upper",
@@ -230301,7 +231156,7 @@
}
},
{
- "id": 19079,
+ "id": 19220,
"properties": {
"facing": "north",
"half": "lower",
@@ -230311,7 +231166,7 @@
}
},
{
- "id": 19080,
+ "id": 19221,
"properties": {
"facing": "north",
"half": "lower",
@@ -230321,7 +231176,7 @@
}
},
{
- "id": 19081,
+ "id": 19222,
"properties": {
"facing": "north",
"half": "lower",
@@ -230332,7 +231187,7 @@
},
{
"default": true,
- "id": 19082,
+ "id": 19223,
"properties": {
"facing": "north",
"half": "lower",
@@ -230342,7 +231197,7 @@
}
},
{
- "id": 19083,
+ "id": 19224,
"properties": {
"facing": "north",
"half": "lower",
@@ -230352,7 +231207,7 @@
}
},
{
- "id": 19084,
+ "id": 19225,
"properties": {
"facing": "north",
"half": "lower",
@@ -230362,7 +231217,7 @@
}
},
{
- "id": 19085,
+ "id": 19226,
"properties": {
"facing": "north",
"half": "lower",
@@ -230372,7 +231227,7 @@
}
},
{
- "id": 19086,
+ "id": 19227,
"properties": {
"facing": "north",
"half": "lower",
@@ -230382,7 +231237,7 @@
}
},
{
- "id": 19087,
+ "id": 19228,
"properties": {
"facing": "south",
"half": "upper",
@@ -230392,7 +231247,7 @@
}
},
{
- "id": 19088,
+ "id": 19229,
"properties": {
"facing": "south",
"half": "upper",
@@ -230402,7 +231257,7 @@
}
},
{
- "id": 19089,
+ "id": 19230,
"properties": {
"facing": "south",
"half": "upper",
@@ -230412,7 +231267,7 @@
}
},
{
- "id": 19090,
+ "id": 19231,
"properties": {
"facing": "south",
"half": "upper",
@@ -230422,7 +231277,7 @@
}
},
{
- "id": 19091,
+ "id": 19232,
"properties": {
"facing": "south",
"half": "upper",
@@ -230432,7 +231287,7 @@
}
},
{
- "id": 19092,
+ "id": 19233,
"properties": {
"facing": "south",
"half": "upper",
@@ -230442,7 +231297,7 @@
}
},
{
- "id": 19093,
+ "id": 19234,
"properties": {
"facing": "south",
"half": "upper",
@@ -230452,7 +231307,7 @@
}
},
{
- "id": 19094,
+ "id": 19235,
"properties": {
"facing": "south",
"half": "upper",
@@ -230462,7 +231317,7 @@
}
},
{
- "id": 19095,
+ "id": 19236,
"properties": {
"facing": "south",
"half": "lower",
@@ -230472,7 +231327,7 @@
}
},
{
- "id": 19096,
+ "id": 19237,
"properties": {
"facing": "south",
"half": "lower",
@@ -230482,7 +231337,7 @@
}
},
{
- "id": 19097,
+ "id": 19238,
"properties": {
"facing": "south",
"half": "lower",
@@ -230492,7 +231347,7 @@
}
},
{
- "id": 19098,
+ "id": 19239,
"properties": {
"facing": "south",
"half": "lower",
@@ -230502,7 +231357,7 @@
}
},
{
- "id": 19099,
+ "id": 19240,
"properties": {
"facing": "south",
"half": "lower",
@@ -230512,7 +231367,7 @@
}
},
{
- "id": 19100,
+ "id": 19241,
"properties": {
"facing": "south",
"half": "lower",
@@ -230522,7 +231377,7 @@
}
},
{
- "id": 19101,
+ "id": 19242,
"properties": {
"facing": "south",
"half": "lower",
@@ -230532,7 +231387,7 @@
}
},
{
- "id": 19102,
+ "id": 19243,
"properties": {
"facing": "south",
"half": "lower",
@@ -230542,7 +231397,7 @@
}
},
{
- "id": 19103,
+ "id": 19244,
"properties": {
"facing": "west",
"half": "upper",
@@ -230552,7 +231407,7 @@
}
},
{
- "id": 19104,
+ "id": 19245,
"properties": {
"facing": "west",
"half": "upper",
@@ -230562,7 +231417,7 @@
}
},
{
- "id": 19105,
+ "id": 19246,
"properties": {
"facing": "west",
"half": "upper",
@@ -230572,7 +231427,7 @@
}
},
{
- "id": 19106,
+ "id": 19247,
"properties": {
"facing": "west",
"half": "upper",
@@ -230582,7 +231437,7 @@
}
},
{
- "id": 19107,
+ "id": 19248,
"properties": {
"facing": "west",
"half": "upper",
@@ -230592,7 +231447,7 @@
}
},
{
- "id": 19108,
+ "id": 19249,
"properties": {
"facing": "west",
"half": "upper",
@@ -230602,7 +231457,7 @@
}
},
{
- "id": 19109,
+ "id": 19250,
"properties": {
"facing": "west",
"half": "upper",
@@ -230612,7 +231467,7 @@
}
},
{
- "id": 19110,
+ "id": 19251,
"properties": {
"facing": "west",
"half": "upper",
@@ -230622,7 +231477,7 @@
}
},
{
- "id": 19111,
+ "id": 19252,
"properties": {
"facing": "west",
"half": "lower",
@@ -230632,7 +231487,7 @@
}
},
{
- "id": 19112,
+ "id": 19253,
"properties": {
"facing": "west",
"half": "lower",
@@ -230642,7 +231497,7 @@
}
},
{
- "id": 19113,
+ "id": 19254,
"properties": {
"facing": "west",
"half": "lower",
@@ -230652,7 +231507,7 @@
}
},
{
- "id": 19114,
+ "id": 19255,
"properties": {
"facing": "west",
"half": "lower",
@@ -230662,7 +231517,7 @@
}
},
{
- "id": 19115,
+ "id": 19256,
"properties": {
"facing": "west",
"half": "lower",
@@ -230672,7 +231527,7 @@
}
},
{
- "id": 19116,
+ "id": 19257,
"properties": {
"facing": "west",
"half": "lower",
@@ -230682,7 +231537,7 @@
}
},
{
- "id": 19117,
+ "id": 19258,
"properties": {
"facing": "west",
"half": "lower",
@@ -230692,7 +231547,7 @@
}
},
{
- "id": 19118,
+ "id": 19259,
"properties": {
"facing": "west",
"half": "lower",
@@ -230702,7 +231557,7 @@
}
},
{
- "id": 19119,
+ "id": 19260,
"properties": {
"facing": "east",
"half": "upper",
@@ -230712,7 +231567,7 @@
}
},
{
- "id": 19120,
+ "id": 19261,
"properties": {
"facing": "east",
"half": "upper",
@@ -230722,7 +231577,7 @@
}
},
{
- "id": 19121,
+ "id": 19262,
"properties": {
"facing": "east",
"half": "upper",
@@ -230732,7 +231587,7 @@
}
},
{
- "id": 19122,
+ "id": 19263,
"properties": {
"facing": "east",
"half": "upper",
@@ -230742,7 +231597,7 @@
}
},
{
- "id": 19123,
+ "id": 19264,
"properties": {
"facing": "east",
"half": "upper",
@@ -230752,7 +231607,7 @@
}
},
{
- "id": 19124,
+ "id": 19265,
"properties": {
"facing": "east",
"half": "upper",
@@ -230762,7 +231617,7 @@
}
},
{
- "id": 19125,
+ "id": 19266,
"properties": {
"facing": "east",
"half": "upper",
@@ -230772,7 +231627,7 @@
}
},
{
- "id": 19126,
+ "id": 19267,
"properties": {
"facing": "east",
"half": "upper",
@@ -230782,7 +231637,7 @@
}
},
{
- "id": 19127,
+ "id": 19268,
"properties": {
"facing": "east",
"half": "lower",
@@ -230792,7 +231647,7 @@
}
},
{
- "id": 19128,
+ "id": 19269,
"properties": {
"facing": "east",
"half": "lower",
@@ -230802,7 +231657,7 @@
}
},
{
- "id": 19129,
+ "id": 19270,
"properties": {
"facing": "east",
"half": "lower",
@@ -230812,7 +231667,7 @@
}
},
{
- "id": 19130,
+ "id": 19271,
"properties": {
"facing": "east",
"half": "lower",
@@ -230822,7 +231677,7 @@
}
},
{
- "id": 19131,
+ "id": 19272,
"properties": {
"facing": "east",
"half": "lower",
@@ -230832,7 +231687,7 @@
}
},
{
- "id": 19132,
+ "id": 19273,
"properties": {
"facing": "east",
"half": "lower",
@@ -230842,7 +231697,7 @@
}
},
{
- "id": 19133,
+ "id": 19274,
"properties": {
"facing": "east",
"half": "lower",
@@ -230852,7 +231707,7 @@
}
},
{
- "id": 19134,
+ "id": 19275,
"properties": {
"facing": "east",
"half": "lower",
@@ -230888,7 +231743,7 @@
},
"states": [
{
- "id": 18575,
+ "id": 18716,
"properties": {
"east": "true",
"north": "true",
@@ -230898,7 +231753,7 @@
}
},
{
- "id": 18576,
+ "id": 18717,
"properties": {
"east": "true",
"north": "true",
@@ -230908,7 +231763,7 @@
}
},
{
- "id": 18577,
+ "id": 18718,
"properties": {
"east": "true",
"north": "true",
@@ -230918,7 +231773,7 @@
}
},
{
- "id": 18578,
+ "id": 18719,
"properties": {
"east": "true",
"north": "true",
@@ -230928,7 +231783,7 @@
}
},
{
- "id": 18579,
+ "id": 18720,
"properties": {
"east": "true",
"north": "true",
@@ -230938,7 +231793,7 @@
}
},
{
- "id": 18580,
+ "id": 18721,
"properties": {
"east": "true",
"north": "true",
@@ -230948,7 +231803,7 @@
}
},
{
- "id": 18581,
+ "id": 18722,
"properties": {
"east": "true",
"north": "true",
@@ -230958,7 +231813,7 @@
}
},
{
- "id": 18582,
+ "id": 18723,
"properties": {
"east": "true",
"north": "true",
@@ -230968,7 +231823,7 @@
}
},
{
- "id": 18583,
+ "id": 18724,
"properties": {
"east": "true",
"north": "false",
@@ -230978,7 +231833,7 @@
}
},
{
- "id": 18584,
+ "id": 18725,
"properties": {
"east": "true",
"north": "false",
@@ -230988,7 +231843,7 @@
}
},
{
- "id": 18585,
+ "id": 18726,
"properties": {
"east": "true",
"north": "false",
@@ -230998,7 +231853,7 @@
}
},
{
- "id": 18586,
+ "id": 18727,
"properties": {
"east": "true",
"north": "false",
@@ -231008,7 +231863,7 @@
}
},
{
- "id": 18587,
+ "id": 18728,
"properties": {
"east": "true",
"north": "false",
@@ -231018,7 +231873,7 @@
}
},
{
- "id": 18588,
+ "id": 18729,
"properties": {
"east": "true",
"north": "false",
@@ -231028,7 +231883,7 @@
}
},
{
- "id": 18589,
+ "id": 18730,
"properties": {
"east": "true",
"north": "false",
@@ -231038,7 +231893,7 @@
}
},
{
- "id": 18590,
+ "id": 18731,
"properties": {
"east": "true",
"north": "false",
@@ -231048,7 +231903,7 @@
}
},
{
- "id": 18591,
+ "id": 18732,
"properties": {
"east": "false",
"north": "true",
@@ -231058,7 +231913,7 @@
}
},
{
- "id": 18592,
+ "id": 18733,
"properties": {
"east": "false",
"north": "true",
@@ -231068,7 +231923,7 @@
}
},
{
- "id": 18593,
+ "id": 18734,
"properties": {
"east": "false",
"north": "true",
@@ -231078,7 +231933,7 @@
}
},
{
- "id": 18594,
+ "id": 18735,
"properties": {
"east": "false",
"north": "true",
@@ -231088,7 +231943,7 @@
}
},
{
- "id": 18595,
+ "id": 18736,
"properties": {
"east": "false",
"north": "true",
@@ -231098,7 +231953,7 @@
}
},
{
- "id": 18596,
+ "id": 18737,
"properties": {
"east": "false",
"north": "true",
@@ -231108,7 +231963,7 @@
}
},
{
- "id": 18597,
+ "id": 18738,
"properties": {
"east": "false",
"north": "true",
@@ -231118,7 +231973,7 @@
}
},
{
- "id": 18598,
+ "id": 18739,
"properties": {
"east": "false",
"north": "true",
@@ -231128,7 +231983,7 @@
}
},
{
- "id": 18599,
+ "id": 18740,
"properties": {
"east": "false",
"north": "false",
@@ -231138,7 +231993,7 @@
}
},
{
- "id": 18600,
+ "id": 18741,
"properties": {
"east": "false",
"north": "false",
@@ -231148,7 +232003,7 @@
}
},
{
- "id": 18601,
+ "id": 18742,
"properties": {
"east": "false",
"north": "false",
@@ -231158,7 +232013,7 @@
}
},
{
- "id": 18602,
+ "id": 18743,
"properties": {
"east": "false",
"north": "false",
@@ -231168,7 +232023,7 @@
}
},
{
- "id": 18603,
+ "id": 18744,
"properties": {
"east": "false",
"north": "false",
@@ -231178,7 +232033,7 @@
}
},
{
- "id": 18604,
+ "id": 18745,
"properties": {
"east": "false",
"north": "false",
@@ -231188,7 +232043,7 @@
}
},
{
- "id": 18605,
+ "id": 18746,
"properties": {
"east": "false",
"north": "false",
@@ -231199,7 +232054,7 @@
},
{
"default": true,
- "id": 18606,
+ "id": 18747,
"properties": {
"east": "false",
"north": "false",
@@ -231233,7 +232088,7 @@
},
"states": [
{
- "id": 18767,
+ "id": 18908,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231242,7 +232097,7 @@
}
},
{
- "id": 18768,
+ "id": 18909,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231251,7 +232106,7 @@
}
},
{
- "id": 18769,
+ "id": 18910,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231260,7 +232115,7 @@
}
},
{
- "id": 18770,
+ "id": 18911,
"properties": {
"facing": "north",
"in_wall": "true",
@@ -231269,7 +232124,7 @@
}
},
{
- "id": 18771,
+ "id": 18912,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231278,7 +232133,7 @@
}
},
{
- "id": 18772,
+ "id": 18913,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231287,7 +232142,7 @@
}
},
{
- "id": 18773,
+ "id": 18914,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231297,7 +232152,7 @@
},
{
"default": true,
- "id": 18774,
+ "id": 18915,
"properties": {
"facing": "north",
"in_wall": "false",
@@ -231306,7 +232161,7 @@
}
},
{
- "id": 18775,
+ "id": 18916,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231315,7 +232170,7 @@
}
},
{
- "id": 18776,
+ "id": 18917,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231324,7 +232179,7 @@
}
},
{
- "id": 18777,
+ "id": 18918,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231333,7 +232188,7 @@
}
},
{
- "id": 18778,
+ "id": 18919,
"properties": {
"facing": "south",
"in_wall": "true",
@@ -231342,7 +232197,7 @@
}
},
{
- "id": 18779,
+ "id": 18920,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231351,7 +232206,7 @@
}
},
{
- "id": 18780,
+ "id": 18921,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231360,7 +232215,7 @@
}
},
{
- "id": 18781,
+ "id": 18922,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231369,7 +232224,7 @@
}
},
{
- "id": 18782,
+ "id": 18923,
"properties": {
"facing": "south",
"in_wall": "false",
@@ -231378,7 +232233,7 @@
}
},
{
- "id": 18783,
+ "id": 18924,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231387,7 +232242,7 @@
}
},
{
- "id": 18784,
+ "id": 18925,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231396,7 +232251,7 @@
}
},
{
- "id": 18785,
+ "id": 18926,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231405,7 +232260,7 @@
}
},
{
- "id": 18786,
+ "id": 18927,
"properties": {
"facing": "west",
"in_wall": "true",
@@ -231414,7 +232269,7 @@
}
},
{
- "id": 18787,
+ "id": 18928,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231423,7 +232278,7 @@
}
},
{
- "id": 18788,
+ "id": 18929,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231432,7 +232287,7 @@
}
},
{
- "id": 18789,
+ "id": 18930,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231441,7 +232296,7 @@
}
},
{
- "id": 18790,
+ "id": 18931,
"properties": {
"facing": "west",
"in_wall": "false",
@@ -231450,7 +232305,7 @@
}
},
{
- "id": 18791,
+ "id": 18932,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231459,7 +232314,7 @@
}
},
{
- "id": 18792,
+ "id": 18933,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231468,7 +232323,7 @@
}
},
{
- "id": 18793,
+ "id": 18934,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231477,7 +232332,7 @@
}
},
{
- "id": 18794,
+ "id": 18935,
"properties": {
"facing": "east",
"in_wall": "true",
@@ -231486,7 +232341,7 @@
}
},
{
- "id": 18795,
+ "id": 18936,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231495,7 +232350,7 @@
}
},
{
- "id": 18796,
+ "id": 18937,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231504,7 +232359,7 @@
}
},
{
- "id": 18797,
+ "id": 18938,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231513,7 +232368,7 @@
}
},
{
- "id": 18798,
+ "id": 18939,
"properties": {
"facing": "east",
"in_wall": "false",
@@ -231527,7 +232382,7 @@
"states": [
{
"default": true,
- "id": 18451
+ "id": 18592
}
]
},
@@ -232086,20 +232941,20 @@
},
"states": [
{
- "id": 18444,
+ "id": 18585,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18445,
+ "id": 18586,
"properties": {
"axis": "y"
}
},
{
- "id": 18446,
+ "id": 18587,
"properties": {
"axis": "z"
}
@@ -232110,7 +232965,7 @@
"states": [
{
"default": true,
- "id": 18450
+ "id": 18591
}
]
},
@@ -232118,7 +232973,7 @@
"states": [
{
"default": true,
- "id": 18526
+ "id": 18667
}
]
},
@@ -232131,14 +232986,14 @@
},
"states": [
{
- "id": 18541,
+ "id": 18682,
"properties": {
"powered": "true"
}
},
{
"default": true,
- "id": 18542,
+ "id": 18683,
"properties": {
"powered": "false"
}
@@ -232149,7 +233004,7 @@
"states": [
{
"default": true,
- "id": 18453
+ "id": 18594
}
]
},
@@ -232180,7 +233035,7 @@
},
"states": [
{
- "id": 19167,
+ "id": 19308,
"properties": {
"rotation": "0",
"waterlogged": "true"
@@ -232188,217 +233043,217 @@
},
{
"default": true,
- "id": 19168,
+ "id": 19309,
"properties": {
"rotation": "0",
"waterlogged": "false"
}
},
{
- "id": 19169,
+ "id": 19310,
"properties": {
"rotation": "1",
"waterlogged": "true"
}
},
{
- "id": 19170,
+ "id": 19311,
"properties": {
"rotation": "1",
"waterlogged": "false"
}
},
{
- "id": 19171,
+ "id": 19312,
"properties": {
"rotation": "2",
"waterlogged": "true"
}
},
{
- "id": 19172,
+ "id": 19313,
"properties": {
"rotation": "2",
"waterlogged": "false"
}
},
{
- "id": 19173,
+ "id": 19314,
"properties": {
"rotation": "3",
"waterlogged": "true"
}
},
{
- "id": 19174,
+ "id": 19315,
"properties": {
"rotation": "3",
"waterlogged": "false"
}
},
{
- "id": 19175,
+ "id": 19316,
"properties": {
"rotation": "4",
"waterlogged": "true"
}
},
{
- "id": 19176,
+ "id": 19317,
"properties": {
"rotation": "4",
"waterlogged": "false"
}
},
{
- "id": 19177,
+ "id": 19318,
"properties": {
"rotation": "5",
"waterlogged": "true"
}
},
{
- "id": 19178,
+ "id": 19319,
"properties": {
"rotation": "5",
"waterlogged": "false"
}
},
{
- "id": 19179,
+ "id": 19320,
"properties": {
"rotation": "6",
"waterlogged": "true"
}
},
{
- "id": 19180,
+ "id": 19321,
"properties": {
"rotation": "6",
"waterlogged": "false"
}
},
{
- "id": 19181,
+ "id": 19322,
"properties": {
"rotation": "7",
"waterlogged": "true"
}
},
{
- "id": 19182,
+ "id": 19323,
"properties": {
"rotation": "7",
"waterlogged": "false"
}
},
{
- "id": 19183,
+ "id": 19324,
"properties": {
"rotation": "8",
"waterlogged": "true"
}
},
{
- "id": 19184,
+ "id": 19325,
"properties": {
"rotation": "8",
"waterlogged": "false"
}
},
{
- "id": 19185,
+ "id": 19326,
"properties": {
"rotation": "9",
"waterlogged": "true"
}
},
{
- "id": 19186,
+ "id": 19327,
"properties": {
"rotation": "9",
"waterlogged": "false"
}
},
{
- "id": 19187,
+ "id": 19328,
"properties": {
"rotation": "10",
"waterlogged": "true"
}
},
{
- "id": 19188,
+ "id": 19329,
"properties": {
"rotation": "10",
"waterlogged": "false"
}
},
{
- "id": 19189,
+ "id": 19330,
"properties": {
"rotation": "11",
"waterlogged": "true"
}
},
{
- "id": 19190,
+ "id": 19331,
"properties": {
"rotation": "11",
"waterlogged": "false"
}
},
{
- "id": 19191,
+ "id": 19332,
"properties": {
"rotation": "12",
"waterlogged": "true"
}
},
{
- "id": 19192,
+ "id": 19333,
"properties": {
"rotation": "12",
"waterlogged": "false"
}
},
{
- "id": 19193,
+ "id": 19334,
"properties": {
"rotation": "13",
"waterlogged": "true"
}
},
{
- "id": 19194,
+ "id": 19335,
"properties": {
"rotation": "13",
"waterlogged": "false"
}
},
{
- "id": 19195,
+ "id": 19336,
"properties": {
"rotation": "14",
"waterlogged": "true"
}
},
{
- "id": 19196,
+ "id": 19337,
"properties": {
"rotation": "14",
"waterlogged": "false"
}
},
{
- "id": 19197,
+ "id": 19338,
"properties": {
"rotation": "15",
"waterlogged": "true"
}
},
{
- "id": 19198,
+ "id": 19339,
"properties": {
"rotation": "15",
"waterlogged": "false"
@@ -232420,21 +233275,21 @@
},
"states": [
{
- "id": 18533,
+ "id": 18674,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 18534,
+ "id": 18675,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 18535,
+ "id": 18676,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -232442,21 +233297,21 @@
},
{
"default": true,
- "id": 18536,
+ "id": 18677,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 18537,
+ "id": 18678,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 18538,
+ "id": 18679,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -232490,7 +233345,7 @@
},
"states": [
{
- "id": 18879,
+ "id": 19020,
"properties": {
"facing": "north",
"half": "top",
@@ -232499,7 +233354,7 @@
}
},
{
- "id": 18880,
+ "id": 19021,
"properties": {
"facing": "north",
"half": "top",
@@ -232508,7 +233363,7 @@
}
},
{
- "id": 18881,
+ "id": 19022,
"properties": {
"facing": "north",
"half": "top",
@@ -232517,7 +233372,7 @@
}
},
{
- "id": 18882,
+ "id": 19023,
"properties": {
"facing": "north",
"half": "top",
@@ -232526,7 +233381,7 @@
}
},
{
- "id": 18883,
+ "id": 19024,
"properties": {
"facing": "north",
"half": "top",
@@ -232535,7 +233390,7 @@
}
},
{
- "id": 18884,
+ "id": 19025,
"properties": {
"facing": "north",
"half": "top",
@@ -232544,7 +233399,7 @@
}
},
{
- "id": 18885,
+ "id": 19026,
"properties": {
"facing": "north",
"half": "top",
@@ -232553,7 +233408,7 @@
}
},
{
- "id": 18886,
+ "id": 19027,
"properties": {
"facing": "north",
"half": "top",
@@ -232562,7 +233417,7 @@
}
},
{
- "id": 18887,
+ "id": 19028,
"properties": {
"facing": "north",
"half": "top",
@@ -232571,7 +233426,7 @@
}
},
{
- "id": 18888,
+ "id": 19029,
"properties": {
"facing": "north",
"half": "top",
@@ -232580,7 +233435,7 @@
}
},
{
- "id": 18889,
+ "id": 19030,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232590,7 +233445,7 @@
},
{
"default": true,
- "id": 18890,
+ "id": 19031,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232599,7 +233454,7 @@
}
},
{
- "id": 18891,
+ "id": 19032,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232608,7 +233463,7 @@
}
},
{
- "id": 18892,
+ "id": 19033,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232617,7 +233472,7 @@
}
},
{
- "id": 18893,
+ "id": 19034,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232626,7 +233481,7 @@
}
},
{
- "id": 18894,
+ "id": 19035,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232635,7 +233490,7 @@
}
},
{
- "id": 18895,
+ "id": 19036,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232644,7 +233499,7 @@
}
},
{
- "id": 18896,
+ "id": 19037,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232653,7 +233508,7 @@
}
},
{
- "id": 18897,
+ "id": 19038,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232662,7 +233517,7 @@
}
},
{
- "id": 18898,
+ "id": 19039,
"properties": {
"facing": "north",
"half": "bottom",
@@ -232671,7 +233526,7 @@
}
},
{
- "id": 18899,
+ "id": 19040,
"properties": {
"facing": "south",
"half": "top",
@@ -232680,7 +233535,7 @@
}
},
{
- "id": 18900,
+ "id": 19041,
"properties": {
"facing": "south",
"half": "top",
@@ -232689,7 +233544,7 @@
}
},
{
- "id": 18901,
+ "id": 19042,
"properties": {
"facing": "south",
"half": "top",
@@ -232698,7 +233553,7 @@
}
},
{
- "id": 18902,
+ "id": 19043,
"properties": {
"facing": "south",
"half": "top",
@@ -232707,7 +233562,7 @@
}
},
{
- "id": 18903,
+ "id": 19044,
"properties": {
"facing": "south",
"half": "top",
@@ -232716,7 +233571,7 @@
}
},
{
- "id": 18904,
+ "id": 19045,
"properties": {
"facing": "south",
"half": "top",
@@ -232725,7 +233580,7 @@
}
},
{
- "id": 18905,
+ "id": 19046,
"properties": {
"facing": "south",
"half": "top",
@@ -232734,7 +233589,7 @@
}
},
{
- "id": 18906,
+ "id": 19047,
"properties": {
"facing": "south",
"half": "top",
@@ -232743,7 +233598,7 @@
}
},
{
- "id": 18907,
+ "id": 19048,
"properties": {
"facing": "south",
"half": "top",
@@ -232752,7 +233607,7 @@
}
},
{
- "id": 18908,
+ "id": 19049,
"properties": {
"facing": "south",
"half": "top",
@@ -232761,7 +233616,7 @@
}
},
{
- "id": 18909,
+ "id": 19050,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232770,7 +233625,7 @@
}
},
{
- "id": 18910,
+ "id": 19051,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232779,7 +233634,7 @@
}
},
{
- "id": 18911,
+ "id": 19052,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232788,7 +233643,7 @@
}
},
{
- "id": 18912,
+ "id": 19053,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232797,7 +233652,7 @@
}
},
{
- "id": 18913,
+ "id": 19054,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232806,7 +233661,7 @@
}
},
{
- "id": 18914,
+ "id": 19055,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232815,7 +233670,7 @@
}
},
{
- "id": 18915,
+ "id": 19056,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232824,7 +233679,7 @@
}
},
{
- "id": 18916,
+ "id": 19057,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232833,7 +233688,7 @@
}
},
{
- "id": 18917,
+ "id": 19058,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232842,7 +233697,7 @@
}
},
{
- "id": 18918,
+ "id": 19059,
"properties": {
"facing": "south",
"half": "bottom",
@@ -232851,7 +233706,7 @@
}
},
{
- "id": 18919,
+ "id": 19060,
"properties": {
"facing": "west",
"half": "top",
@@ -232860,7 +233715,7 @@
}
},
{
- "id": 18920,
+ "id": 19061,
"properties": {
"facing": "west",
"half": "top",
@@ -232869,7 +233724,7 @@
}
},
{
- "id": 18921,
+ "id": 19062,
"properties": {
"facing": "west",
"half": "top",
@@ -232878,7 +233733,7 @@
}
},
{
- "id": 18922,
+ "id": 19063,
"properties": {
"facing": "west",
"half": "top",
@@ -232887,7 +233742,7 @@
}
},
{
- "id": 18923,
+ "id": 19064,
"properties": {
"facing": "west",
"half": "top",
@@ -232896,7 +233751,7 @@
}
},
{
- "id": 18924,
+ "id": 19065,
"properties": {
"facing": "west",
"half": "top",
@@ -232905,7 +233760,7 @@
}
},
{
- "id": 18925,
+ "id": 19066,
"properties": {
"facing": "west",
"half": "top",
@@ -232914,7 +233769,7 @@
}
},
{
- "id": 18926,
+ "id": 19067,
"properties": {
"facing": "west",
"half": "top",
@@ -232923,7 +233778,7 @@
}
},
{
- "id": 18927,
+ "id": 19068,
"properties": {
"facing": "west",
"half": "top",
@@ -232932,7 +233787,7 @@
}
},
{
- "id": 18928,
+ "id": 19069,
"properties": {
"facing": "west",
"half": "top",
@@ -232941,7 +233796,7 @@
}
},
{
- "id": 18929,
+ "id": 19070,
"properties": {
"facing": "west",
"half": "bottom",
@@ -232950,7 +233805,7 @@
}
},
{
- "id": 18930,
+ "id": 19071,
"properties": {
"facing": "west",
"half": "bottom",
@@ -232959,7 +233814,7 @@
}
},
{
- "id": 18931,
+ "id": 19072,
"properties": {
"facing": "west",
"half": "bottom",
@@ -232968,7 +233823,7 @@
}
},
{
- "id": 18932,
+ "id": 19073,
"properties": {
"facing": "west",
"half": "bottom",
@@ -232977,7 +233832,7 @@
}
},
{
- "id": 18933,
+ "id": 19074,
"properties": {
"facing": "west",
"half": "bottom",
@@ -232986,7 +233841,7 @@
}
},
{
- "id": 18934,
+ "id": 19075,
"properties": {
"facing": "west",
"half": "bottom",
@@ -232995,7 +233850,7 @@
}
},
{
- "id": 18935,
+ "id": 19076,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233004,7 +233859,7 @@
}
},
{
- "id": 18936,
+ "id": 19077,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233013,7 +233868,7 @@
}
},
{
- "id": 18937,
+ "id": 19078,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233022,7 +233877,7 @@
}
},
{
- "id": 18938,
+ "id": 19079,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233031,7 +233886,7 @@
}
},
{
- "id": 18939,
+ "id": 19080,
"properties": {
"facing": "east",
"half": "top",
@@ -233040,7 +233895,7 @@
}
},
{
- "id": 18940,
+ "id": 19081,
"properties": {
"facing": "east",
"half": "top",
@@ -233049,7 +233904,7 @@
}
},
{
- "id": 18941,
+ "id": 19082,
"properties": {
"facing": "east",
"half": "top",
@@ -233058,7 +233913,7 @@
}
},
{
- "id": 18942,
+ "id": 19083,
"properties": {
"facing": "east",
"half": "top",
@@ -233067,7 +233922,7 @@
}
},
{
- "id": 18943,
+ "id": 19084,
"properties": {
"facing": "east",
"half": "top",
@@ -233076,7 +233931,7 @@
}
},
{
- "id": 18944,
+ "id": 19085,
"properties": {
"facing": "east",
"half": "top",
@@ -233085,7 +233940,7 @@
}
},
{
- "id": 18945,
+ "id": 19086,
"properties": {
"facing": "east",
"half": "top",
@@ -233094,7 +233949,7 @@
}
},
{
- "id": 18946,
+ "id": 19087,
"properties": {
"facing": "east",
"half": "top",
@@ -233103,7 +233958,7 @@
}
},
{
- "id": 18947,
+ "id": 19088,
"properties": {
"facing": "east",
"half": "top",
@@ -233112,7 +233967,7 @@
}
},
{
- "id": 18948,
+ "id": 19089,
"properties": {
"facing": "east",
"half": "top",
@@ -233121,7 +233976,7 @@
}
},
{
- "id": 18949,
+ "id": 19090,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233130,7 +233985,7 @@
}
},
{
- "id": 18950,
+ "id": 19091,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233139,7 +233994,7 @@
}
},
{
- "id": 18951,
+ "id": 19092,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233148,7 +234003,7 @@
}
},
{
- "id": 18952,
+ "id": 19093,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233157,7 +234012,7 @@
}
},
{
- "id": 18953,
+ "id": 19094,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233166,7 +234021,7 @@
}
},
{
- "id": 18954,
+ "id": 19095,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233175,7 +234030,7 @@
}
},
{
- "id": 18955,
+ "id": 19096,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233184,7 +234039,7 @@
}
},
{
- "id": 18956,
+ "id": 19097,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233193,7 +234048,7 @@
}
},
{
- "id": 18957,
+ "id": 19098,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233202,7 +234057,7 @@
}
},
{
- "id": 18958,
+ "id": 19099,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233222,20 +234077,20 @@
},
"states": [
{
- "id": 18438,
+ "id": 18579,
"properties": {
"axis": "x"
}
},
{
"default": true,
- "id": 18439,
+ "id": 18580,
"properties": {
"axis": "y"
}
},
{
- "id": 18440,
+ "id": 18581,
"properties": {
"axis": "z"
}
@@ -233269,7 +234124,7 @@
},
"states": [
{
- "id": 18671,
+ "id": 18812,
"properties": {
"facing": "north",
"half": "top",
@@ -233279,7 +234134,7 @@
}
},
{
- "id": 18672,
+ "id": 18813,
"properties": {
"facing": "north",
"half": "top",
@@ -233289,7 +234144,7 @@
}
},
{
- "id": 18673,
+ "id": 18814,
"properties": {
"facing": "north",
"half": "top",
@@ -233299,7 +234154,7 @@
}
},
{
- "id": 18674,
+ "id": 18815,
"properties": {
"facing": "north",
"half": "top",
@@ -233309,7 +234164,7 @@
}
},
{
- "id": 18675,
+ "id": 18816,
"properties": {
"facing": "north",
"half": "top",
@@ -233319,7 +234174,7 @@
}
},
{
- "id": 18676,
+ "id": 18817,
"properties": {
"facing": "north",
"half": "top",
@@ -233329,7 +234184,7 @@
}
},
{
- "id": 18677,
+ "id": 18818,
"properties": {
"facing": "north",
"half": "top",
@@ -233339,7 +234194,7 @@
}
},
{
- "id": 18678,
+ "id": 18819,
"properties": {
"facing": "north",
"half": "top",
@@ -233349,7 +234204,7 @@
}
},
{
- "id": 18679,
+ "id": 18820,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233359,7 +234214,7 @@
}
},
{
- "id": 18680,
+ "id": 18821,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233369,7 +234224,7 @@
}
},
{
- "id": 18681,
+ "id": 18822,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233379,7 +234234,7 @@
}
},
{
- "id": 18682,
+ "id": 18823,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233389,7 +234244,7 @@
}
},
{
- "id": 18683,
+ "id": 18824,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233399,7 +234254,7 @@
}
},
{
- "id": 18684,
+ "id": 18825,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233409,7 +234264,7 @@
}
},
{
- "id": 18685,
+ "id": 18826,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233420,7 +234275,7 @@
},
{
"default": true,
- "id": 18686,
+ "id": 18827,
"properties": {
"facing": "north",
"half": "bottom",
@@ -233430,7 +234285,7 @@
}
},
{
- "id": 18687,
+ "id": 18828,
"properties": {
"facing": "south",
"half": "top",
@@ -233440,7 +234295,7 @@
}
},
{
- "id": 18688,
+ "id": 18829,
"properties": {
"facing": "south",
"half": "top",
@@ -233450,7 +234305,7 @@
}
},
{
- "id": 18689,
+ "id": 18830,
"properties": {
"facing": "south",
"half": "top",
@@ -233460,7 +234315,7 @@
}
},
{
- "id": 18690,
+ "id": 18831,
"properties": {
"facing": "south",
"half": "top",
@@ -233470,7 +234325,7 @@
}
},
{
- "id": 18691,
+ "id": 18832,
"properties": {
"facing": "south",
"half": "top",
@@ -233480,7 +234335,7 @@
}
},
{
- "id": 18692,
+ "id": 18833,
"properties": {
"facing": "south",
"half": "top",
@@ -233490,7 +234345,7 @@
}
},
{
- "id": 18693,
+ "id": 18834,
"properties": {
"facing": "south",
"half": "top",
@@ -233500,7 +234355,7 @@
}
},
{
- "id": 18694,
+ "id": 18835,
"properties": {
"facing": "south",
"half": "top",
@@ -233510,7 +234365,7 @@
}
},
{
- "id": 18695,
+ "id": 18836,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233520,7 +234375,7 @@
}
},
{
- "id": 18696,
+ "id": 18837,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233530,7 +234385,7 @@
}
},
{
- "id": 18697,
+ "id": 18838,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233540,7 +234395,7 @@
}
},
{
- "id": 18698,
+ "id": 18839,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233550,7 +234405,7 @@
}
},
{
- "id": 18699,
+ "id": 18840,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233560,7 +234415,7 @@
}
},
{
- "id": 18700,
+ "id": 18841,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233570,7 +234425,7 @@
}
},
{
- "id": 18701,
+ "id": 18842,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233580,7 +234435,7 @@
}
},
{
- "id": 18702,
+ "id": 18843,
"properties": {
"facing": "south",
"half": "bottom",
@@ -233590,7 +234445,7 @@
}
},
{
- "id": 18703,
+ "id": 18844,
"properties": {
"facing": "west",
"half": "top",
@@ -233600,7 +234455,7 @@
}
},
{
- "id": 18704,
+ "id": 18845,
"properties": {
"facing": "west",
"half": "top",
@@ -233610,7 +234465,7 @@
}
},
{
- "id": 18705,
+ "id": 18846,
"properties": {
"facing": "west",
"half": "top",
@@ -233620,7 +234475,7 @@
}
},
{
- "id": 18706,
+ "id": 18847,
"properties": {
"facing": "west",
"half": "top",
@@ -233630,7 +234485,7 @@
}
},
{
- "id": 18707,
+ "id": 18848,
"properties": {
"facing": "west",
"half": "top",
@@ -233640,7 +234495,7 @@
}
},
{
- "id": 18708,
+ "id": 18849,
"properties": {
"facing": "west",
"half": "top",
@@ -233650,7 +234505,7 @@
}
},
{
- "id": 18709,
+ "id": 18850,
"properties": {
"facing": "west",
"half": "top",
@@ -233660,7 +234515,7 @@
}
},
{
- "id": 18710,
+ "id": 18851,
"properties": {
"facing": "west",
"half": "top",
@@ -233670,7 +234525,7 @@
}
},
{
- "id": 18711,
+ "id": 18852,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233680,7 +234535,7 @@
}
},
{
- "id": 18712,
+ "id": 18853,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233690,7 +234545,7 @@
}
},
{
- "id": 18713,
+ "id": 18854,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233700,7 +234555,7 @@
}
},
{
- "id": 18714,
+ "id": 18855,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233710,7 +234565,7 @@
}
},
{
- "id": 18715,
+ "id": 18856,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233720,7 +234575,7 @@
}
},
{
- "id": 18716,
+ "id": 18857,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233730,7 +234585,7 @@
}
},
{
- "id": 18717,
+ "id": 18858,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233740,7 +234595,7 @@
}
},
{
- "id": 18718,
+ "id": 18859,
"properties": {
"facing": "west",
"half": "bottom",
@@ -233750,7 +234605,7 @@
}
},
{
- "id": 18719,
+ "id": 18860,
"properties": {
"facing": "east",
"half": "top",
@@ -233760,7 +234615,7 @@
}
},
{
- "id": 18720,
+ "id": 18861,
"properties": {
"facing": "east",
"half": "top",
@@ -233770,7 +234625,7 @@
}
},
{
- "id": 18721,
+ "id": 18862,
"properties": {
"facing": "east",
"half": "top",
@@ -233780,7 +234635,7 @@
}
},
{
- "id": 18722,
+ "id": 18863,
"properties": {
"facing": "east",
"half": "top",
@@ -233790,7 +234645,7 @@
}
},
{
- "id": 18723,
+ "id": 18864,
"properties": {
"facing": "east",
"half": "top",
@@ -233800,7 +234655,7 @@
}
},
{
- "id": 18724,
+ "id": 18865,
"properties": {
"facing": "east",
"half": "top",
@@ -233810,7 +234665,7 @@
}
},
{
- "id": 18725,
+ "id": 18866,
"properties": {
"facing": "east",
"half": "top",
@@ -233820,7 +234675,7 @@
}
},
{
- "id": 18726,
+ "id": 18867,
"properties": {
"facing": "east",
"half": "top",
@@ -233830,7 +234685,7 @@
}
},
{
- "id": 18727,
+ "id": 18868,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233840,7 +234695,7 @@
}
},
{
- "id": 18728,
+ "id": 18869,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233850,7 +234705,7 @@
}
},
{
- "id": 18729,
+ "id": 18870,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233860,7 +234715,7 @@
}
},
{
- "id": 18730,
+ "id": 18871,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233870,7 +234725,7 @@
}
},
{
- "id": 18731,
+ "id": 18872,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233880,7 +234735,7 @@
}
},
{
- "id": 18732,
+ "id": 18873,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233890,7 +234745,7 @@
}
},
{
- "id": 18733,
+ "id": 18874,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233900,7 +234755,7 @@
}
},
{
- "id": 18734,
+ "id": 18875,
"properties": {
"facing": "east",
"half": "bottom",
@@ -233999,7 +234854,7 @@
},
"states": [
{
- "id": 19207,
+ "id": 19348,
"properties": {
"facing": "north",
"waterlogged": "true"
@@ -234007,49 +234862,49 @@
},
{
"default": true,
- "id": 19208,
+ "id": 19349,
"properties": {
"facing": "north",
"waterlogged": "false"
}
},
{
- "id": 19209,
+ "id": 19350,
"properties": {
"facing": "south",
"waterlogged": "true"
}
},
{
- "id": 19210,
+ "id": 19351,
"properties": {
"facing": "south",
"waterlogged": "false"
}
},
{
- "id": 19211,
+ "id": 19352,
"properties": {
"facing": "west",
"waterlogged": "true"
}
},
{
- "id": 19212,
+ "id": 19353,
"properties": {
"facing": "west",
"waterlogged": "false"
}
},
{
- "id": 19213,
+ "id": 19354,
"properties": {
"facing": "east",
"waterlogged": "true"
}
},
{
- "id": 19214,
+ "id": 19355,
"properties": {
"facing": "east",
"waterlogged": "false"
@@ -234061,7 +234916,7 @@
"states": [
{
"default": true,
- "id": 18452
+ "id": 18593
}
]
},
@@ -234220,7 +235075,7 @@
"states": [
{
"default": true,
- "id": 21917
+ "id": 22058
}
]
},
@@ -234228,7 +235083,7 @@
"states": [
{
"default": true,
- "id": 21924
+ "id": 22065
}
]
},
@@ -234246,21 +235101,21 @@
},
"states": [
{
- "id": 22263,
+ "id": 22404,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22264,
+ "id": 22405,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22265,
+ "id": 22406,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -234268,21 +235123,21 @@
},
{
"default": true,
- "id": 22266,
+ "id": 22407,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22267,
+ "id": 22408,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22268,
+ "id": 22409,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -234316,7 +235171,7 @@
},
"states": [
{
- "id": 22165,
+ "id": 22306,
"properties": {
"facing": "north",
"half": "top",
@@ -234325,7 +235180,7 @@
}
},
{
- "id": 22166,
+ "id": 22307,
"properties": {
"facing": "north",
"half": "top",
@@ -234334,7 +235189,7 @@
}
},
{
- "id": 22167,
+ "id": 22308,
"properties": {
"facing": "north",
"half": "top",
@@ -234343,7 +235198,7 @@
}
},
{
- "id": 22168,
+ "id": 22309,
"properties": {
"facing": "north",
"half": "top",
@@ -234352,7 +235207,7 @@
}
},
{
- "id": 22169,
+ "id": 22310,
"properties": {
"facing": "north",
"half": "top",
@@ -234361,7 +235216,7 @@
}
},
{
- "id": 22170,
+ "id": 22311,
"properties": {
"facing": "north",
"half": "top",
@@ -234370,7 +235225,7 @@
}
},
{
- "id": 22171,
+ "id": 22312,
"properties": {
"facing": "north",
"half": "top",
@@ -234379,7 +235234,7 @@
}
},
{
- "id": 22172,
+ "id": 22313,
"properties": {
"facing": "north",
"half": "top",
@@ -234388,7 +235243,7 @@
}
},
{
- "id": 22173,
+ "id": 22314,
"properties": {
"facing": "north",
"half": "top",
@@ -234397,7 +235252,7 @@
}
},
{
- "id": 22174,
+ "id": 22315,
"properties": {
"facing": "north",
"half": "top",
@@ -234406,7 +235261,7 @@
}
},
{
- "id": 22175,
+ "id": 22316,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234416,7 +235271,7 @@
},
{
"default": true,
- "id": 22176,
+ "id": 22317,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234425,7 +235280,7 @@
}
},
{
- "id": 22177,
+ "id": 22318,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234434,7 +235289,7 @@
}
},
{
- "id": 22178,
+ "id": 22319,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234443,7 +235298,7 @@
}
},
{
- "id": 22179,
+ "id": 22320,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234452,7 +235307,7 @@
}
},
{
- "id": 22180,
+ "id": 22321,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234461,7 +235316,7 @@
}
},
{
- "id": 22181,
+ "id": 22322,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234470,7 +235325,7 @@
}
},
{
- "id": 22182,
+ "id": 22323,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234479,7 +235334,7 @@
}
},
{
- "id": 22183,
+ "id": 22324,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234488,7 +235343,7 @@
}
},
{
- "id": 22184,
+ "id": 22325,
"properties": {
"facing": "north",
"half": "bottom",
@@ -234497,7 +235352,7 @@
}
},
{
- "id": 22185,
+ "id": 22326,
"properties": {
"facing": "south",
"half": "top",
@@ -234506,7 +235361,7 @@
}
},
{
- "id": 22186,
+ "id": 22327,
"properties": {
"facing": "south",
"half": "top",
@@ -234515,7 +235370,7 @@
}
},
{
- "id": 22187,
+ "id": 22328,
"properties": {
"facing": "south",
"half": "top",
@@ -234524,7 +235379,7 @@
}
},
{
- "id": 22188,
+ "id": 22329,
"properties": {
"facing": "south",
"half": "top",
@@ -234533,7 +235388,7 @@
}
},
{
- "id": 22189,
+ "id": 22330,
"properties": {
"facing": "south",
"half": "top",
@@ -234542,7 +235397,7 @@
}
},
{
- "id": 22190,
+ "id": 22331,
"properties": {
"facing": "south",
"half": "top",
@@ -234551,7 +235406,7 @@
}
},
{
- "id": 22191,
+ "id": 22332,
"properties": {
"facing": "south",
"half": "top",
@@ -234560,7 +235415,7 @@
}
},
{
- "id": 22192,
+ "id": 22333,
"properties": {
"facing": "south",
"half": "top",
@@ -234569,7 +235424,7 @@
}
},
{
- "id": 22193,
+ "id": 22334,
"properties": {
"facing": "south",
"half": "top",
@@ -234578,7 +235433,7 @@
}
},
{
- "id": 22194,
+ "id": 22335,
"properties": {
"facing": "south",
"half": "top",
@@ -234587,7 +235442,7 @@
}
},
{
- "id": 22195,
+ "id": 22336,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234596,7 +235451,7 @@
}
},
{
- "id": 22196,
+ "id": 22337,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234605,7 +235460,7 @@
}
},
{
- "id": 22197,
+ "id": 22338,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234614,7 +235469,7 @@
}
},
{
- "id": 22198,
+ "id": 22339,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234623,7 +235478,7 @@
}
},
{
- "id": 22199,
+ "id": 22340,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234632,7 +235487,7 @@
}
},
{
- "id": 22200,
+ "id": 22341,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234641,7 +235496,7 @@
}
},
{
- "id": 22201,
+ "id": 22342,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234650,7 +235505,7 @@
}
},
{
- "id": 22202,
+ "id": 22343,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234659,7 +235514,7 @@
}
},
{
- "id": 22203,
+ "id": 22344,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234668,7 +235523,7 @@
}
},
{
- "id": 22204,
+ "id": 22345,
"properties": {
"facing": "south",
"half": "bottom",
@@ -234677,7 +235532,7 @@
}
},
{
- "id": 22205,
+ "id": 22346,
"properties": {
"facing": "west",
"half": "top",
@@ -234686,7 +235541,7 @@
}
},
{
- "id": 22206,
+ "id": 22347,
"properties": {
"facing": "west",
"half": "top",
@@ -234695,7 +235550,7 @@
}
},
{
- "id": 22207,
+ "id": 22348,
"properties": {
"facing": "west",
"half": "top",
@@ -234704,7 +235559,7 @@
}
},
{
- "id": 22208,
+ "id": 22349,
"properties": {
"facing": "west",
"half": "top",
@@ -234713,7 +235568,7 @@
}
},
{
- "id": 22209,
+ "id": 22350,
"properties": {
"facing": "west",
"half": "top",
@@ -234722,7 +235577,7 @@
}
},
{
- "id": 22210,
+ "id": 22351,
"properties": {
"facing": "west",
"half": "top",
@@ -234731,7 +235586,7 @@
}
},
{
- "id": 22211,
+ "id": 22352,
"properties": {
"facing": "west",
"half": "top",
@@ -234740,7 +235595,7 @@
}
},
{
- "id": 22212,
+ "id": 22353,
"properties": {
"facing": "west",
"half": "top",
@@ -234749,7 +235604,7 @@
}
},
{
- "id": 22213,
+ "id": 22354,
"properties": {
"facing": "west",
"half": "top",
@@ -234758,7 +235613,7 @@
}
},
{
- "id": 22214,
+ "id": 22355,
"properties": {
"facing": "west",
"half": "top",
@@ -234767,7 +235622,7 @@
}
},
{
- "id": 22215,
+ "id": 22356,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234776,7 +235631,7 @@
}
},
{
- "id": 22216,
+ "id": 22357,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234785,7 +235640,7 @@
}
},
{
- "id": 22217,
+ "id": 22358,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234794,7 +235649,7 @@
}
},
{
- "id": 22218,
+ "id": 22359,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234803,7 +235658,7 @@
}
},
{
- "id": 22219,
+ "id": 22360,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234812,7 +235667,7 @@
}
},
{
- "id": 22220,
+ "id": 22361,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234821,7 +235676,7 @@
}
},
{
- "id": 22221,
+ "id": 22362,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234830,7 +235685,7 @@
}
},
{
- "id": 22222,
+ "id": 22363,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234839,7 +235694,7 @@
}
},
{
- "id": 22223,
+ "id": 22364,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234848,7 +235703,7 @@
}
},
{
- "id": 22224,
+ "id": 22365,
"properties": {
"facing": "west",
"half": "bottom",
@@ -234857,7 +235712,7 @@
}
},
{
- "id": 22225,
+ "id": 22366,
"properties": {
"facing": "east",
"half": "top",
@@ -234866,7 +235721,7 @@
}
},
{
- "id": 22226,
+ "id": 22367,
"properties": {
"facing": "east",
"half": "top",
@@ -234875,7 +235730,7 @@
}
},
{
- "id": 22227,
+ "id": 22368,
"properties": {
"facing": "east",
"half": "top",
@@ -234884,7 +235739,7 @@
}
},
{
- "id": 22228,
+ "id": 22369,
"properties": {
"facing": "east",
"half": "top",
@@ -234893,7 +235748,7 @@
}
},
{
- "id": 22229,
+ "id": 22370,
"properties": {
"facing": "east",
"half": "top",
@@ -234902,7 +235757,7 @@
}
},
{
- "id": 22230,
+ "id": 22371,
"properties": {
"facing": "east",
"half": "top",
@@ -234911,7 +235766,7 @@
}
},
{
- "id": 22231,
+ "id": 22372,
"properties": {
"facing": "east",
"half": "top",
@@ -234920,7 +235775,7 @@
}
},
{
- "id": 22232,
+ "id": 22373,
"properties": {
"facing": "east",
"half": "top",
@@ -234929,7 +235784,7 @@
}
},
{
- "id": 22233,
+ "id": 22374,
"properties": {
"facing": "east",
"half": "top",
@@ -234938,7 +235793,7 @@
}
},
{
- "id": 22234,
+ "id": 22375,
"properties": {
"facing": "east",
"half": "top",
@@ -234947,7 +235802,7 @@
}
},
{
- "id": 22235,
+ "id": 22376,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234956,7 +235811,7 @@
}
},
{
- "id": 22236,
+ "id": 22377,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234965,7 +235820,7 @@
}
},
{
- "id": 22237,
+ "id": 22378,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234974,7 +235829,7 @@
}
},
{
- "id": 22238,
+ "id": 22379,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234983,7 +235838,7 @@
}
},
{
- "id": 22239,
+ "id": 22380,
"properties": {
"facing": "east",
"half": "bottom",
@@ -234992,7 +235847,7 @@
}
},
{
- "id": 22240,
+ "id": 22381,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235001,7 +235856,7 @@
}
},
{
- "id": 22241,
+ "id": 22382,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235010,7 +235865,7 @@
}
},
{
- "id": 22242,
+ "id": 22383,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235019,7 +235874,7 @@
}
},
{
- "id": 22243,
+ "id": 22384,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235028,7 +235883,7 @@
}
},
{
- "id": 22244,
+ "id": 22385,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235042,7 +235897,7 @@
"states": [
{
"default": true,
- "id": 21919
+ "id": 22060
}
]
},
@@ -235050,7 +235905,7 @@
"states": [
{
"default": true,
- "id": 21923
+ "id": 22064
}
]
},
@@ -235068,21 +235923,21 @@
},
"states": [
{
- "id": 22257,
+ "id": 22398,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22258,
+ "id": 22399,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22259,
+ "id": 22400,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -235090,21 +235945,21 @@
},
{
"default": true,
- "id": 22260,
+ "id": 22401,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22261,
+ "id": 22402,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22262,
+ "id": 22403,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -235138,7 +235993,7 @@
},
"states": [
{
- "id": 22085,
+ "id": 22226,
"properties": {
"facing": "north",
"half": "top",
@@ -235147,7 +236002,7 @@
}
},
{
- "id": 22086,
+ "id": 22227,
"properties": {
"facing": "north",
"half": "top",
@@ -235156,7 +236011,7 @@
}
},
{
- "id": 22087,
+ "id": 22228,
"properties": {
"facing": "north",
"half": "top",
@@ -235165,7 +236020,7 @@
}
},
{
- "id": 22088,
+ "id": 22229,
"properties": {
"facing": "north",
"half": "top",
@@ -235174,7 +236029,7 @@
}
},
{
- "id": 22089,
+ "id": 22230,
"properties": {
"facing": "north",
"half": "top",
@@ -235183,7 +236038,7 @@
}
},
{
- "id": 22090,
+ "id": 22231,
"properties": {
"facing": "north",
"half": "top",
@@ -235192,7 +236047,7 @@
}
},
{
- "id": 22091,
+ "id": 22232,
"properties": {
"facing": "north",
"half": "top",
@@ -235201,7 +236056,7 @@
}
},
{
- "id": 22092,
+ "id": 22233,
"properties": {
"facing": "north",
"half": "top",
@@ -235210,7 +236065,7 @@
}
},
{
- "id": 22093,
+ "id": 22234,
"properties": {
"facing": "north",
"half": "top",
@@ -235219,7 +236074,7 @@
}
},
{
- "id": 22094,
+ "id": 22235,
"properties": {
"facing": "north",
"half": "top",
@@ -235228,7 +236083,7 @@
}
},
{
- "id": 22095,
+ "id": 22236,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235238,7 +236093,7 @@
},
{
"default": true,
- "id": 22096,
+ "id": 22237,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235247,7 +236102,7 @@
}
},
{
- "id": 22097,
+ "id": 22238,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235256,7 +236111,7 @@
}
},
{
- "id": 22098,
+ "id": 22239,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235265,7 +236120,7 @@
}
},
{
- "id": 22099,
+ "id": 22240,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235274,7 +236129,7 @@
}
},
{
- "id": 22100,
+ "id": 22241,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235283,7 +236138,7 @@
}
},
{
- "id": 22101,
+ "id": 22242,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235292,7 +236147,7 @@
}
},
{
- "id": 22102,
+ "id": 22243,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235301,7 +236156,7 @@
}
},
{
- "id": 22103,
+ "id": 22244,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235310,7 +236165,7 @@
}
},
{
- "id": 22104,
+ "id": 22245,
"properties": {
"facing": "north",
"half": "bottom",
@@ -235319,7 +236174,7 @@
}
},
{
- "id": 22105,
+ "id": 22246,
"properties": {
"facing": "south",
"half": "top",
@@ -235328,7 +236183,7 @@
}
},
{
- "id": 22106,
+ "id": 22247,
"properties": {
"facing": "south",
"half": "top",
@@ -235337,7 +236192,7 @@
}
},
{
- "id": 22107,
+ "id": 22248,
"properties": {
"facing": "south",
"half": "top",
@@ -235346,7 +236201,7 @@
}
},
{
- "id": 22108,
+ "id": 22249,
"properties": {
"facing": "south",
"half": "top",
@@ -235355,7 +236210,7 @@
}
},
{
- "id": 22109,
+ "id": 22250,
"properties": {
"facing": "south",
"half": "top",
@@ -235364,7 +236219,7 @@
}
},
{
- "id": 22110,
+ "id": 22251,
"properties": {
"facing": "south",
"half": "top",
@@ -235373,7 +236228,7 @@
}
},
{
- "id": 22111,
+ "id": 22252,
"properties": {
"facing": "south",
"half": "top",
@@ -235382,7 +236237,7 @@
}
},
{
- "id": 22112,
+ "id": 22253,
"properties": {
"facing": "south",
"half": "top",
@@ -235391,7 +236246,7 @@
}
},
{
- "id": 22113,
+ "id": 22254,
"properties": {
"facing": "south",
"half": "top",
@@ -235400,7 +236255,7 @@
}
},
{
- "id": 22114,
+ "id": 22255,
"properties": {
"facing": "south",
"half": "top",
@@ -235409,7 +236264,7 @@
}
},
{
- "id": 22115,
+ "id": 22256,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235418,7 +236273,7 @@
}
},
{
- "id": 22116,
+ "id": 22257,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235427,7 +236282,7 @@
}
},
{
- "id": 22117,
+ "id": 22258,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235436,7 +236291,7 @@
}
},
{
- "id": 22118,
+ "id": 22259,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235445,7 +236300,7 @@
}
},
{
- "id": 22119,
+ "id": 22260,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235454,7 +236309,7 @@
}
},
{
- "id": 22120,
+ "id": 22261,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235463,7 +236318,7 @@
}
},
{
- "id": 22121,
+ "id": 22262,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235472,7 +236327,7 @@
}
},
{
- "id": 22122,
+ "id": 22263,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235481,7 +236336,7 @@
}
},
{
- "id": 22123,
+ "id": 22264,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235490,7 +236345,7 @@
}
},
{
- "id": 22124,
+ "id": 22265,
"properties": {
"facing": "south",
"half": "bottom",
@@ -235499,7 +236354,7 @@
}
},
{
- "id": 22125,
+ "id": 22266,
"properties": {
"facing": "west",
"half": "top",
@@ -235508,7 +236363,7 @@
}
},
{
- "id": 22126,
+ "id": 22267,
"properties": {
"facing": "west",
"half": "top",
@@ -235517,7 +236372,7 @@
}
},
{
- "id": 22127,
+ "id": 22268,
"properties": {
"facing": "west",
"half": "top",
@@ -235526,7 +236381,7 @@
}
},
{
- "id": 22128,
+ "id": 22269,
"properties": {
"facing": "west",
"half": "top",
@@ -235535,7 +236390,7 @@
}
},
{
- "id": 22129,
+ "id": 22270,
"properties": {
"facing": "west",
"half": "top",
@@ -235544,7 +236399,7 @@
}
},
{
- "id": 22130,
+ "id": 22271,
"properties": {
"facing": "west",
"half": "top",
@@ -235553,7 +236408,7 @@
}
},
{
- "id": 22131,
+ "id": 22272,
"properties": {
"facing": "west",
"half": "top",
@@ -235562,7 +236417,7 @@
}
},
{
- "id": 22132,
+ "id": 22273,
"properties": {
"facing": "west",
"half": "top",
@@ -235571,7 +236426,7 @@
}
},
{
- "id": 22133,
+ "id": 22274,
"properties": {
"facing": "west",
"half": "top",
@@ -235580,7 +236435,7 @@
}
},
{
- "id": 22134,
+ "id": 22275,
"properties": {
"facing": "west",
"half": "top",
@@ -235589,7 +236444,7 @@
}
},
{
- "id": 22135,
+ "id": 22276,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235598,7 +236453,7 @@
}
},
{
- "id": 22136,
+ "id": 22277,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235607,7 +236462,7 @@
}
},
{
- "id": 22137,
+ "id": 22278,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235616,7 +236471,7 @@
}
},
{
- "id": 22138,
+ "id": 22279,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235625,7 +236480,7 @@
}
},
{
- "id": 22139,
+ "id": 22280,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235634,7 +236489,7 @@
}
},
{
- "id": 22140,
+ "id": 22281,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235643,7 +236498,7 @@
}
},
{
- "id": 22141,
+ "id": 22282,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235652,7 +236507,7 @@
}
},
{
- "id": 22142,
+ "id": 22283,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235661,7 +236516,7 @@
}
},
{
- "id": 22143,
+ "id": 22284,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235670,7 +236525,7 @@
}
},
{
- "id": 22144,
+ "id": 22285,
"properties": {
"facing": "west",
"half": "bottom",
@@ -235679,7 +236534,7 @@
}
},
{
- "id": 22145,
+ "id": 22286,
"properties": {
"facing": "east",
"half": "top",
@@ -235688,7 +236543,7 @@
}
},
{
- "id": 22146,
+ "id": 22287,
"properties": {
"facing": "east",
"half": "top",
@@ -235697,7 +236552,7 @@
}
},
{
- "id": 22147,
+ "id": 22288,
"properties": {
"facing": "east",
"half": "top",
@@ -235706,7 +236561,7 @@
}
},
{
- "id": 22148,
+ "id": 22289,
"properties": {
"facing": "east",
"half": "top",
@@ -235715,7 +236570,7 @@
}
},
{
- "id": 22149,
+ "id": 22290,
"properties": {
"facing": "east",
"half": "top",
@@ -235724,7 +236579,7 @@
}
},
{
- "id": 22150,
+ "id": 22291,
"properties": {
"facing": "east",
"half": "top",
@@ -235733,7 +236588,7 @@
}
},
{
- "id": 22151,
+ "id": 22292,
"properties": {
"facing": "east",
"half": "top",
@@ -235742,7 +236597,7 @@
}
},
{
- "id": 22152,
+ "id": 22293,
"properties": {
"facing": "east",
"half": "top",
@@ -235751,7 +236606,7 @@
}
},
{
- "id": 22153,
+ "id": 22294,
"properties": {
"facing": "east",
"half": "top",
@@ -235760,7 +236615,7 @@
}
},
{
- "id": 22154,
+ "id": 22295,
"properties": {
"facing": "east",
"half": "top",
@@ -235769,7 +236624,7 @@
}
},
{
- "id": 22155,
+ "id": 22296,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235778,7 +236633,7 @@
}
},
{
- "id": 22156,
+ "id": 22297,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235787,7 +236642,7 @@
}
},
{
- "id": 22157,
+ "id": 22298,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235796,7 +236651,7 @@
}
},
{
- "id": 22158,
+ "id": 22299,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235805,7 +236660,7 @@
}
},
{
- "id": 22159,
+ "id": 22300,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235814,7 +236669,7 @@
}
},
{
- "id": 22160,
+ "id": 22301,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235823,7 +236678,7 @@
}
},
{
- "id": 22161,
+ "id": 22302,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235832,7 +236687,7 @@
}
},
{
- "id": 22162,
+ "id": 22303,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235841,7 +236696,7 @@
}
},
{
- "id": 22163,
+ "id": 22304,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235850,7 +236705,7 @@
}
},
{
- "id": 22164,
+ "id": 22305,
"properties": {
"facing": "east",
"half": "bottom",
@@ -235864,7 +236719,7 @@
"states": [
{
"default": true,
- "id": 21920
+ "id": 22061
}
]
},
@@ -235872,7 +236727,7 @@
"states": [
{
"default": true,
- "id": 21921
+ "id": 22062
}
]
},
@@ -235890,21 +236745,21 @@
},
"states": [
{
- "id": 22245,
+ "id": 22386,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22246,
+ "id": 22387,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22247,
+ "id": 22388,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -235912,21 +236767,21 @@
},
{
"default": true,
- "id": 22248,
+ "id": 22389,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22249,
+ "id": 22390,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22250,
+ "id": 22391,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -235960,7 +236815,7 @@
},
"states": [
{
- "id": 21925,
+ "id": 22066,
"properties": {
"facing": "north",
"half": "top",
@@ -235969,7 +236824,7 @@
}
},
{
- "id": 21926,
+ "id": 22067,
"properties": {
"facing": "north",
"half": "top",
@@ -235978,7 +236833,7 @@
}
},
{
- "id": 21927,
+ "id": 22068,
"properties": {
"facing": "north",
"half": "top",
@@ -235987,7 +236842,7 @@
}
},
{
- "id": 21928,
+ "id": 22069,
"properties": {
"facing": "north",
"half": "top",
@@ -235996,7 +236851,7 @@
}
},
{
- "id": 21929,
+ "id": 22070,
"properties": {
"facing": "north",
"half": "top",
@@ -236005,7 +236860,7 @@
}
},
{
- "id": 21930,
+ "id": 22071,
"properties": {
"facing": "north",
"half": "top",
@@ -236014,7 +236869,7 @@
}
},
{
- "id": 21931,
+ "id": 22072,
"properties": {
"facing": "north",
"half": "top",
@@ -236023,7 +236878,7 @@
}
},
{
- "id": 21932,
+ "id": 22073,
"properties": {
"facing": "north",
"half": "top",
@@ -236032,7 +236887,7 @@
}
},
{
- "id": 21933,
+ "id": 22074,
"properties": {
"facing": "north",
"half": "top",
@@ -236041,7 +236896,7 @@
}
},
{
- "id": 21934,
+ "id": 22075,
"properties": {
"facing": "north",
"half": "top",
@@ -236050,7 +236905,7 @@
}
},
{
- "id": 21935,
+ "id": 22076,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236060,7 +236915,7 @@
},
{
"default": true,
- "id": 21936,
+ "id": 22077,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236069,7 +236924,7 @@
}
},
{
- "id": 21937,
+ "id": 22078,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236078,7 +236933,7 @@
}
},
{
- "id": 21938,
+ "id": 22079,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236087,7 +236942,7 @@
}
},
{
- "id": 21939,
+ "id": 22080,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236096,7 +236951,7 @@
}
},
{
- "id": 21940,
+ "id": 22081,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236105,7 +236960,7 @@
}
},
{
- "id": 21941,
+ "id": 22082,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236114,7 +236969,7 @@
}
},
{
- "id": 21942,
+ "id": 22083,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236123,7 +236978,7 @@
}
},
{
- "id": 21943,
+ "id": 22084,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236132,7 +236987,7 @@
}
},
{
- "id": 21944,
+ "id": 22085,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236141,7 +236996,7 @@
}
},
{
- "id": 21945,
+ "id": 22086,
"properties": {
"facing": "south",
"half": "top",
@@ -236150,7 +237005,7 @@
}
},
{
- "id": 21946,
+ "id": 22087,
"properties": {
"facing": "south",
"half": "top",
@@ -236159,7 +237014,7 @@
}
},
{
- "id": 21947,
+ "id": 22088,
"properties": {
"facing": "south",
"half": "top",
@@ -236168,7 +237023,7 @@
}
},
{
- "id": 21948,
+ "id": 22089,
"properties": {
"facing": "south",
"half": "top",
@@ -236177,7 +237032,7 @@
}
},
{
- "id": 21949,
+ "id": 22090,
"properties": {
"facing": "south",
"half": "top",
@@ -236186,7 +237041,7 @@
}
},
{
- "id": 21950,
+ "id": 22091,
"properties": {
"facing": "south",
"half": "top",
@@ -236195,7 +237050,7 @@
}
},
{
- "id": 21951,
+ "id": 22092,
"properties": {
"facing": "south",
"half": "top",
@@ -236204,7 +237059,7 @@
}
},
{
- "id": 21952,
+ "id": 22093,
"properties": {
"facing": "south",
"half": "top",
@@ -236213,7 +237068,7 @@
}
},
{
- "id": 21953,
+ "id": 22094,
"properties": {
"facing": "south",
"half": "top",
@@ -236222,7 +237077,7 @@
}
},
{
- "id": 21954,
+ "id": 22095,
"properties": {
"facing": "south",
"half": "top",
@@ -236231,7 +237086,7 @@
}
},
{
- "id": 21955,
+ "id": 22096,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236240,7 +237095,7 @@
}
},
{
- "id": 21956,
+ "id": 22097,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236249,7 +237104,7 @@
}
},
{
- "id": 21957,
+ "id": 22098,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236258,7 +237113,7 @@
}
},
{
- "id": 21958,
+ "id": 22099,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236267,7 +237122,7 @@
}
},
{
- "id": 21959,
+ "id": 22100,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236276,7 +237131,7 @@
}
},
{
- "id": 21960,
+ "id": 22101,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236285,7 +237140,7 @@
}
},
{
- "id": 21961,
+ "id": 22102,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236294,7 +237149,7 @@
}
},
{
- "id": 21962,
+ "id": 22103,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236303,7 +237158,7 @@
}
},
{
- "id": 21963,
+ "id": 22104,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236312,7 +237167,7 @@
}
},
{
- "id": 21964,
+ "id": 22105,
"properties": {
"facing": "south",
"half": "bottom",
@@ -236321,7 +237176,7 @@
}
},
{
- "id": 21965,
+ "id": 22106,
"properties": {
"facing": "west",
"half": "top",
@@ -236330,7 +237185,7 @@
}
},
{
- "id": 21966,
+ "id": 22107,
"properties": {
"facing": "west",
"half": "top",
@@ -236339,7 +237194,7 @@
}
},
{
- "id": 21967,
+ "id": 22108,
"properties": {
"facing": "west",
"half": "top",
@@ -236348,7 +237203,7 @@
}
},
{
- "id": 21968,
+ "id": 22109,
"properties": {
"facing": "west",
"half": "top",
@@ -236357,7 +237212,7 @@
}
},
{
- "id": 21969,
+ "id": 22110,
"properties": {
"facing": "west",
"half": "top",
@@ -236366,7 +237221,7 @@
}
},
{
- "id": 21970,
+ "id": 22111,
"properties": {
"facing": "west",
"half": "top",
@@ -236375,7 +237230,7 @@
}
},
{
- "id": 21971,
+ "id": 22112,
"properties": {
"facing": "west",
"half": "top",
@@ -236384,7 +237239,7 @@
}
},
{
- "id": 21972,
+ "id": 22113,
"properties": {
"facing": "west",
"half": "top",
@@ -236393,7 +237248,7 @@
}
},
{
- "id": 21973,
+ "id": 22114,
"properties": {
"facing": "west",
"half": "top",
@@ -236402,7 +237257,7 @@
}
},
{
- "id": 21974,
+ "id": 22115,
"properties": {
"facing": "west",
"half": "top",
@@ -236411,7 +237266,7 @@
}
},
{
- "id": 21975,
+ "id": 22116,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236420,7 +237275,7 @@
}
},
{
- "id": 21976,
+ "id": 22117,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236429,7 +237284,7 @@
}
},
{
- "id": 21977,
+ "id": 22118,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236438,7 +237293,7 @@
}
},
{
- "id": 21978,
+ "id": 22119,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236447,7 +237302,7 @@
}
},
{
- "id": 21979,
+ "id": 22120,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236456,7 +237311,7 @@
}
},
{
- "id": 21980,
+ "id": 22121,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236465,7 +237320,7 @@
}
},
{
- "id": 21981,
+ "id": 22122,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236474,7 +237329,7 @@
}
},
{
- "id": 21982,
+ "id": 22123,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236483,7 +237338,7 @@
}
},
{
- "id": 21983,
+ "id": 22124,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236492,7 +237347,7 @@
}
},
{
- "id": 21984,
+ "id": 22125,
"properties": {
"facing": "west",
"half": "bottom",
@@ -236501,7 +237356,7 @@
}
},
{
- "id": 21985,
+ "id": 22126,
"properties": {
"facing": "east",
"half": "top",
@@ -236510,7 +237365,7 @@
}
},
{
- "id": 21986,
+ "id": 22127,
"properties": {
"facing": "east",
"half": "top",
@@ -236519,7 +237374,7 @@
}
},
{
- "id": 21987,
+ "id": 22128,
"properties": {
"facing": "east",
"half": "top",
@@ -236528,7 +237383,7 @@
}
},
{
- "id": 21988,
+ "id": 22129,
"properties": {
"facing": "east",
"half": "top",
@@ -236537,7 +237392,7 @@
}
},
{
- "id": 21989,
+ "id": 22130,
"properties": {
"facing": "east",
"half": "top",
@@ -236546,7 +237401,7 @@
}
},
{
- "id": 21990,
+ "id": 22131,
"properties": {
"facing": "east",
"half": "top",
@@ -236555,7 +237410,7 @@
}
},
{
- "id": 21991,
+ "id": 22132,
"properties": {
"facing": "east",
"half": "top",
@@ -236564,7 +237419,7 @@
}
},
{
- "id": 21992,
+ "id": 22133,
"properties": {
"facing": "east",
"half": "top",
@@ -236573,7 +237428,7 @@
}
},
{
- "id": 21993,
+ "id": 22134,
"properties": {
"facing": "east",
"half": "top",
@@ -236582,7 +237437,7 @@
}
},
{
- "id": 21994,
+ "id": 22135,
"properties": {
"facing": "east",
"half": "top",
@@ -236591,7 +237446,7 @@
}
},
{
- "id": 21995,
+ "id": 22136,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236600,7 +237455,7 @@
}
},
{
- "id": 21996,
+ "id": 22137,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236609,7 +237464,7 @@
}
},
{
- "id": 21997,
+ "id": 22138,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236618,7 +237473,7 @@
}
},
{
- "id": 21998,
+ "id": 22139,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236627,7 +237482,7 @@
}
},
{
- "id": 21999,
+ "id": 22140,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236636,7 +237491,7 @@
}
},
{
- "id": 22000,
+ "id": 22141,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236645,7 +237500,7 @@
}
},
{
- "id": 22001,
+ "id": 22142,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236654,7 +237509,7 @@
}
},
{
- "id": 22002,
+ "id": 22143,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236663,7 +237518,7 @@
}
},
{
- "id": 22003,
+ "id": 22144,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236672,7 +237527,7 @@
}
},
{
- "id": 22004,
+ "id": 22145,
"properties": {
"facing": "east",
"half": "bottom",
@@ -236686,7 +237541,7 @@
"states": [
{
"default": true,
- "id": 21918
+ "id": 22059
}
]
},
@@ -236694,7 +237549,7 @@
"states": [
{
"default": true,
- "id": 21922
+ "id": 22063
}
]
},
@@ -236712,21 +237567,21 @@
},
"states": [
{
- "id": 22251,
+ "id": 22392,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 22252,
+ "id": 22393,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 22253,
+ "id": 22394,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -236734,21 +237589,21 @@
},
{
"default": true,
- "id": 22254,
+ "id": 22395,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 22255,
+ "id": 22396,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 22256,
+ "id": 22397,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -236782,7 +237637,7 @@
},
"states": [
{
- "id": 22005,
+ "id": 22146,
"properties": {
"facing": "north",
"half": "top",
@@ -236791,7 +237646,7 @@
}
},
{
- "id": 22006,
+ "id": 22147,
"properties": {
"facing": "north",
"half": "top",
@@ -236800,7 +237655,7 @@
}
},
{
- "id": 22007,
+ "id": 22148,
"properties": {
"facing": "north",
"half": "top",
@@ -236809,7 +237664,7 @@
}
},
{
- "id": 22008,
+ "id": 22149,
"properties": {
"facing": "north",
"half": "top",
@@ -236818,7 +237673,7 @@
}
},
{
- "id": 22009,
+ "id": 22150,
"properties": {
"facing": "north",
"half": "top",
@@ -236827,7 +237682,7 @@
}
},
{
- "id": 22010,
+ "id": 22151,
"properties": {
"facing": "north",
"half": "top",
@@ -236836,7 +237691,7 @@
}
},
{
- "id": 22011,
+ "id": 22152,
"properties": {
"facing": "north",
"half": "top",
@@ -236845,7 +237700,7 @@
}
},
{
- "id": 22012,
+ "id": 22153,
"properties": {
"facing": "north",
"half": "top",
@@ -236854,7 +237709,7 @@
}
},
{
- "id": 22013,
+ "id": 22154,
"properties": {
"facing": "north",
"half": "top",
@@ -236863,7 +237718,7 @@
}
},
{
- "id": 22014,
+ "id": 22155,
"properties": {
"facing": "north",
"half": "top",
@@ -236872,7 +237727,7 @@
}
},
{
- "id": 22015,
+ "id": 22156,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236882,7 +237737,7 @@
},
{
"default": true,
- "id": 22016,
+ "id": 22157,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236891,7 +237746,7 @@
}
},
{
- "id": 22017,
+ "id": 22158,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236900,7 +237755,7 @@
}
},
{
- "id": 22018,
+ "id": 22159,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236909,7 +237764,7 @@
}
},
{
- "id": 22019,
+ "id": 22160,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236918,7 +237773,7 @@
}
},
{
- "id": 22020,
+ "id": 22161,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236927,7 +237782,7 @@
}
},
{
- "id": 22021,
+ "id": 22162,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236936,7 +237791,7 @@
}
},
{
- "id": 22022,
+ "id": 22163,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236945,7 +237800,7 @@
}
},
{
- "id": 22023,
+ "id": 22164,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236954,7 +237809,7 @@
}
},
{
- "id": 22024,
+ "id": 22165,
"properties": {
"facing": "north",
"half": "bottom",
@@ -236963,7 +237818,7 @@
}
},
{
- "id": 22025,
+ "id": 22166,
"properties": {
"facing": "south",
"half": "top",
@@ -236972,7 +237827,7 @@
}
},
{
- "id": 22026,
+ "id": 22167,
"properties": {
"facing": "south",
"half": "top",
@@ -236981,7 +237836,7 @@
}
},
{
- "id": 22027,
+ "id": 22168,
"properties": {
"facing": "south",
"half": "top",
@@ -236990,7 +237845,7 @@
}
},
{
- "id": 22028,
+ "id": 22169,
"properties": {
"facing": "south",
"half": "top",
@@ -236999,7 +237854,7 @@
}
},
{
- "id": 22029,
+ "id": 22170,
"properties": {
"facing": "south",
"half": "top",
@@ -237008,7 +237863,7 @@
}
},
{
- "id": 22030,
+ "id": 22171,
"properties": {
"facing": "south",
"half": "top",
@@ -237017,7 +237872,7 @@
}
},
{
- "id": 22031,
+ "id": 22172,
"properties": {
"facing": "south",
"half": "top",
@@ -237026,7 +237881,7 @@
}
},
{
- "id": 22032,
+ "id": 22173,
"properties": {
"facing": "south",
"half": "top",
@@ -237035,7 +237890,7 @@
}
},
{
- "id": 22033,
+ "id": 22174,
"properties": {
"facing": "south",
"half": "top",
@@ -237044,7 +237899,7 @@
}
},
{
- "id": 22034,
+ "id": 22175,
"properties": {
"facing": "south",
"half": "top",
@@ -237053,7 +237908,7 @@
}
},
{
- "id": 22035,
+ "id": 22176,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237062,7 +237917,7 @@
}
},
{
- "id": 22036,
+ "id": 22177,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237071,7 +237926,7 @@
}
},
{
- "id": 22037,
+ "id": 22178,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237080,7 +237935,7 @@
}
},
{
- "id": 22038,
+ "id": 22179,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237089,7 +237944,7 @@
}
},
{
- "id": 22039,
+ "id": 22180,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237098,7 +237953,7 @@
}
},
{
- "id": 22040,
+ "id": 22181,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237107,7 +237962,7 @@
}
},
{
- "id": 22041,
+ "id": 22182,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237116,7 +237971,7 @@
}
},
{
- "id": 22042,
+ "id": 22183,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237125,7 +237980,7 @@
}
},
{
- "id": 22043,
+ "id": 22184,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237134,7 +237989,7 @@
}
},
{
- "id": 22044,
+ "id": 22185,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237143,7 +237998,7 @@
}
},
{
- "id": 22045,
+ "id": 22186,
"properties": {
"facing": "west",
"half": "top",
@@ -237152,7 +238007,7 @@
}
},
{
- "id": 22046,
+ "id": 22187,
"properties": {
"facing": "west",
"half": "top",
@@ -237161,7 +238016,7 @@
}
},
{
- "id": 22047,
+ "id": 22188,
"properties": {
"facing": "west",
"half": "top",
@@ -237170,7 +238025,7 @@
}
},
{
- "id": 22048,
+ "id": 22189,
"properties": {
"facing": "west",
"half": "top",
@@ -237179,7 +238034,7 @@
}
},
{
- "id": 22049,
+ "id": 22190,
"properties": {
"facing": "west",
"half": "top",
@@ -237188,7 +238043,7 @@
}
},
{
- "id": 22050,
+ "id": 22191,
"properties": {
"facing": "west",
"half": "top",
@@ -237197,7 +238052,7 @@
}
},
{
- "id": 22051,
+ "id": 22192,
"properties": {
"facing": "west",
"half": "top",
@@ -237206,7 +238061,7 @@
}
},
{
- "id": 22052,
+ "id": 22193,
"properties": {
"facing": "west",
"half": "top",
@@ -237215,7 +238070,7 @@
}
},
{
- "id": 22053,
+ "id": 22194,
"properties": {
"facing": "west",
"half": "top",
@@ -237224,7 +238079,7 @@
}
},
{
- "id": 22054,
+ "id": 22195,
"properties": {
"facing": "west",
"half": "top",
@@ -237233,7 +238088,7 @@
}
},
{
- "id": 22055,
+ "id": 22196,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237242,7 +238097,7 @@
}
},
{
- "id": 22056,
+ "id": 22197,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237251,7 +238106,7 @@
}
},
{
- "id": 22057,
+ "id": 22198,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237260,7 +238115,7 @@
}
},
{
- "id": 22058,
+ "id": 22199,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237269,7 +238124,7 @@
}
},
{
- "id": 22059,
+ "id": 22200,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237278,7 +238133,7 @@
}
},
{
- "id": 22060,
+ "id": 22201,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237287,7 +238142,7 @@
}
},
{
- "id": 22061,
+ "id": 22202,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237296,7 +238151,7 @@
}
},
{
- "id": 22062,
+ "id": 22203,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237305,7 +238160,7 @@
}
},
{
- "id": 22063,
+ "id": 22204,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237314,7 +238169,7 @@
}
},
{
- "id": 22064,
+ "id": 22205,
"properties": {
"facing": "west",
"half": "bottom",
@@ -237323,7 +238178,7 @@
}
},
{
- "id": 22065,
+ "id": 22206,
"properties": {
"facing": "east",
"half": "top",
@@ -237332,7 +238187,7 @@
}
},
{
- "id": 22066,
+ "id": 22207,
"properties": {
"facing": "east",
"half": "top",
@@ -237341,7 +238196,7 @@
}
},
{
- "id": 22067,
+ "id": 22208,
"properties": {
"facing": "east",
"half": "top",
@@ -237350,7 +238205,7 @@
}
},
{
- "id": 22068,
+ "id": 22209,
"properties": {
"facing": "east",
"half": "top",
@@ -237359,7 +238214,7 @@
}
},
{
- "id": 22069,
+ "id": 22210,
"properties": {
"facing": "east",
"half": "top",
@@ -237368,7 +238223,7 @@
}
},
{
- "id": 22070,
+ "id": 22211,
"properties": {
"facing": "east",
"half": "top",
@@ -237377,7 +238232,7 @@
}
},
{
- "id": 22071,
+ "id": 22212,
"properties": {
"facing": "east",
"half": "top",
@@ -237386,7 +238241,7 @@
}
},
{
- "id": 22072,
+ "id": 22213,
"properties": {
"facing": "east",
"half": "top",
@@ -237395,7 +238250,7 @@
}
},
{
- "id": 22073,
+ "id": 22214,
"properties": {
"facing": "east",
"half": "top",
@@ -237404,7 +238259,7 @@
}
},
{
- "id": 22074,
+ "id": 22215,
"properties": {
"facing": "east",
"half": "top",
@@ -237413,7 +238268,7 @@
}
},
{
- "id": 22075,
+ "id": 22216,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237422,7 +238277,7 @@
}
},
{
- "id": 22076,
+ "id": 22217,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237431,7 +238286,7 @@
}
},
{
- "id": 22077,
+ "id": 22218,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237440,7 +238295,7 @@
}
},
{
- "id": 22078,
+ "id": 22219,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237449,7 +238304,7 @@
}
},
{
- "id": 22079,
+ "id": 22220,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237458,7 +238313,7 @@
}
},
{
- "id": 22080,
+ "id": 22221,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237467,7 +238322,7 @@
}
},
{
- "id": 22081,
+ "id": 22222,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237476,7 +238331,7 @@
}
},
{
- "id": 22082,
+ "id": 22223,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237485,7 +238340,7 @@
}
},
{
- "id": 22083,
+ "id": 22224,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237494,7 +238349,7 @@
}
},
{
- "id": 22084,
+ "id": 22225,
"properties": {
"facing": "east",
"half": "bottom",
@@ -237508,7 +238363,7 @@
"states": [
{
"default": true,
- "id": 21564
+ "id": 21705
}
]
},
@@ -237516,7 +238371,7 @@
"states": [
{
"default": true,
- "id": 21570
+ "id": 21711
}
]
},
@@ -237534,21 +238389,21 @@
},
"states": [
{
- "id": 21899,
+ "id": 22040,
"properties": {
"type": "top",
"waterlogged": "true"
}
},
{
- "id": 21900,
+ "id": 22041,
"properties": {
"type": "top",
"waterlogged": "false"
}
},
{
- "id": 21901,
+ "id": 22042,
"properties": {
"type": "bottom",
"waterlogged": "true"
@@ -237556,21 +238411,21 @@
},
{
"default": true,
- "id": 21902,
+ "id": 22043,
"properties": {
"type": "bottom",
"waterlogged": "false"
}
},
{
- "id": 21903,
+ "id": 22044,
"properties": {
"type": "double",
"waterlogged": "true"
}
},
{
- "id": 21904,
+ "id": 22045,
"properties": {
"type": "double",
"waterlogged": "false"
@@ -237604,7 +238459,7 @@
},
"states": [
{
- "id": 21653,
+ "id": 21794,
"properties": {
"facing": "north",
"half": "top",
@@ -237613,7 +238468,7 @@
}
},
{
- "id": 21654,
+ "id": 21795,
"properties": {
"facing": "north",
"half": "top",
@@ -237622,7 +238477,7 @@
}
},
{
- "id": 21655,
+ "id": 21796,
"properties": {
"facing": "north",
"half": "top",
@@ -237631,7 +238486,7 @@
}
},
{
- "id": 21656,
+ "id": 21797,
"properties": {
"facing": "north",
"half": "top",
@@ -237640,7 +238495,7 @@
}
},
{
- "id": 21657,
+ "id": 21798,
"properties": {
"facing": "north",
"half": "top",
@@ -237649,7 +238504,7 @@
}
},
{
- "id": 21658,
+ "id": 21799,
"properties": {
"facing": "north",
"half": "top",
@@ -237658,7 +238513,7 @@
}
},
{
- "id": 21659,
+ "id": 21800,
"properties": {
"facing": "north",
"half": "top",
@@ -237667,7 +238522,7 @@
}
},
{
- "id": 21660,
+ "id": 21801,
"properties": {
"facing": "north",
"half": "top",
@@ -237676,7 +238531,7 @@
}
},
{
- "id": 21661,
+ "id": 21802,
"properties": {
"facing": "north",
"half": "top",
@@ -237685,7 +238540,7 @@
}
},
{
- "id": 21662,
+ "id": 21803,
"properties": {
"facing": "north",
"half": "top",
@@ -237694,7 +238549,7 @@
}
},
{
- "id": 21663,
+ "id": 21804,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237704,7 +238559,7 @@
},
{
"default": true,
- "id": 21664,
+ "id": 21805,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237713,7 +238568,7 @@
}
},
{
- "id": 21665,
+ "id": 21806,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237722,7 +238577,7 @@
}
},
{
- "id": 21666,
+ "id": 21807,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237731,7 +238586,7 @@
}
},
{
- "id": 21667,
+ "id": 21808,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237740,7 +238595,7 @@
}
},
{
- "id": 21668,
+ "id": 21809,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237749,7 +238604,7 @@
}
},
{
- "id": 21669,
+ "id": 21810,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237758,7 +238613,7 @@
}
},
{
- "id": 21670,
+ "id": 21811,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237767,7 +238622,7 @@
}
},
{
- "id": 21671,
+ "id": 21812,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237776,7 +238631,7 @@
}
},
{
- "id": 21672,
+ "id": 21813,
"properties": {
"facing": "north",
"half": "bottom",
@@ -237785,7 +238640,7 @@
}
},
{
- "id": 21673,
+ "id": 21814,
"properties": {
"facing": "south",
"half": "top",
@@ -237794,7 +238649,7 @@
}
},
{
- "id": 21674,
+ "id": 21815,
"properties": {
"facing": "south",
"half": "top",
@@ -237803,7 +238658,7 @@
}
},
{
- "id": 21675,
+ "id": 21816,
"properties": {
"facing": "south",
"half": "top",
@@ -237812,7 +238667,7 @@
}
},
{
- "id": 21676,
+ "id": 21817,
"properties": {
"facing": "south",
"half": "top",
@@ -237821,7 +238676,7 @@
}
},
{
- "id": 21677,
+ "id": 21818,
"properties": {
"facing": "south",
"half": "top",
@@ -237830,7 +238685,7 @@
}
},
{
- "id": 21678,
+ "id": 21819,
"properties": {
"facing": "south",
"half": "top",
@@ -237839,7 +238694,7 @@
}
},
{
- "id": 21679,
+ "id": 21820,
"properties": {
"facing": "south",
"half": "top",
@@ -237848,7 +238703,7 @@
}
},
{
- "id": 21680,
+ "id": 21821,
"properties": {
"facing": "south",
"half": "top",
@@ -237857,7 +238712,7 @@
}
},
{
- "id": 21681,
+ "id": 21822,
"properties": {
"facing": "south",
"half": "top",
@@ -237866,7 +238721,7 @@
}
},
{
- "id": 21682,
+ "id": 21823,
"properties": {
"facing": "south",
"half": "top",
@@ -237875,7 +238730,7 @@
}
},
{
- "id": 21683,
+ "id": 21824,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237884,7 +238739,7 @@
}
},
{
- "id": 21684,
+ "id": 21825,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237893,7 +238748,7 @@
}
},
{
- "id": 21685,
+ "id": 21826,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237902,7 +238757,7 @@
}
},
{
- "id": 21686,
+ "id": 21827,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237911,7 +238766,7 @@
}
},
{
- "id": 21687,
+ "id": 21828,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237920,7 +238775,7 @@
}
},
{
- "id": 21688,
+ "id": 21829,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237929,7 +238784,7 @@
}
},
{
- "id": 21689,
+ "id": 21830,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237938,7 +238793,7 @@
}
},
{
- "id": 21690,
+ "id": 21831,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237947,7 +238802,7 @@
}
},
{
- "id": 21691,
+ "id": 21832,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237956,7 +238811,7 @@
}
},
{
- "id": 21692,
+ "id": 21833,
"properties": {
"facing": "south",
"half": "bottom",
@@ -237965,7 +238820,7 @@
}
},
{
- "id": 21693,
+ "id": 21834,
"properties": {
"facing": "west",
"half": "top",
@@ -237974,7 +238829,7 @@
}
},
{
- "id": 21694,
+ "id": 21835,
"properties": {
"facing": "west",
"half": "top",
@@ -237983,7 +238838,7 @@
}
},
{
- "id": 21695,
+ "id": 21836,
"properties": {
"facing": "west",
"half": "top",
@@ -237992,7 +238847,7 @@
}
},
{
- "id": 21696,
+ "id": 21837,
"properties": {
"facing": "west",
"half": "top",
@@ -238001,7 +238856,7 @@
}
},
{
- "id": 21697,
+ "id": 21838,
"properties": {
"facing": "west",
"half": "top",
@@ -238010,7 +238865,7 @@
}
},
{
- "id": 21698,
+ "id": 21839,
"properties": {
"facing": "west",
"half": "top",
@@ -238019,7 +238874,7 @@
}
},
{
- "id": 21699,
+ "id": 21840,
"properties": {
"facing": "west",
"half": "top",
@@ -238028,7 +238883,7 @@
}
},
{
- "id": 21700,
+ "id": 21841,
"properties": {
"facing": "west",
"half": "top",
@@ -238037,7 +238892,7 @@
}
},
{
- "id": 21701,
+ "id": 21842,
"properties": {
"facing": "west",
"half": "top",
@@ -238046,7 +238901,7 @@
}
},
{
- "id": 21702,
+ "id": 21843,
"properties": {
"facing": "west",
"half": "top",
@@ -238055,7 +238910,7 @@
}
},
{
- "id": 21703,
+ "id": 21844,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238064,7 +238919,7 @@
}
},
{
- "id": 21704,
+ "id": 21845,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238073,7 +238928,7 @@
}
},
{
- "id": 21705,
+ "id": 21846,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238082,7 +238937,7 @@
}
},
{
- "id": 21706,
+ "id": 21847,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238091,7 +238946,7 @@
}
},
{
- "id": 21707,
+ "id": 21848,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238100,7 +238955,7 @@
}
},
{
- "id": 21708,
+ "id": 21849,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238109,7 +238964,7 @@
}
},
{
- "id": 21709,
+ "id": 21850,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238118,7 +238973,7 @@
}
},
{
- "id": 21710,
+ "id": 21851,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238127,7 +238982,7 @@
}
},
{
- "id": 21711,
+ "id": 21852,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238136,7 +238991,7 @@
}
},
{
- "id": 21712,
+ "id": 21853,
"properties": {
"facing": "west",
"half": "bottom",
@@ -238145,7 +239000,7 @@
}
},
{
- "id": 21713,
+ "id": 21854,
"properties": {
"facing": "east",
"half": "top",
@@ -238154,7 +239009,7 @@
}
},
{
- "id": 21714,
+ "id": 21855,
"properties": {
"facing": "east",
"half": "top",
@@ -238163,7 +239018,7 @@
}
},
{
- "id": 21715,
+ "id": 21856,
"properties": {
"facing": "east",
"half": "top",
@@ -238172,7 +239027,7 @@
}
},
{
- "id": 21716,
+ "id": 21857,
"properties": {
"facing": "east",
"half": "top",
@@ -238181,7 +239036,7 @@
}
},
{
- "id": 21717,
+ "id": 21858,
"properties": {
"facing": "east",
"half": "top",
@@ -238190,7 +239045,7 @@
}
},
{
- "id": 21718,
+ "id": 21859,
"properties": {
"facing": "east",
"half": "top",
@@ -238199,7 +239054,7 @@
}
},
{
- "id": 21719,
+ "id": 21860,
"properties": {
"facing": "east",
"half": "top",
@@ -238208,7 +239063,7 @@
}
},
{
- "id": 21720,
+ "id": 21861,
"properties": {
"facing": "east",
"half": "top",
@@ -238217,7 +239072,7 @@
}
},
{
- "id": 21721,
+ "id": 21862,
"properties": {
"facing": "east",
"half": "top",
@@ -238226,7 +239081,7 @@
}
},
{
- "id": 21722,
+ "id": 21863,
"properties": {
"facing": "east",
"half": "top",
@@ -238235,7 +239090,7 @@
}
},
{
- "id": 21723,
+ "id": 21864,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238244,7 +239099,7 @@
}
},
{
- "id": 21724,
+ "id": 21865,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238253,7 +239108,7 @@
}
},
{
- "id": 21725,
+ "id": 21866,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238262,7 +239117,7 @@
}
},
{
- "id": 21726,
+ "id": 21867,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238271,7 +239126,7 @@
}
},
{
- "id": 21727,
+ "id": 21868,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238280,7 +239135,7 @@
}
},
{
- "id": 21728,
+ "id": 21869,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238289,7 +239144,7 @@
}
},
{
- "id": 21729,
+ "id": 21870,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238298,7 +239153,7 @@
}
},
{
- "id": 21730,
+ "id": 21871,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238307,7 +239162,7 @@
}
},
{
- "id": 21731,
+ "id": 21872,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238316,7 +239171,7 @@
}
},
{
- "id": 21732,
+ "id": 21873,
"properties": {
"facing": "east",
"half": "bottom",
@@ -238360,157 +239215,157 @@
"states": [
{
"default": true,
- "id": 18470,
+ "id": 18611,
"properties": {
"age": "0"
}
},
{
- "id": 18471,
+ "id": 18612,
"properties": {
"age": "1"
}
},
{
- "id": 18472,
+ "id": 18613,
"properties": {
"age": "2"
}
},
{
- "id": 18473,
+ "id": 18614,
"properties": {
"age": "3"
}
},
{
- "id": 18474,
+ "id": 18615,
"properties": {
"age": "4"
}
},
{
- "id": 18475,
+ "id": 18616,
"properties": {
"age": "5"
}
},
{
- "id": 18476,
+ "id": 18617,
"properties": {
"age": "6"
}
},
{
- "id": 18477,
+ "id": 18618,
"properties": {
"age": "7"
}
},
{
- "id": 18478,
+ "id": 18619,
"properties": {
"age": "8"
}
},
{
- "id": 18479,
+ "id": 18620,
"properties": {
"age": "9"
}
},
{
- "id": 18480,
+ "id": 18621,
"properties": {
"age": "10"
}
},
{
- "id": 18481,
+ "id": 18622,
"properties": {
"age": "11"
}
},
{
- "id": 18482,
+ "id": 18623,
"properties": {
"age": "12"
}
},
{
- "id": 18483,
+ "id": 18624,
"properties": {
"age": "13"
}
},
{
- "id": 18484,
+ "id": 18625,
"properties": {
"age": "14"
}
},
{
- "id": 18485,
+ "id": 18626,
"properties": {
"age": "15"
}
},
{
- "id": 18486,
+ "id": 18627,
"properties": {
"age": "16"
}
},
{
- "id": 18487,
+ "id": 18628,
"properties": {
"age": "17"
}
},
{
- "id": 18488,
+ "id": 18629,
"properties": {
"age": "18"
}
},
{
- "id": 18489,
+ "id": 18630,
"properties": {
"age": "19"
}
},
{
- "id": 18490,
+ "id": 18631,
"properties": {
"age": "20"
}
},
{
- "id": 18491,
+ "id": 18632,
"properties": {
"age": "21"
}
},
{
- "id": 18492,
+ "id": 18633,
"properties": {
"age": "22"
}
},
{
- "id": 18493,
+ "id": 18634,
"properties": {
"age": "23"
}
},
{
- "id": 18494,
+ "id": 18635,
"properties": {
"age": "24"
}
},
{
- "id": 18495,
+ "id": 18636,
"properties": {
"age": "25"
}
@@ -238521,7 +239376,7 @@
"states": [
{
"default": true,
- "id": 18496
+ "id": 18637
}
]
},
@@ -238622,97 +239477,97 @@
"states": [
{
"default": true,
- "id": 10618,
+ "id": 10759,
"properties": {
"rotation": "0"
}
},
{
- "id": 10619,
+ "id": 10760,
"properties": {
"rotation": "1"
}
},
{
- "id": 10620,
+ "id": 10761,
"properties": {
"rotation": "2"
}
},
{
- "id": 10621,
+ "id": 10762,
"properties": {
"rotation": "3"
}
},
{
- "id": 10622,
+ "id": 10763,
"properties": {
"rotation": "4"
}
},
{
- "id": 10623,
+ "id": 10764,
"properties": {
"rotation": "5"
}
},
{
- "id": 10624,
+ "id": 10765,
"properties": {
"rotation": "6"
}
},
{
- "id": 10625,
+ "id": 10766,
"properties": {
"rotation": "7"
}
},
{
- "id": 10626,
+ "id": 10767,
"properties": {
"rotation": "8"
}
},
{
- "id": 10627,
+ "id": 10768,
"properties": {
"rotation": "9"
}
},
{
- "id": 10628,
+ "id": 10769,
"properties": {
"rotation": "10"
}
},
{
- "id": 10629,
+ "id": 10770,
"properties": {
"rotation": "11"
}
},
{
- "id": 10630,
+ "id": 10771,
"properties": {
"rotation": "12"
}
},
{
- "id": 10631,
+ "id": 10772,
"properties": {
"rotation": "13"
}
},
{
- "id": 10632,
+ "id": 10773,
"properties": {
"rotation": "14"
}
},
{
- "id": 10633,
+ "id": 10774,
"properties": {
"rotation": "15"
}
@@ -238887,7 +239742,7 @@
},
"states": [
{
- "id": 20600,
+ "id": 20741,
"properties": {
"candles": "1",
"lit": "true",
@@ -238895,7 +239750,7 @@
}
},
{
- "id": 20601,
+ "id": 20742,
"properties": {
"candles": "1",
"lit": "true",
@@ -238903,7 +239758,7 @@
}
},
{
- "id": 20602,
+ "id": 20743,
"properties": {
"candles": "1",
"lit": "false",
@@ -238912,7 +239767,7 @@
},
{
"default": true,
- "id": 20603,
+ "id": 20744,
"properties": {
"candles": "1",
"lit": "false",
@@ -238920,7 +239775,7 @@
}
},
{
- "id": 20604,
+ "id": 20745,
"properties": {
"candles": "2",
"lit": "true",
@@ -238928,7 +239783,7 @@
}
},
{
- "id": 20605,
+ "id": 20746,
"properties": {
"candles": "2",
"lit": "true",
@@ -238936,7 +239791,7 @@
}
},
{
- "id": 20606,
+ "id": 20747,
"properties": {
"candles": "2",
"lit": "false",
@@ -238944,7 +239799,7 @@
}
},
{
- "id": 20607,
+ "id": 20748,
"properties": {
"candles": "2",
"lit": "false",
@@ -238952,7 +239807,7 @@
}
},
{
- "id": 20608,
+ "id": 20749,
"properties": {
"candles": "3",
"lit": "true",
@@ -238960,7 +239815,7 @@
}
},
{
- "id": 20609,
+ "id": 20750,
"properties": {
"candles": "3",
"lit": "true",
@@ -238968,7 +239823,7 @@
}
},
{
- "id": 20610,
+ "id": 20751,
"properties": {
"candles": "3",
"lit": "false",
@@ -238976,7 +239831,7 @@
}
},
{
- "id": 20611,
+ "id": 20752,
"properties": {
"candles": "3",
"lit": "false",
@@ -238984,7 +239839,7 @@
}
},
{
- "id": 20612,
+ "id": 20753,
"properties": {
"candles": "4",
"lit": "true",
@@ -238992,7 +239847,7 @@
}
},
{
- "id": 20613,
+ "id": 20754,
"properties": {
"candles": "4",
"lit": "true",
@@ -239000,7 +239855,7 @@
}
},
{
- "id": 20614,
+ "id": 20755,
"properties": {
"candles": "4",
"lit": "false",
@@ -239008,7 +239863,7 @@
}
},
{
- "id": 20615,
+ "id": 20756,
"properties": {
"candles": "4",
"lit": "false",
@@ -239026,14 +239881,14 @@
},
"states": [
{
- "id": 20858,
+ "id": 20999,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20859,
+ "id": 21000,
"properties": {
"lit": "false"
}
@@ -239044,7 +239899,7 @@
"states": [
{
"default": true,
- "id": 10587
+ "id": 10728
}
]
},
@@ -239052,7 +239907,7 @@
"states": [
{
"default": true,
- "id": 12587
+ "id": 12728
}
]
},
@@ -239060,7 +239915,7 @@
"states": [
{
"default": true,
- "id": 12603
+ "id": 12744
}
]
},
@@ -239076,25 +239931,25 @@
"states": [
{
"default": true,
- "id": 12523,
+ "id": 12664,
"properties": {
"facing": "north"
}
},
{
- "id": 12524,
+ "id": 12665,
"properties": {
"facing": "south"
}
},
{
- "id": 12525,
+ "id": 12666,
"properties": {
"facing": "west"
}
},
{
- "id": 12526,
+ "id": 12667,
"properties": {
"facing": "east"
}
@@ -239114,38 +239969,38 @@
},
"states": [
{
- "id": 12427,
+ "id": 12568,
"properties": {
"facing": "north"
}
},
{
- "id": 12428,
+ "id": 12569,
"properties": {
"facing": "east"
}
},
{
- "id": 12429,
+ "id": 12570,
"properties": {
"facing": "south"
}
},
{
- "id": 12430,
+ "id": 12571,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12431,
+ "id": 12572,
"properties": {
"facing": "up"
}
},
{
- "id": 12432,
+ "id": 12573,
"properties": {
"facing": "down"
}
@@ -239185,7 +240040,7 @@
},
"states": [
{
- "id": 9232,
+ "id": 9372,
"properties": {
"east": "true",
"north": "true",
@@ -239195,7 +240050,7 @@
}
},
{
- "id": 9233,
+ "id": 9373,
"properties": {
"east": "true",
"north": "true",
@@ -239205,7 +240060,7 @@
}
},
{
- "id": 9234,
+ "id": 9374,
"properties": {
"east": "true",
"north": "true",
@@ -239215,7 +240070,7 @@
}
},
{
- "id": 9235,
+ "id": 9375,
"properties": {
"east": "true",
"north": "true",
@@ -239225,7 +240080,7 @@
}
},
{
- "id": 9236,
+ "id": 9376,
"properties": {
"east": "true",
"north": "true",
@@ -239235,7 +240090,7 @@
}
},
{
- "id": 9237,
+ "id": 9377,
"properties": {
"east": "true",
"north": "true",
@@ -239245,7 +240100,7 @@
}
},
{
- "id": 9238,
+ "id": 9378,
"properties": {
"east": "true",
"north": "true",
@@ -239255,7 +240110,7 @@
}
},
{
- "id": 9239,
+ "id": 9379,
"properties": {
"east": "true",
"north": "true",
@@ -239265,7 +240120,7 @@
}
},
{
- "id": 9240,
+ "id": 9380,
"properties": {
"east": "true",
"north": "false",
@@ -239275,7 +240130,7 @@
}
},
{
- "id": 9241,
+ "id": 9381,
"properties": {
"east": "true",
"north": "false",
@@ -239285,7 +240140,7 @@
}
},
{
- "id": 9242,
+ "id": 9382,
"properties": {
"east": "true",
"north": "false",
@@ -239295,7 +240150,7 @@
}
},
{
- "id": 9243,
+ "id": 9383,
"properties": {
"east": "true",
"north": "false",
@@ -239305,7 +240160,7 @@
}
},
{
- "id": 9244,
+ "id": 9384,
"properties": {
"east": "true",
"north": "false",
@@ -239315,7 +240170,7 @@
}
},
{
- "id": 9245,
+ "id": 9385,
"properties": {
"east": "true",
"north": "false",
@@ -239325,7 +240180,7 @@
}
},
{
- "id": 9246,
+ "id": 9386,
"properties": {
"east": "true",
"north": "false",
@@ -239335,7 +240190,7 @@
}
},
{
- "id": 9247,
+ "id": 9387,
"properties": {
"east": "true",
"north": "false",
@@ -239345,7 +240200,7 @@
}
},
{
- "id": 9248,
+ "id": 9388,
"properties": {
"east": "false",
"north": "true",
@@ -239355,7 +240210,7 @@
}
},
{
- "id": 9249,
+ "id": 9389,
"properties": {
"east": "false",
"north": "true",
@@ -239365,7 +240220,7 @@
}
},
{
- "id": 9250,
+ "id": 9390,
"properties": {
"east": "false",
"north": "true",
@@ -239375,7 +240230,7 @@
}
},
{
- "id": 9251,
+ "id": 9391,
"properties": {
"east": "false",
"north": "true",
@@ -239385,7 +240240,7 @@
}
},
{
- "id": 9252,
+ "id": 9392,
"properties": {
"east": "false",
"north": "true",
@@ -239395,7 +240250,7 @@
}
},
{
- "id": 9253,
+ "id": 9393,
"properties": {
"east": "false",
"north": "true",
@@ -239405,7 +240260,7 @@
}
},
{
- "id": 9254,
+ "id": 9394,
"properties": {
"east": "false",
"north": "true",
@@ -239415,7 +240270,7 @@
}
},
{
- "id": 9255,
+ "id": 9395,
"properties": {
"east": "false",
"north": "true",
@@ -239425,7 +240280,7 @@
}
},
{
- "id": 9256,
+ "id": 9396,
"properties": {
"east": "false",
"north": "false",
@@ -239435,7 +240290,7 @@
}
},
{
- "id": 9257,
+ "id": 9397,
"properties": {
"east": "false",
"north": "false",
@@ -239445,7 +240300,7 @@
}
},
{
- "id": 9258,
+ "id": 9398,
"properties": {
"east": "false",
"north": "false",
@@ -239455,7 +240310,7 @@
}
},
{
- "id": 9259,
+ "id": 9399,
"properties": {
"east": "false",
"north": "false",
@@ -239465,7 +240320,7 @@
}
},
{
- "id": 9260,
+ "id": 9400,
"properties": {
"east": "false",
"north": "false",
@@ -239475,7 +240330,7 @@
}
},
{
- "id": 9261,
+ "id": 9401,
"properties": {
"east": "false",
"north": "false",
@@ -239485,7 +240340,7 @@
}
},
{
- "id": 9262,
+ "id": 9402,
"properties": {
"east": "false",
"north": "false",
@@ -239496,7 +240351,7 @@
},
{
"default": true,
- "id": 9263,
+ "id": 9403,
"properties": {
"east": "false",
"north": "false",
@@ -239511,7 +240366,7 @@
"states": [
{
"default": true,
- "id": 9216
+ "id": 9356
}
]
},
@@ -239535,25 +240390,25 @@
"states": [
{
"default": true,
- "id": 10874,
+ "id": 11015,
"properties": {
"facing": "north"
}
},
{
- "id": 10875,
+ "id": 11016,
"properties": {
"facing": "south"
}
},
{
- "id": 10876,
+ "id": 11017,
"properties": {
"facing": "west"
}
},
{
- "id": 10877,
+ "id": 11018,
"properties": {
"facing": "east"
}
@@ -239578,6 +240433,10 @@
},
"minecraft:wither_skeleton_skull": {
"properties": {
+ "powered": [
+ "true",
+ "false"
+ ],
"rotation": [
"0",
"1",
@@ -239599,99 +240458,227 @@
},
"states": [
{
- "default": true,
- "id": 8847,
+ "id": 8867,
"properties": {
+ "powered": "true",
"rotation": "0"
}
},
{
- "id": 8848,
+ "id": 8868,
"properties": {
+ "powered": "true",
"rotation": "1"
}
},
{
- "id": 8849,
+ "id": 8869,
"properties": {
+ "powered": "true",
"rotation": "2"
}
},
{
- "id": 8850,
+ "id": 8870,
"properties": {
+ "powered": "true",
"rotation": "3"
}
},
{
- "id": 8851,
+ "id": 8871,
"properties": {
+ "powered": "true",
"rotation": "4"
}
},
{
- "id": 8852,
+ "id": 8872,
"properties": {
+ "powered": "true",
"rotation": "5"
}
},
{
- "id": 8853,
+ "id": 8873,
"properties": {
+ "powered": "true",
"rotation": "6"
}
},
{
- "id": 8854,
+ "id": 8874,
"properties": {
+ "powered": "true",
"rotation": "7"
}
},
{
- "id": 8855,
+ "id": 8875,
"properties": {
+ "powered": "true",
"rotation": "8"
}
},
{
- "id": 8856,
+ "id": 8876,
"properties": {
+ "powered": "true",
"rotation": "9"
}
},
{
- "id": 8857,
+ "id": 8877,
"properties": {
+ "powered": "true",
"rotation": "10"
}
},
{
- "id": 8858,
+ "id": 8878,
"properties": {
+ "powered": "true",
"rotation": "11"
}
},
{
- "id": 8859,
+ "id": 8879,
"properties": {
+ "powered": "true",
"rotation": "12"
}
},
{
- "id": 8860,
+ "id": 8880,
"properties": {
+ "powered": "true",
"rotation": "13"
}
},
{
- "id": 8861,
+ "id": 8881,
"properties": {
+ "powered": "true",
"rotation": "14"
}
},
{
- "id": 8862,
+ "id": 8882,
"properties": {
+ "powered": "true",
+ "rotation": "15"
+ }
+ },
+ {
+ "default": true,
+ "id": 8883,
+ "properties": {
+ "powered": "false",
+ "rotation": "0"
+ }
+ },
+ {
+ "id": 8884,
+ "properties": {
+ "powered": "false",
+ "rotation": "1"
+ }
+ },
+ {
+ "id": 8885,
+ "properties": {
+ "powered": "false",
+ "rotation": "2"
+ }
+ },
+ {
+ "id": 8886,
+ "properties": {
+ "powered": "false",
+ "rotation": "3"
+ }
+ },
+ {
+ "id": 8887,
+ "properties": {
+ "powered": "false",
+ "rotation": "4"
+ }
+ },
+ {
+ "id": 8888,
+ "properties": {
+ "powered": "false",
+ "rotation": "5"
+ }
+ },
+ {
+ "id": 8889,
+ "properties": {
+ "powered": "false",
+ "rotation": "6"
+ }
+ },
+ {
+ "id": 8890,
+ "properties": {
+ "powered": "false",
+ "rotation": "7"
+ }
+ },
+ {
+ "id": 8891,
+ "properties": {
+ "powered": "false",
+ "rotation": "8"
+ }
+ },
+ {
+ "id": 8892,
+ "properties": {
+ "powered": "false",
+ "rotation": "9"
+ }
+ },
+ {
+ "id": 8893,
+ "properties": {
+ "powered": "false",
+ "rotation": "10"
+ }
+ },
+ {
+ "id": 8894,
+ "properties": {
+ "powered": "false",
+ "rotation": "11"
+ }
+ },
+ {
+ "id": 8895,
+ "properties": {
+ "powered": "false",
+ "rotation": "12"
+ }
+ },
+ {
+ "id": 8896,
+ "properties": {
+ "powered": "false",
+ "rotation": "13"
+ }
+ },
+ {
+ "id": 8897,
+ "properties": {
+ "powered": "false",
+ "rotation": "14"
+ }
+ },
+ {
+ "id": 8898,
+ "properties": {
+ "powered": "false",
"rotation": "15"
}
}
@@ -239704,32 +240691,68 @@
"south",
"west",
"east"
+ ],
+ "powered": [
+ "true",
+ "false"
]
},
"states": [
+ {
+ "id": 8899,
+ "properties": {
+ "facing": "north",
+ "powered": "true"
+ }
+ },
{
"default": true,
- "id": 8863,
+ "id": 8900,
"properties": {
- "facing": "north"
+ "facing": "north",
+ "powered": "false"
}
},
{
- "id": 8864,
+ "id": 8901,
"properties": {
- "facing": "south"
+ "facing": "south",
+ "powered": "true"
}
},
{
- "id": 8865,
+ "id": 8902,
"properties": {
- "facing": "west"
+ "facing": "south",
+ "powered": "false"
}
},
{
- "id": 8866,
+ "id": 8903,
"properties": {
- "facing": "east"
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8904,
+ "properties": {
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 8905,
+ "properties": {
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8906,
+ "properties": {
+ "facing": "east",
+ "powered": "false"
}
}
]
@@ -239758,97 +240781,97 @@
"states": [
{
"default": true,
- "id": 10682,
+ "id": 10823,
"properties": {
"rotation": "0"
}
},
{
- "id": 10683,
+ "id": 10824,
"properties": {
"rotation": "1"
}
},
{
- "id": 10684,
+ "id": 10825,
"properties": {
"rotation": "2"
}
},
{
- "id": 10685,
+ "id": 10826,
"properties": {
"rotation": "3"
}
},
{
- "id": 10686,
+ "id": 10827,
"properties": {
"rotation": "4"
}
},
{
- "id": 10687,
+ "id": 10828,
"properties": {
"rotation": "5"
}
},
{
- "id": 10688,
+ "id": 10829,
"properties": {
"rotation": "6"
}
},
{
- "id": 10689,
+ "id": 10830,
"properties": {
"rotation": "7"
}
},
{
- "id": 10690,
+ "id": 10831,
"properties": {
"rotation": "8"
}
},
{
- "id": 10691,
+ "id": 10832,
"properties": {
"rotation": "9"
}
},
{
- "id": 10692,
+ "id": 10833,
"properties": {
"rotation": "10"
}
},
{
- "id": 10693,
+ "id": 10834,
"properties": {
"rotation": "11"
}
},
{
- "id": 10694,
+ "id": 10835,
"properties": {
"rotation": "12"
}
},
{
- "id": 10695,
+ "id": 10836,
"properties": {
"rotation": "13"
}
},
{
- "id": 10696,
+ "id": 10837,
"properties": {
"rotation": "14"
}
},
{
- "id": 10697,
+ "id": 10838,
"properties": {
"rotation": "15"
}
@@ -240023,7 +241046,7 @@
},
"states": [
{
- "id": 20664,
+ "id": 20805,
"properties": {
"candles": "1",
"lit": "true",
@@ -240031,7 +241054,7 @@
}
},
{
- "id": 20665,
+ "id": 20806,
"properties": {
"candles": "1",
"lit": "true",
@@ -240039,7 +241062,7 @@
}
},
{
- "id": 20666,
+ "id": 20807,
"properties": {
"candles": "1",
"lit": "false",
@@ -240048,7 +241071,7 @@
},
{
"default": true,
- "id": 20667,
+ "id": 20808,
"properties": {
"candles": "1",
"lit": "false",
@@ -240056,7 +241079,7 @@
}
},
{
- "id": 20668,
+ "id": 20809,
"properties": {
"candles": "2",
"lit": "true",
@@ -240064,7 +241087,7 @@
}
},
{
- "id": 20669,
+ "id": 20810,
"properties": {
"candles": "2",
"lit": "true",
@@ -240072,7 +241095,7 @@
}
},
{
- "id": 20670,
+ "id": 20811,
"properties": {
"candles": "2",
"lit": "false",
@@ -240080,7 +241103,7 @@
}
},
{
- "id": 20671,
+ "id": 20812,
"properties": {
"candles": "2",
"lit": "false",
@@ -240088,7 +241111,7 @@
}
},
{
- "id": 20672,
+ "id": 20813,
"properties": {
"candles": "3",
"lit": "true",
@@ -240096,7 +241119,7 @@
}
},
{
- "id": 20673,
+ "id": 20814,
"properties": {
"candles": "3",
"lit": "true",
@@ -240104,7 +241127,7 @@
}
},
{
- "id": 20674,
+ "id": 20815,
"properties": {
"candles": "3",
"lit": "false",
@@ -240112,7 +241135,7 @@
}
},
{
- "id": 20675,
+ "id": 20816,
"properties": {
"candles": "3",
"lit": "false",
@@ -240120,7 +241143,7 @@
}
},
{
- "id": 20676,
+ "id": 20817,
"properties": {
"candles": "4",
"lit": "true",
@@ -240128,7 +241151,7 @@
}
},
{
- "id": 20677,
+ "id": 20818,
"properties": {
"candles": "4",
"lit": "true",
@@ -240136,7 +241159,7 @@
}
},
{
- "id": 20678,
+ "id": 20819,
"properties": {
"candles": "4",
"lit": "false",
@@ -240144,7 +241167,7 @@
}
},
{
- "id": 20679,
+ "id": 20820,
"properties": {
"candles": "4",
"lit": "false",
@@ -240162,14 +241185,14 @@
},
"states": [
{
- "id": 20866,
+ "id": 21007,
"properties": {
"lit": "true"
}
},
{
"default": true,
- "id": 20867,
+ "id": 21008,
"properties": {
"lit": "false"
}
@@ -240180,7 +241203,7 @@
"states": [
{
"default": true,
- "id": 10591
+ "id": 10732
}
]
},
@@ -240188,7 +241211,7 @@
"states": [
{
"default": true,
- "id": 12591
+ "id": 12732
}
]
},
@@ -240196,7 +241219,7 @@
"states": [
{
"default": true,
- "id": 12607
+ "id": 12748
}
]
},
@@ -240212,25 +241235,25 @@
"states": [
{
"default": true,
- "id": 12539,
+ "id": 12680,
"properties": {
"facing": "north"
}
},
{
- "id": 12540,
+ "id": 12681,
"properties": {
"facing": "south"
}
},
{
- "id": 12541,
+ "id": 12682,
"properties": {
"facing": "west"
}
},
{
- "id": 12542,
+ "id": 12683,
"properties": {
"facing": "east"
}
@@ -240250,38 +241273,38 @@
},
"states": [
{
- "id": 12451,
+ "id": 12592,
"properties": {
"facing": "north"
}
},
{
- "id": 12452,
+ "id": 12593,
"properties": {
"facing": "east"
}
},
{
- "id": 12453,
+ "id": 12594,
"properties": {
"facing": "south"
}
},
{
- "id": 12454,
+ "id": 12595,
"properties": {
"facing": "west"
}
},
{
"default": true,
- "id": 12455,
+ "id": 12596,
"properties": {
"facing": "up"
}
},
{
- "id": 12456,
+ "id": 12597,
"properties": {
"facing": "down"
}
@@ -240321,7 +241344,7 @@
},
"states": [
{
- "id": 9360,
+ "id": 9500,
"properties": {
"east": "true",
"north": "true",
@@ -240331,7 +241354,7 @@
}
},
{
- "id": 9361,
+ "id": 9501,
"properties": {
"east": "true",
"north": "true",
@@ -240341,7 +241364,7 @@
}
},
{
- "id": 9362,
+ "id": 9502,
"properties": {
"east": "true",
"north": "true",
@@ -240351,7 +241374,7 @@
}
},
{
- "id": 9363,
+ "id": 9503,
"properties": {
"east": "true",
"north": "true",
@@ -240361,7 +241384,7 @@
}
},
{
- "id": 9364,
+ "id": 9504,
"properties": {
"east": "true",
"north": "true",
@@ -240371,7 +241394,7 @@
}
},
{
- "id": 9365,
+ "id": 9505,
"properties": {
"east": "true",
"north": "true",
@@ -240381,7 +241404,7 @@
}
},
{
- "id": 9366,
+ "id": 9506,
"properties": {
"east": "true",
"north": "true",
@@ -240391,7 +241414,7 @@
}
},
{
- "id": 9367,
+ "id": 9507,
"properties": {
"east": "true",
"north": "true",
@@ -240401,7 +241424,7 @@
}
},
{
- "id": 9368,
+ "id": 9508,
"properties": {
"east": "true",
"north": "false",
@@ -240411,7 +241434,7 @@
}
},
{
- "id": 9369,
+ "id": 9509,
"properties": {
"east": "true",
"north": "false",
@@ -240421,7 +241444,7 @@
}
},
{
- "id": 9370,
+ "id": 9510,
"properties": {
"east": "true",
"north": "false",
@@ -240431,7 +241454,7 @@
}
},
{
- "id": 9371,
+ "id": 9511,
"properties": {
"east": "true",
"north": "false",
@@ -240441,7 +241464,7 @@
}
},
{
- "id": 9372,
+ "id": 9512,
"properties": {
"east": "true",
"north": "false",
@@ -240451,7 +241474,7 @@
}
},
{
- "id": 9373,
+ "id": 9513,
"properties": {
"east": "true",
"north": "false",
@@ -240461,7 +241484,7 @@
}
},
{
- "id": 9374,
+ "id": 9514,
"properties": {
"east": "true",
"north": "false",
@@ -240471,7 +241494,7 @@
}
},
{
- "id": 9375,
+ "id": 9515,
"properties": {
"east": "true",
"north": "false",
@@ -240481,7 +241504,7 @@
}
},
{
- "id": 9376,
+ "id": 9516,
"properties": {
"east": "false",
"north": "true",
@@ -240491,7 +241514,7 @@
}
},
{
- "id": 9377,
+ "id": 9517,
"properties": {
"east": "false",
"north": "true",
@@ -240501,7 +241524,7 @@
}
},
{
- "id": 9378,
+ "id": 9518,
"properties": {
"east": "false",
"north": "true",
@@ -240511,7 +241534,7 @@
}
},
{
- "id": 9379,
+ "id": 9519,
"properties": {
"east": "false",
"north": "true",
@@ -240521,7 +241544,7 @@
}
},
{
- "id": 9380,
+ "id": 9520,
"properties": {
"east": "false",
"north": "true",
@@ -240531,7 +241554,7 @@
}
},
{
- "id": 9381,
+ "id": 9521,
"properties": {
"east": "false",
"north": "true",
@@ -240541,7 +241564,7 @@
}
},
{
- "id": 9382,
+ "id": 9522,
"properties": {
"east": "false",
"north": "true",
@@ -240551,7 +241574,7 @@
}
},
{
- "id": 9383,
+ "id": 9523,
"properties": {
"east": "false",
"north": "true",
@@ -240561,7 +241584,7 @@
}
},
{
- "id": 9384,
+ "id": 9524,
"properties": {
"east": "false",
"north": "false",
@@ -240571,7 +241594,7 @@
}
},
{
- "id": 9385,
+ "id": 9525,
"properties": {
"east": "false",
"north": "false",
@@ -240581,7 +241604,7 @@
}
},
{
- "id": 9386,
+ "id": 9526,
"properties": {
"east": "false",
"north": "false",
@@ -240591,7 +241614,7 @@
}
},
{
- "id": 9387,
+ "id": 9527,
"properties": {
"east": "false",
"north": "false",
@@ -240601,7 +241624,7 @@
}
},
{
- "id": 9388,
+ "id": 9528,
"properties": {
"east": "false",
"north": "false",
@@ -240611,7 +241634,7 @@
}
},
{
- "id": 9389,
+ "id": 9529,
"properties": {
"east": "false",
"north": "false",
@@ -240621,7 +241644,7 @@
}
},
{
- "id": 9390,
+ "id": 9530,
"properties": {
"east": "false",
"north": "false",
@@ -240632,7 +241655,7 @@
},
{
"default": true,
- "id": 9391,
+ "id": 9531,
"properties": {
"east": "false",
"north": "false",
@@ -240647,7 +241670,7 @@
"states": [
{
"default": true,
- "id": 9220
+ "id": 9360
}
]
},
@@ -240663,25 +241686,25 @@
"states": [
{
"default": true,
- "id": 10890,
+ "id": 11031,
"properties": {
"facing": "north"
}
},
{
- "id": 10891,
+ "id": 11032,
"properties": {
"facing": "south"
}
},
{
- "id": 10892,
+ "id": 11033,
"properties": {
"facing": "west"
}
},
{
- "id": 10893,
+ "id": 11034,
"properties": {
"facing": "east"
}
@@ -240698,6 +241721,10 @@
},
"minecraft:zombie_head": {
"properties": {
+ "powered": [
+ "true",
+ "false"
+ ],
"rotation": [
"0",
"1",
@@ -240719,99 +241746,227 @@
},
"states": [
{
- "default": true,
- "id": 8867,
+ "id": 8907,
"properties": {
+ "powered": "true",
"rotation": "0"
}
},
{
- "id": 8868,
+ "id": 8908,
"properties": {
+ "powered": "true",
"rotation": "1"
}
},
{
- "id": 8869,
+ "id": 8909,
"properties": {
+ "powered": "true",
"rotation": "2"
}
},
{
- "id": 8870,
+ "id": 8910,
"properties": {
+ "powered": "true",
"rotation": "3"
}
},
{
- "id": 8871,
+ "id": 8911,
"properties": {
+ "powered": "true",
"rotation": "4"
}
},
{
- "id": 8872,
+ "id": 8912,
"properties": {
+ "powered": "true",
"rotation": "5"
}
},
{
- "id": 8873,
+ "id": 8913,
"properties": {
+ "powered": "true",
"rotation": "6"
}
},
{
- "id": 8874,
+ "id": 8914,
"properties": {
+ "powered": "true",
"rotation": "7"
}
},
{
- "id": 8875,
+ "id": 8915,
"properties": {
+ "powered": "true",
"rotation": "8"
}
},
{
- "id": 8876,
+ "id": 8916,
"properties": {
+ "powered": "true",
"rotation": "9"
}
},
{
- "id": 8877,
+ "id": 8917,
"properties": {
+ "powered": "true",
"rotation": "10"
}
},
{
- "id": 8878,
+ "id": 8918,
"properties": {
+ "powered": "true",
"rotation": "11"
}
},
{
- "id": 8879,
+ "id": 8919,
"properties": {
+ "powered": "true",
"rotation": "12"
}
},
{
- "id": 8880,
+ "id": 8920,
"properties": {
+ "powered": "true",
"rotation": "13"
}
},
{
- "id": 8881,
+ "id": 8921,
"properties": {
+ "powered": "true",
"rotation": "14"
}
},
{
- "id": 8882,
+ "id": 8922,
"properties": {
+ "powered": "true",
+ "rotation": "15"
+ }
+ },
+ {
+ "default": true,
+ "id": 8923,
+ "properties": {
+ "powered": "false",
+ "rotation": "0"
+ }
+ },
+ {
+ "id": 8924,
+ "properties": {
+ "powered": "false",
+ "rotation": "1"
+ }
+ },
+ {
+ "id": 8925,
+ "properties": {
+ "powered": "false",
+ "rotation": "2"
+ }
+ },
+ {
+ "id": 8926,
+ "properties": {
+ "powered": "false",
+ "rotation": "3"
+ }
+ },
+ {
+ "id": 8927,
+ "properties": {
+ "powered": "false",
+ "rotation": "4"
+ }
+ },
+ {
+ "id": 8928,
+ "properties": {
+ "powered": "false",
+ "rotation": "5"
+ }
+ },
+ {
+ "id": 8929,
+ "properties": {
+ "powered": "false",
+ "rotation": "6"
+ }
+ },
+ {
+ "id": 8930,
+ "properties": {
+ "powered": "false",
+ "rotation": "7"
+ }
+ },
+ {
+ "id": 8931,
+ "properties": {
+ "powered": "false",
+ "rotation": "8"
+ }
+ },
+ {
+ "id": 8932,
+ "properties": {
+ "powered": "false",
+ "rotation": "9"
+ }
+ },
+ {
+ "id": 8933,
+ "properties": {
+ "powered": "false",
+ "rotation": "10"
+ }
+ },
+ {
+ "id": 8934,
+ "properties": {
+ "powered": "false",
+ "rotation": "11"
+ }
+ },
+ {
+ "id": 8935,
+ "properties": {
+ "powered": "false",
+ "rotation": "12"
+ }
+ },
+ {
+ "id": 8936,
+ "properties": {
+ "powered": "false",
+ "rotation": "13"
+ }
+ },
+ {
+ "id": 8937,
+ "properties": {
+ "powered": "false",
+ "rotation": "14"
+ }
+ },
+ {
+ "id": 8938,
+ "properties": {
+ "powered": "false",
"rotation": "15"
}
}
@@ -240824,32 +241979,68 @@
"south",
"west",
"east"
+ ],
+ "powered": [
+ "true",
+ "false"
]
},
"states": [
+ {
+ "id": 8939,
+ "properties": {
+ "facing": "north",
+ "powered": "true"
+ }
+ },
{
"default": true,
- "id": 8883,
+ "id": 8940,
"properties": {
- "facing": "north"
+ "facing": "north",
+ "powered": "false"
}
},
{
- "id": 8884,
+ "id": 8941,
"properties": {
- "facing": "south"
+ "facing": "south",
+ "powered": "true"
}
},
{
- "id": 8885,
+ "id": 8942,
"properties": {
- "facing": "west"
+ "facing": "south",
+ "powered": "false"
}
},
{
- "id": 8886,
+ "id": 8943,
"properties": {
- "facing": "east"
+ "facing": "west",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8944,
+ "properties": {
+ "facing": "west",
+ "powered": "false"
+ }
+ },
+ {
+ "id": 8945,
+ "properties": {
+ "facing": "east",
+ "powered": "true"
+ }
+ },
+ {
+ "id": 8946,
+ "properties": {
+ "facing": "east",
+ "powered": "false"
}
}
]
diff --git a/src/main/resources/dimension_registry.json b/src/main/resources/dimension_registry.json
index 5a34f06..a0a07ba 100644
--- a/src/main/resources/dimension_registry.json
+++ b/src/main/resources/dimension_registry.json
@@ -457,6 +457,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:coast"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -489,6 +493,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:dune"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -521,6 +529,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:eye"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -553,6 +565,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:host"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -585,6 +601,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:raiser"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -617,6 +637,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:rib"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -649,6 +673,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:sentry"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -681,6 +709,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:shaper"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -713,6 +745,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:silence"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -745,6 +781,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:snout"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -777,6 +817,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:spire"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -809,6 +853,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:tide"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -841,6 +889,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:vex"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -873,6 +925,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:ward"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -905,6 +961,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:wayfinder"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
@@ -937,6 +997,10 @@
"asset_id": {
"type": "StringTag",
"value": "minecraft:wild"
+ },
+ "decal": {
+ "type": "ByteTag",
+ "value": 0
}
}
}
diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json
index e6c6505..8725fe5 100644
--- a/src/main/resources/mapping.json
+++ b/src/main/resources/mapping.json
@@ -4,69 +4,79 @@
},
"LoginIn": {
"0x00": "PacketLoginInLoginStart",
- "0x02": "PacketLoginInPluginMessaging"
+ "0x02": "PacketLoginInPluginMessaging",
+ "0x03": "ServerboundLoginAcknowledgedPacket"
},
"LoginOut": {
"PacketLoginOutLoginSuccess": "0x02",
"PacketLoginOutDisconnect": "0x00",
"PacketLoginOutPluginMessaging": "0x04"
},
+ "ConfigurationIn": {
+ "0x02": "ServerboundFinishConfigurationPacket"
+ },
+ "ConfigurationOut": {
+ "ClientboundRegistryDataPacket": "0x05",
+ "ClientboundFinishConfigurationPacket": "0x02"
+ },
"PlayIn": {
- "0x12": "PacketPlayInKeepAlive",
+ "0x14": "PacketPlayInKeepAlive",
"0x04": "ServerboundChatCommandPacket",
"0x05": "PacketPlayInChat",
- "0x15": "PacketPlayInPositionAndLook",
- "0x14": "PacketPlayInPosition",
- "0x16": "PacketPlayInRotation",
- "0x0D": "PacketPlayInPluginMessaging",
- "0x09": "PacketPlayInTabComplete",
- "0x28": "PacketPlayInHeldItemChange",
- "0x24": "PacketPlayInResourcePackStatus",
- "0x32": "PacketPlayInBlockPlace",
- "0x31": "PacketPlayInUseItem",
- "0x2B": "PacketPlayInSetCreativeSlot",
- "0x0B": "PacketPlayInWindowClick",
- "0x0C": "PacketPlayInCloseWindow",
- "0x1A": "PacketPlayInPickItem",
- "0x1D": "PacketPlayInBlockDig",
- "0x23": "PacketPlayInItemName"
+ "0x16": "PacketPlayInPosition",
+ "0x17": "PacketPlayInPositionAndLook",
+ "0x18": "PacketPlayInRotation",
+ "0x0F": "PacketPlayInPluginMessaging",
+ "0x0A": "PacketPlayInTabComplete",
+ "0x2B": "PacketPlayInHeldItemChange",
+ "0x27": "PacketPlayInResourcePackStatus",
+ "0x34": "PacketPlayInUseItem",
+ "0x35": "PacketPlayInBlockPlace",
+ "0x2E": "PacketPlayInSetCreativeSlot",
+ "0x0D": "PacketPlayInWindowClick",
+ "0x0E": "PacketPlayInCloseWindow",
+ "0x1C": "PacketPlayInPickItem",
+ "0x20": "PacketPlayInBlockDig",
+ "0x26": "PacketPlayInItemName"
},
"PlayOut": {
- "PacketPlayOutLogin": "0x28",
- "PacketPlayOutPositionAndLook": "0x3C",
- "PacketPlayOutSpawnPosition": "0x50",
- "ClientboundSystemChatPacket": "0x64",
- "PacketPlayOutPlayerAbilities": "0x34",
- "ClientboundLevelChunkWithLightPacket": "0x24",
- "PacketPlayOutUnloadChunk": "0x1E",
- "PacketPlayOutKeepAlive": "0x23",
- "PacketPlayOutPlayerInfo": "0x3A",
- "PacketPlayOutUpdateViewPosition": "0x4E",
- "PacketPlayOutDisconnect": "0x1A",
- "PacketPlayOutPluginMessaging": "0x17",
- "PacketPlayOutTabComplete": "0x0F",
- "PacketPlayOutDeclareCommands": "0x10",
- "PacketPlayOutRespawn": "0x41",
- "PacketPlayOutGameState": "0x1F",
- "PacketPlayOutEntityDestroy": "0x3E",
- "PacketPlayOutEntityMetadata": "0x52",
+ "PacketPlayOutLogin": "0x29",
+ "PacketPlayOutPositionAndLook": "0x3E",
+ "PacketPlayOutSpawnPosition": "0x52",
+ "ClientboundSystemChatPacket": "0x67",
+ "PacketPlayOutPlayerAbilities": "0x36",
+ "ClientboundLevelChunkWithLightPacket": "0x25",
+ "PacketPlayOutUnloadChunk": "0x1F",
+ "PacketPlayOutKeepAlive": "0x24",
+ "PacketPlayOutPlayerInfo": "0x3C",
+ "PacketPlayOutUpdateViewPosition": "0x50",
+ "PacketPlayOutDisconnect": "0x1B",
+ "PacketPlayOutPluginMessaging": "0x18",
+ "PacketPlayOutTabComplete": "0x10",
+ "PacketPlayOutDeclareCommands": "0x11",
+ "PacketPlayOutRespawn": "0x43",
+ "PacketPlayOutGameState": "0x20",
+ "PacketPlayOutEntityDestroy": "0x40",
+ "PacketPlayOutEntityMetadata": "0x54",
"PacketPlayOutSpawnEntity": "0x01",
- "PacketPlayOutHeldItemChange": "0x4D",
- "PacketPlayOutPlayerListHeaderFooter": "0x65",
- "PacketPlayOutResourcePackSend": "0x40",
- "ClientboundSetTitlesAnimationPacket": "0x60",
- "ClientboundSetTitleTextPacket": "0x5F",
- "ClientboundSetSubtitleTextPacket": "0x5D",
- "ClientboundSetActionBarTextPacket": "0x46",
- "ClientboundClearTitlesPacket": "0x0E",
- "PacketPlayOutBoss": "0x0B",
- "PacketPlayOutNamedSoundEffect": "0x62",
- "PacketPlayOutStopSound": "0x63",
- "PacketPlayOutWindowItems": "0x12",
- "PacketPlayOutSetSlot": "0x14",
- "PacketPlayOutOpenWindow": "0x30",
- "PacketPlayOutCloseWindow": "0x11",
- "PacketPlayOutWindowData": "0x13"
+ "PacketPlayOutHeldItemChange": "0x4F",
+ "PacketPlayOutPlayerListHeaderFooter": "0x68",
+ "PacketPlayOutResourcePackSend": "0x42",
+ "ClientboundSetTitlesAnimationPacket": "0x62",
+ "ClientboundSetTitleTextPacket": "0x61",
+ "ClientboundSetSubtitleTextPacket": "0x5F",
+ "ClientboundSetActionBarTextPacket": "0x48",
+ "ClientboundClearTitlesPacket": "0x0F",
+ "PacketPlayOutBoss": "0x0A",
+ "PacketPlayOutNamedSoundEffect": "0x64",
+ "PacketPlayOutStopSound": "0x66",
+ "PacketPlayOutWindowItems": "0x13",
+ "PacketPlayOutSetSlot": "0x15",
+ "PacketPlayOutOpenWindow": "0x31",
+ "PacketPlayOutCloseWindow": "0x12",
+ "PacketPlayOutWindowData": "0x14",
+ "ClientboundChunkBatchFinishedPacket": "0x0C",
+ "ClientboundChunkBatchStartPacket": "0x0D"
},
"StatusIn": {
"0x01": "PacketStatusInPing",
diff --git a/src/main/resources/registries.json b/src/main/resources/registries.json
index 02784c8..fb9d3a8 100644
--- a/src/main/resources/registries.json
+++ b/src/main/resources/registries.json
@@ -111,6 +111,9 @@
"minecraft:generic.luck": {
"protocol_id": 10
},
+ "minecraft:generic.max_absorption": {
+ "protocol_id": 11
+ },
"minecraft:generic.max_health": {
"protocol_id": 0
},
@@ -118,10 +121,10 @@
"protocol_id": 3
},
"minecraft:horse.jump_strength": {
- "protocol_id": 12
+ "protocol_id": 13
},
"minecraft:zombie.spawn_reinforcements": {
- "protocol_id": 11
+ "protocol_id": 12
}
},
"protocol_id": 20
@@ -4615,6 +4618,9 @@
"minecraft:elytra_glide": {
"protocol_id": 13
},
+ "minecraft:entity_action": {
+ "protocol_id": 20
+ },
"minecraft:entity_damage": {
"protocol_id": 14
},
@@ -4633,59 +4639,53 @@
"minecraft:entity_place": {
"protocol_id": 19
},
- "minecraft:entity_roar": {
- "protocol_id": 20
- },
- "minecraft:entity_shake": {
+ "minecraft:equip": {
"protocol_id": 21
},
- "minecraft:equip": {
+ "minecraft:explode": {
"protocol_id": 22
},
- "minecraft:explode": {
+ "minecraft:flap": {
"protocol_id": 23
},
- "minecraft:flap": {
+ "minecraft:fluid_pickup": {
"protocol_id": 24
},
- "minecraft:fluid_pickup": {
+ "minecraft:fluid_place": {
"protocol_id": 25
},
- "minecraft:fluid_place": {
+ "minecraft:hit_ground": {
"protocol_id": 26
},
- "minecraft:hit_ground": {
+ "minecraft:instrument_play": {
"protocol_id": 27
},
- "minecraft:instrument_play": {
+ "minecraft:item_interact_finish": {
"protocol_id": 28
},
- "minecraft:item_interact_finish": {
+ "minecraft:item_interact_start": {
"protocol_id": 29
},
- "minecraft:item_interact_start": {
+ "minecraft:jukebox_play": {
"protocol_id": 30
},
- "minecraft:jukebox_play": {
+ "minecraft:jukebox_stop_play": {
"protocol_id": 31
},
- "minecraft:jukebox_stop_play": {
+ "minecraft:lightning_strike": {
"protocol_id": 32
},
- "minecraft:lightning_strike": {
+ "minecraft:note_block_play": {
"protocol_id": 33
},
- "minecraft:note_block_play": {
+ "minecraft:prime_fuse": {
"protocol_id": 34
},
- "minecraft:prime_fuse": {
+ "minecraft:projectile_land": {
"protocol_id": 35
},
- "minecraft:projectile_land": {
- "protocol_id": 36
- },
"minecraft:projectile_shoot": {
- "protocol_id": 37
+ "protocol_id": 36
},
"minecraft:resonate_1": {
"protocol_id": 45
@@ -4733,24 +4733,27 @@
"protocol_id": 53
},
"minecraft:sculk_sensor_tendrils_clicking": {
- "protocol_id": 38
+ "protocol_id": 37
},
"minecraft:shear": {
- "protocol_id": 39
+ "protocol_id": 38
},
"minecraft:shriek": {
- "protocol_id": 40
+ "protocol_id": 39
},
"minecraft:splash": {
- "protocol_id": 41
+ "protocol_id": 40
},
"minecraft:step": {
- "protocol_id": 42
+ "protocol_id": 41
},
"minecraft:swim": {
- "protocol_id": 43
+ "protocol_id": 42
},
"minecraft:teleport": {
+ "protocol_id": 43
+ },
+ "minecraft:unequip": {
"protocol_id": 44
}
},
@@ -8702,6 +8705,9 @@
"minecraft:reference": {
"protocol_id": 25
},
+ "minecraft:sequence": {
+ "protocol_id": 26
+ },
"minecraft:set_attributes": {
"protocol_id": 8
},
@@ -9189,103 +9195,103 @@
"minecraft:mob_effect": {
"entries": {
"minecraft:absorption": {
- "protocol_id": 22
- },
- "minecraft:bad_omen": {
- "protocol_id": 31
- },
- "minecraft:blindness": {
- "protocol_id": 15
- },
- "minecraft:conduit_power": {
- "protocol_id": 29
- },
- "minecraft:darkness": {
- "protocol_id": 33
- },
- "minecraft:dolphins_grace": {
- "protocol_id": 30
- },
- "minecraft:fire_resistance": {
- "protocol_id": 12
- },
- "minecraft:glowing": {
- "protocol_id": 24
- },
- "minecraft:haste": {
- "protocol_id": 3
- },
- "minecraft:health_boost": {
"protocol_id": 21
},
- "minecraft:hero_of_the_village": {
- "protocol_id": 32
+ "minecraft:bad_omen": {
+ "protocol_id": 30
},
- "minecraft:hunger": {
- "protocol_id": 17
- },
- "minecraft:instant_damage": {
- "protocol_id": 7
- },
- "minecraft:instant_health": {
- "protocol_id": 6
- },
- "minecraft:invisibility": {
+ "minecraft:blindness": {
"protocol_id": 14
},
- "minecraft:jump_boost": {
- "protocol_id": 8
- },
- "minecraft:levitation": {
- "protocol_id": 25
- },
- "minecraft:luck": {
- "protocol_id": 26
- },
- "minecraft:mining_fatigue": {
- "protocol_id": 4
- },
- "minecraft:nausea": {
- "protocol_id": 9
- },
- "minecraft:night_vision": {
- "protocol_id": 16
- },
- "minecraft:poison": {
- "protocol_id": 19
- },
- "minecraft:regeneration": {
- "protocol_id": 10
- },
- "minecraft:resistance": {
- "protocol_id": 11
- },
- "minecraft:saturation": {
- "protocol_id": 23
- },
- "minecraft:slow_falling": {
+ "minecraft:conduit_power": {
"protocol_id": 28
},
- "minecraft:slowness": {
+ "minecraft:darkness": {
+ "protocol_id": 32
+ },
+ "minecraft:dolphins_grace": {
+ "protocol_id": 29
+ },
+ "minecraft:fire_resistance": {
+ "protocol_id": 11
+ },
+ "minecraft:glowing": {
+ "protocol_id": 23
+ },
+ "minecraft:haste": {
"protocol_id": 2
},
- "minecraft:speed": {
- "protocol_id": 1
+ "minecraft:health_boost": {
+ "protocol_id": 20
},
- "minecraft:strength": {
+ "minecraft:hero_of_the_village": {
+ "protocol_id": 31
+ },
+ "minecraft:hunger": {
+ "protocol_id": 16
+ },
+ "minecraft:instant_damage": {
+ "protocol_id": 6
+ },
+ "minecraft:instant_health": {
"protocol_id": 5
},
- "minecraft:unluck": {
- "protocol_id": 27
- },
- "minecraft:water_breathing": {
+ "minecraft:invisibility": {
"protocol_id": 13
},
- "minecraft:weakness": {
+ "minecraft:jump_boost": {
+ "protocol_id": 7
+ },
+ "minecraft:levitation": {
+ "protocol_id": 24
+ },
+ "minecraft:luck": {
+ "protocol_id": 25
+ },
+ "minecraft:mining_fatigue": {
+ "protocol_id": 3
+ },
+ "minecraft:nausea": {
+ "protocol_id": 8
+ },
+ "minecraft:night_vision": {
+ "protocol_id": 15
+ },
+ "minecraft:poison": {
"protocol_id": 18
},
+ "minecraft:regeneration": {
+ "protocol_id": 9
+ },
+ "minecraft:resistance": {
+ "protocol_id": 10
+ },
+ "minecraft:saturation": {
+ "protocol_id": 22
+ },
+ "minecraft:slow_falling": {
+ "protocol_id": 27
+ },
+ "minecraft:slowness": {
+ "protocol_id": 1
+ },
+ "minecraft:speed": {
+ "protocol_id": 0
+ },
+ "minecraft:strength": {
+ "protocol_id": 4
+ },
+ "minecraft:unluck": {
+ "protocol_id": 26
+ },
+ "minecraft:water_breathing": {
+ "protocol_id": 12
+ },
+ "minecraft:weakness": {
+ "protocol_id": 17
+ },
"minecraft:wither": {
- "protocol_id": 20
+ "protocol_id": 19
}
},
"protocol_id": 3
@@ -11129,7 +11135,7 @@
"protocol_id": 700
},
"minecraft:block.lily_pad.place": {
- "protocol_id": 1362
+ "protocol_id": 1368
},
"minecraft:block.lodestone.break": {
"protocol_id": 714
@@ -11795,7 +11801,7 @@
"protocol_id": 1150
},
"minecraft:block.sign.waxed_interact_fail": {
- "protocol_id": 1393
+ "protocol_id": 1399
},
"minecraft:block.slime_block.break": {
"protocol_id": 1183
@@ -11893,6 +11899,24 @@
"minecraft:block.soul_soil.step": {
"protocol_id": 1201
},
+ "minecraft:block.sponge.absorb": {
+ "protocol_id": 1263
+ },
+ "minecraft:block.sponge.break": {
+ "protocol_id": 1258
+ },
+ "minecraft:block.sponge.fall": {
+ "protocol_id": 1259
+ },
+ "minecraft:block.sponge.hit": {
+ "protocol_id": 1260
+ },
+ "minecraft:block.sponge.place": {
+ "protocol_id": 1261
+ },
+ "minecraft:block.sponge.step": {
+ "protocol_id": 1262
+ },
"minecraft:block.spore_blossom.break": {
"protocol_id": 1206
},
@@ -11924,32 +11948,32 @@
"protocol_id": 860
},
"minecraft:block.stone.break": {
- "protocol_id": 1264
- },
- "minecraft:block.stone.fall": {
- "protocol_id": 1267
- },
- "minecraft:block.stone.hit": {
- "protocol_id": 1268
- },
- "minecraft:block.stone.place": {
- "protocol_id": 1269
- },
- "minecraft:block.stone.step": {
- "protocol_id": 1272
- },
- "minecraft:block.stone_button.click_off": {
- "protocol_id": 1265
- },
- "minecraft:block.stone_button.click_on": {
- "protocol_id": 1266
- },
- "minecraft:block.stone_pressure_plate.click_off": {
"protocol_id": 1270
},
- "minecraft:block.stone_pressure_plate.click_on": {
+ "minecraft:block.stone.fall": {
+ "protocol_id": 1273
+ },
+ "minecraft:block.stone.hit": {
+ "protocol_id": 1274
+ },
+ "minecraft:block.stone.place": {
+ "protocol_id": 1275
+ },
+ "minecraft:block.stone.step": {
+ "protocol_id": 1278
+ },
+ "minecraft:block.stone_button.click_off": {
"protocol_id": 1271
},
+ "minecraft:block.stone_button.click_on": {
+ "protocol_id": 1272
+ },
+ "minecraft:block.stone_pressure_plate.click_off": {
+ "protocol_id": 1276
+ },
+ "minecraft:block.stone_pressure_plate.click_on": {
+ "protocol_id": 1277
+ },
"minecraft:block.suspicious_gravel.break": {
"protocol_id": 482
},
@@ -11981,55 +12005,55 @@
"protocol_id": 478
},
"minecraft:block.sweet_berry_bush.break": {
- "protocol_id": 1277
+ "protocol_id": 1283
},
"minecraft:block.sweet_berry_bush.pick_berries": {
- "protocol_id": 1279
+ "protocol_id": 1285
},
"minecraft:block.sweet_berry_bush.place": {
- "protocol_id": 1278
+ "protocol_id": 1284
},
"minecraft:block.tripwire.attach": {
- "protocol_id": 1295
+ "protocol_id": 1301
},
"minecraft:block.tripwire.click_off": {
- "protocol_id": 1296
+ "protocol_id": 1302
},
"minecraft:block.tripwire.click_on": {
- "protocol_id": 1297
- },
- "minecraft:block.tripwire.detach": {
- "protocol_id": 1298
- },
- "minecraft:block.tuff.break": {
"protocol_id": 1303
},
- "minecraft:block.tuff.fall": {
- "protocol_id": 1307
- },
- "minecraft:block.tuff.hit": {
- "protocol_id": 1306
- },
- "minecraft:block.tuff.place": {
- "protocol_id": 1305
- },
- "minecraft:block.tuff.step": {
+ "minecraft:block.tripwire.detach": {
"protocol_id": 1304
},
+ "minecraft:block.tuff.break": {
+ "protocol_id": 1309
+ },
+ "minecraft:block.tuff.fall": {
+ "protocol_id": 1313
+ },
+ "minecraft:block.tuff.hit": {
+ "protocol_id": 1312
+ },
+ "minecraft:block.tuff.place": {
+ "protocol_id": 1311
+ },
+ "minecraft:block.tuff.step": {
+ "protocol_id": 1310
+ },
"minecraft:block.vine.break": {
- "protocol_id": 1357
+ "protocol_id": 1363
},
"minecraft:block.vine.fall": {
- "protocol_id": 1358
+ "protocol_id": 1364
},
"minecraft:block.vine.hit": {
- "protocol_id": 1359
+ "protocol_id": 1365
},
"minecraft:block.vine.place": {
- "protocol_id": 1360
+ "protocol_id": 1366
},
"minecraft:block.vine.step": {
- "protocol_id": 1361
+ "protocol_id": 1367
},
"minecraft:block.wart_block.break": {
"protocol_id": 884
@@ -12047,7 +12071,7 @@
"protocol_id": 885
},
"minecraft:block.water.ambient": {
- "protocol_id": 1394
+ "protocol_id": 1400
},
"minecraft:block.weeping_vines.break": {
"protocol_id": 879
@@ -12065,76 +12089,91 @@
"protocol_id": 880
},
"minecraft:block.wet_grass.break": {
- "protocol_id": 1397
+ "protocol_id": 1403
},
"minecraft:block.wet_grass.fall": {
- "protocol_id": 1398
+ "protocol_id": 1404
},
"minecraft:block.wet_grass.hit": {
- "protocol_id": 1399
+ "protocol_id": 1405
},
"minecraft:block.wet_grass.place": {
- "protocol_id": 1400
+ "protocol_id": 1406
},
"minecraft:block.wet_grass.step": {
- "protocol_id": 1401
+ "protocol_id": 1407
+ },
+ "minecraft:block.wet_sponge.break": {
+ "protocol_id": 1408
+ },
+ "minecraft:block.wet_sponge.fall": {
+ "protocol_id": 1409
+ },
+ "minecraft:block.wet_sponge.hit": {
+ "protocol_id": 1410
+ },
+ "minecraft:block.wet_sponge.place": {
+ "protocol_id": 1411
+ },
+ "minecraft:block.wet_sponge.step": {
+ "protocol_id": 1412
},
"minecraft:block.wood.break": {
- "protocol_id": 1435
+ "protocol_id": 1446
},
"minecraft:block.wood.fall": {
- "protocol_id": 1436
+ "protocol_id": 1447
},
"minecraft:block.wood.hit": {
- "protocol_id": 1437
+ "protocol_id": 1448
},
"minecraft:block.wood.place": {
- "protocol_id": 1438
+ "protocol_id": 1449
},
"minecraft:block.wood.step": {
- "protocol_id": 1439
+ "protocol_id": 1450
},
"minecraft:block.wooden_button.click_off": {
- "protocol_id": 1431
- },
- "minecraft:block.wooden_button.click_on": {
- "protocol_id": 1432
- },
- "minecraft:block.wooden_door.close": {
- "protocol_id": 1427
- },
- "minecraft:block.wooden_door.open": {
- "protocol_id": 1428
- },
- "minecraft:block.wooden_pressure_plate.click_off": {
- "protocol_id": 1433
- },
- "minecraft:block.wooden_pressure_plate.click_on": {
- "protocol_id": 1434
- },
- "minecraft:block.wooden_trapdoor.close": {
- "protocol_id": 1429
- },
- "minecraft:block.wooden_trapdoor.open": {
- "protocol_id": 1430
- },
- "minecraft:block.wool.break": {
- "protocol_id": 1440
- },
- "minecraft:block.wool.fall": {
- "protocol_id": 1441
- },
- "minecraft:block.wool.hit": {
"protocol_id": 1442
},
- "minecraft:block.wool.place": {
+ "minecraft:block.wooden_button.click_on": {
"protocol_id": 1443
},
- "minecraft:block.wool.step": {
+ "minecraft:block.wooden_door.close": {
+ "protocol_id": 1438
+ },
+ "minecraft:block.wooden_door.open": {
+ "protocol_id": 1439
+ },
+ "minecraft:block.wooden_pressure_plate.click_off": {
"protocol_id": 1444
},
+ "minecraft:block.wooden_pressure_plate.click_on": {
+ "protocol_id": 1445
+ },
+ "minecraft:block.wooden_trapdoor.close": {
+ "protocol_id": 1440
+ },
+ "minecraft:block.wooden_trapdoor.open": {
+ "protocol_id": 1441
+ },
+ "minecraft:block.wool.break": {
+ "protocol_id": 1451
+ },
+ "minecraft:block.wool.fall": {
+ "protocol_id": 1452
+ },
+ "minecraft:block.wool.hit": {
+ "protocol_id": 1453
+ },
+ "minecraft:block.wool.place": {
+ "protocol_id": 1454
+ },
+ "minecraft:block.wool.step": {
+ "protocol_id": 1455
+ },
"minecraft:enchant.thorns.hit": {
- "protocol_id": 1284
+ "protocol_id": 1290
},
"minecraft:entity.allay.ambient_with_item": {
"protocol_id": 0
@@ -13679,28 +13718,28 @@
"protocol_id": 1257
},
"minecraft:entity.squid.ambient": {
- "protocol_id": 1260
+ "protocol_id": 1266
},
"minecraft:entity.squid.death": {
- "protocol_id": 1261
+ "protocol_id": 1267
},
"minecraft:entity.squid.hurt": {
- "protocol_id": 1262
+ "protocol_id": 1268
},
"minecraft:entity.squid.squirt": {
- "protocol_id": 1263
+ "protocol_id": 1269
},
"minecraft:entity.stray.ambient": {
- "protocol_id": 1273
+ "protocol_id": 1279
},
"minecraft:entity.stray.death": {
- "protocol_id": 1274
+ "protocol_id": 1280
},
"minecraft:entity.stray.hurt": {
- "protocol_id": 1275
+ "protocol_id": 1281
},
"minecraft:entity.stray.step": {
- "protocol_id": 1276
+ "protocol_id": 1282
},
"minecraft:entity.strider.ambient": {
"protocol_id": 1211
@@ -13730,404 +13769,404 @@
"protocol_id": 1217
},
"minecraft:entity.tadpole.death": {
- "protocol_id": 1280
+ "protocol_id": 1286
},
"minecraft:entity.tadpole.flop": {
- "protocol_id": 1281
+ "protocol_id": 1287
},
"minecraft:entity.tadpole.grow_up": {
- "protocol_id": 1282
+ "protocol_id": 1288
},
"minecraft:entity.tadpole.hurt": {
- "protocol_id": 1283
+ "protocol_id": 1289
},
"minecraft:entity.tnt.primed": {
- "protocol_id": 1285
+ "protocol_id": 1291
},
"minecraft:entity.tropical_fish.ambient": {
- "protocol_id": 1299
+ "protocol_id": 1305
},
"minecraft:entity.tropical_fish.death": {
- "protocol_id": 1300
+ "protocol_id": 1306
},
"minecraft:entity.tropical_fish.flop": {
- "protocol_id": 1301
+ "protocol_id": 1307
},
"minecraft:entity.tropical_fish.hurt": {
- "protocol_id": 1302
- },
- "minecraft:entity.turtle.ambient_land": {
"protocol_id": 1308
},
- "minecraft:entity.turtle.death": {
- "protocol_id": 1309
- },
- "minecraft:entity.turtle.death_baby": {
- "protocol_id": 1310
- },
- "minecraft:entity.turtle.egg_break": {
- "protocol_id": 1311
- },
- "minecraft:entity.turtle.egg_crack": {
- "protocol_id": 1312
- },
- "minecraft:entity.turtle.egg_hatch": {
- "protocol_id": 1313
- },
- "minecraft:entity.turtle.hurt": {
+ "minecraft:entity.turtle.ambient_land": {
"protocol_id": 1314
},
- "minecraft:entity.turtle.hurt_baby": {
+ "minecraft:entity.turtle.death": {
"protocol_id": 1315
},
- "minecraft:entity.turtle.lay_egg": {
+ "minecraft:entity.turtle.death_baby": {
"protocol_id": 1316
},
- "minecraft:entity.turtle.shamble": {
+ "minecraft:entity.turtle.egg_break": {
"protocol_id": 1317
},
- "minecraft:entity.turtle.shamble_baby": {
+ "minecraft:entity.turtle.egg_crack": {
"protocol_id": 1318
},
- "minecraft:entity.turtle.swim": {
+ "minecraft:entity.turtle.egg_hatch": {
"protocol_id": 1319
},
+ "minecraft:entity.turtle.hurt": {
+ "protocol_id": 1320
+ },
+ "minecraft:entity.turtle.hurt_baby": {
+ "protocol_id": 1321
+ },
+ "minecraft:entity.turtle.lay_egg": {
+ "protocol_id": 1322
+ },
+ "minecraft:entity.turtle.shamble": {
+ "protocol_id": 1323
+ },
+ "minecraft:entity.turtle.shamble_baby": {
+ "protocol_id": 1324
+ },
+ "minecraft:entity.turtle.swim": {
+ "protocol_id": 1325
+ },
"minecraft:entity.vex.ambient": {
- "protocol_id": 1329
- },
- "minecraft:entity.vex.charge": {
- "protocol_id": 1330
- },
- "minecraft:entity.vex.death": {
- "protocol_id": 1331
- },
- "minecraft:entity.vex.hurt": {
- "protocol_id": 1332
- },
- "minecraft:entity.villager.ambient": {
- "protocol_id": 1333
- },
- "minecraft:entity.villager.celebrate": {
- "protocol_id": 1334
- },
- "minecraft:entity.villager.death": {
"protocol_id": 1335
},
- "minecraft:entity.villager.hurt": {
+ "minecraft:entity.vex.charge": {
"protocol_id": 1336
},
- "minecraft:entity.villager.no": {
+ "minecraft:entity.vex.death": {
"protocol_id": 1337
},
- "minecraft:entity.villager.trade": {
+ "minecraft:entity.vex.hurt": {
"protocol_id": 1338
},
- "minecraft:entity.villager.work_armorer": {
- "protocol_id": 1340
- },
- "minecraft:entity.villager.work_butcher": {
- "protocol_id": 1341
- },
- "minecraft:entity.villager.work_cartographer": {
- "protocol_id": 1342
- },
- "minecraft:entity.villager.work_cleric": {
- "protocol_id": 1343
- },
- "minecraft:entity.villager.work_farmer": {
- "protocol_id": 1344
- },
- "minecraft:entity.villager.work_fisherman": {
- "protocol_id": 1345
- },
- "minecraft:entity.villager.work_fletcher": {
- "protocol_id": 1346
- },
- "minecraft:entity.villager.work_leatherworker": {
- "protocol_id": 1347
- },
- "minecraft:entity.villager.work_librarian": {
- "protocol_id": 1348
- },
- "minecraft:entity.villager.work_mason": {
- "protocol_id": 1349
- },
- "minecraft:entity.villager.work_shepherd": {
- "protocol_id": 1350
- },
- "minecraft:entity.villager.work_toolsmith": {
- "protocol_id": 1351
- },
- "minecraft:entity.villager.work_weaponsmith": {
- "protocol_id": 1352
- },
- "minecraft:entity.villager.yes": {
+ "minecraft:entity.villager.ambient": {
"protocol_id": 1339
},
- "minecraft:entity.vindicator.ambient": {
+ "minecraft:entity.villager.celebrate": {
+ "protocol_id": 1340
+ },
+ "minecraft:entity.villager.death": {
+ "protocol_id": 1341
+ },
+ "minecraft:entity.villager.hurt": {
+ "protocol_id": 1342
+ },
+ "minecraft:entity.villager.no": {
+ "protocol_id": 1343
+ },
+ "minecraft:entity.villager.trade": {
+ "protocol_id": 1344
+ },
+ "minecraft:entity.villager.work_armorer": {
+ "protocol_id": 1346
+ },
+ "minecraft:entity.villager.work_butcher": {
+ "protocol_id": 1347
+ },
+ "minecraft:entity.villager.work_cartographer": {
+ "protocol_id": 1348
+ },
+ "minecraft:entity.villager.work_cleric": {
+ "protocol_id": 1349
+ },
+ "minecraft:entity.villager.work_farmer": {
+ "protocol_id": 1350
+ },
+ "minecraft:entity.villager.work_fisherman": {
+ "protocol_id": 1351
+ },
+ "minecraft:entity.villager.work_fletcher": {
+ "protocol_id": 1352
+ },
+ "minecraft:entity.villager.work_leatherworker": {
"protocol_id": 1353
},
- "minecraft:entity.vindicator.celebrate": {
+ "minecraft:entity.villager.work_librarian": {
"protocol_id": 1354
},
- "minecraft:entity.vindicator.death": {
+ "minecraft:entity.villager.work_mason": {
"protocol_id": 1355
},
- "minecraft:entity.vindicator.hurt": {
+ "minecraft:entity.villager.work_shepherd": {
"protocol_id": 1356
},
+ "minecraft:entity.villager.work_toolsmith": {
+ "protocol_id": 1357
+ },
+ "minecraft:entity.villager.work_weaponsmith": {
+ "protocol_id": 1358
+ },
+ "minecraft:entity.villager.yes": {
+ "protocol_id": 1345
+ },
+ "minecraft:entity.vindicator.ambient": {
+ "protocol_id": 1359
+ },
+ "minecraft:entity.vindicator.celebrate": {
+ "protocol_id": 1360
+ },
+ "minecraft:entity.vindicator.death": {
+ "protocol_id": 1361
+ },
+ "minecraft:entity.vindicator.hurt": {
+ "protocol_id": 1362
+ },
"minecraft:entity.wandering_trader.ambient": {
- "protocol_id": 1363
- },
- "minecraft:entity.wandering_trader.death": {
- "protocol_id": 1364
- },
- "minecraft:entity.wandering_trader.disappeared": {
- "protocol_id": 1365
- },
- "minecraft:entity.wandering_trader.drink_milk": {
- "protocol_id": 1366
- },
- "minecraft:entity.wandering_trader.drink_potion": {
- "protocol_id": 1367
- },
- "minecraft:entity.wandering_trader.hurt": {
- "protocol_id": 1368
- },
- "minecraft:entity.wandering_trader.no": {
"protocol_id": 1369
},
- "minecraft:entity.wandering_trader.reappeared": {
+ "minecraft:entity.wandering_trader.death": {
"protocol_id": 1370
},
- "minecraft:entity.wandering_trader.trade": {
+ "minecraft:entity.wandering_trader.disappeared": {
"protocol_id": 1371
},
- "minecraft:entity.wandering_trader.yes": {
+ "minecraft:entity.wandering_trader.drink_milk": {
"protocol_id": 1372
},
- "minecraft:entity.warden.agitated": {
+ "minecraft:entity.wandering_trader.drink_potion": {
"protocol_id": 1373
},
- "minecraft:entity.warden.ambient": {
+ "minecraft:entity.wandering_trader.hurt": {
"protocol_id": 1374
},
- "minecraft:entity.warden.angry": {
+ "minecraft:entity.wandering_trader.no": {
"protocol_id": 1375
},
- "minecraft:entity.warden.attack_impact": {
+ "minecraft:entity.wandering_trader.reappeared": {
"protocol_id": 1376
},
- "minecraft:entity.warden.death": {
+ "minecraft:entity.wandering_trader.trade": {
"protocol_id": 1377
},
- "minecraft:entity.warden.dig": {
+ "minecraft:entity.wandering_trader.yes": {
"protocol_id": 1378
},
- "minecraft:entity.warden.emerge": {
+ "minecraft:entity.warden.agitated": {
"protocol_id": 1379
},
- "minecraft:entity.warden.heartbeat": {
+ "minecraft:entity.warden.ambient": {
"protocol_id": 1380
},
- "minecraft:entity.warden.hurt": {
+ "minecraft:entity.warden.angry": {
"protocol_id": 1381
},
- "minecraft:entity.warden.listening": {
+ "minecraft:entity.warden.attack_impact": {
"protocol_id": 1382
},
- "minecraft:entity.warden.listening_angry": {
+ "minecraft:entity.warden.death": {
"protocol_id": 1383
},
- "minecraft:entity.warden.nearby_close": {
+ "minecraft:entity.warden.dig": {
"protocol_id": 1384
},
- "minecraft:entity.warden.nearby_closer": {
+ "minecraft:entity.warden.emerge": {
"protocol_id": 1385
},
- "minecraft:entity.warden.nearby_closest": {
+ "minecraft:entity.warden.heartbeat": {
"protocol_id": 1386
},
- "minecraft:entity.warden.roar": {
+ "minecraft:entity.warden.hurt": {
"protocol_id": 1387
},
- "minecraft:entity.warden.sniff": {
+ "minecraft:entity.warden.listening": {
"protocol_id": 1388
},
- "minecraft:entity.warden.sonic_boom": {
+ "minecraft:entity.warden.listening_angry": {
"protocol_id": 1389
},
- "minecraft:entity.warden.sonic_charge": {
+ "minecraft:entity.warden.nearby_close": {
"protocol_id": 1390
},
- "minecraft:entity.warden.step": {
+ "minecraft:entity.warden.nearby_closer": {
"protocol_id": 1391
},
- "minecraft:entity.warden.tendril_clicks": {
+ "minecraft:entity.warden.nearby_closest": {
"protocol_id": 1392
},
+ "minecraft:entity.warden.roar": {
+ "protocol_id": 1393
+ },
+ "minecraft:entity.warden.sniff": {
+ "protocol_id": 1394
+ },
+ "minecraft:entity.warden.sonic_boom": {
+ "protocol_id": 1395
+ },
+ "minecraft:entity.warden.sonic_charge": {
+ "protocol_id": 1396
+ },
+ "minecraft:entity.warden.step": {
+ "protocol_id": 1397
+ },
+ "minecraft:entity.warden.tendril_clicks": {
+ "protocol_id": 1398
+ },
"minecraft:entity.witch.ambient": {
- "protocol_id": 1402
- },
- "minecraft:entity.witch.celebrate": {
- "protocol_id": 1403
- },
- "minecraft:entity.witch.death": {
- "protocol_id": 1404
- },
- "minecraft:entity.witch.drink": {
- "protocol_id": 1405
- },
- "minecraft:entity.witch.hurt": {
- "protocol_id": 1406
- },
- "minecraft:entity.witch.throw": {
- "protocol_id": 1407
- },
- "minecraft:entity.wither.ambient": {
- "protocol_id": 1408
- },
- "minecraft:entity.wither.break_block": {
- "protocol_id": 1409
- },
- "minecraft:entity.wither.death": {
- "protocol_id": 1410
- },
- "minecraft:entity.wither.hurt": {
- "protocol_id": 1411
- },
- "minecraft:entity.wither.shoot": {
- "protocol_id": 1412
- },
- "minecraft:entity.wither.spawn": {
- "protocol_id": 1417
- },
- "minecraft:entity.wither_skeleton.ambient": {
"protocol_id": 1413
},
- "minecraft:entity.wither_skeleton.death": {
+ "minecraft:entity.witch.celebrate": {
"protocol_id": 1414
},
- "minecraft:entity.wither_skeleton.hurt": {
+ "minecraft:entity.witch.death": {
"protocol_id": 1415
},
- "minecraft:entity.wither_skeleton.step": {
+ "minecraft:entity.witch.drink": {
"protocol_id": 1416
},
- "minecraft:entity.wolf.ambient": {
+ "minecraft:entity.witch.hurt": {
+ "protocol_id": 1417
+ },
+ "minecraft:entity.witch.throw": {
"protocol_id": 1418
},
- "minecraft:entity.wolf.death": {
+ "minecraft:entity.wither.ambient": {
"protocol_id": 1419
},
- "minecraft:entity.wolf.growl": {
+ "minecraft:entity.wither.break_block": {
"protocol_id": 1420
},
- "minecraft:entity.wolf.howl": {
+ "minecraft:entity.wither.death": {
"protocol_id": 1421
},
- "minecraft:entity.wolf.hurt": {
+ "minecraft:entity.wither.hurt": {
"protocol_id": 1422
},
- "minecraft:entity.wolf.pant": {
+ "minecraft:entity.wither.shoot": {
"protocol_id": 1423
},
- "minecraft:entity.wolf.shake": {
+ "minecraft:entity.wither.spawn": {
+ "protocol_id": 1428
+ },
+ "minecraft:entity.wither_skeleton.ambient": {
"protocol_id": 1424
},
- "minecraft:entity.wolf.step": {
+ "minecraft:entity.wither_skeleton.death": {
"protocol_id": 1425
},
- "minecraft:entity.wolf.whine": {
+ "minecraft:entity.wither_skeleton.hurt": {
"protocol_id": 1426
},
+ "minecraft:entity.wither_skeleton.step": {
+ "protocol_id": 1427
+ },
+ "minecraft:entity.wolf.ambient": {
+ "protocol_id": 1429
+ },
+ "minecraft:entity.wolf.death": {
+ "protocol_id": 1430
+ },
+ "minecraft:entity.wolf.growl": {
+ "protocol_id": 1431
+ },
+ "minecraft:entity.wolf.howl": {
+ "protocol_id": 1432
+ },
+ "minecraft:entity.wolf.hurt": {
+ "protocol_id": 1433
+ },
+ "minecraft:entity.wolf.pant": {
+ "protocol_id": 1434
+ },
+ "minecraft:entity.wolf.shake": {
+ "protocol_id": 1435
+ },
+ "minecraft:entity.wolf.step": {
+ "protocol_id": 1436
+ },
+ "minecraft:entity.wolf.whine": {
+ "protocol_id": 1437
+ },
"minecraft:entity.zoglin.ambient": {
- "protocol_id": 1445
- },
- "minecraft:entity.zoglin.angry": {
- "protocol_id": 1446
- },
- "minecraft:entity.zoglin.attack": {
- "protocol_id": 1447
- },
- "minecraft:entity.zoglin.death": {
- "protocol_id": 1448
- },
- "minecraft:entity.zoglin.hurt": {
- "protocol_id": 1449
- },
- "minecraft:entity.zoglin.step": {
- "protocol_id": 1450
- },
- "minecraft:entity.zombie.ambient": {
- "protocol_id": 1451
- },
- "minecraft:entity.zombie.attack_iron_door": {
- "protocol_id": 1453
- },
- "minecraft:entity.zombie.attack_wooden_door": {
- "protocol_id": 1452
- },
- "minecraft:entity.zombie.break_wooden_door": {
- "protocol_id": 1454
- },
- "minecraft:entity.zombie.converted_to_drowned": {
- "protocol_id": 1455
- },
- "minecraft:entity.zombie.death": {
"protocol_id": 1456
},
- "minecraft:entity.zombie.destroy_egg": {
+ "minecraft:entity.zoglin.angry": {
"protocol_id": 1457
},
- "minecraft:entity.zombie.hurt": {
- "protocol_id": 1461
- },
- "minecraft:entity.zombie.infect": {
- "protocol_id": 1462
- },
- "minecraft:entity.zombie.step": {
- "protocol_id": 1467
- },
- "minecraft:entity.zombie_horse.ambient": {
+ "minecraft:entity.zoglin.attack": {
"protocol_id": 1458
},
- "minecraft:entity.zombie_horse.death": {
+ "minecraft:entity.zoglin.death": {
"protocol_id": 1459
},
- "minecraft:entity.zombie_horse.hurt": {
+ "minecraft:entity.zoglin.hurt": {
"protocol_id": 1460
},
- "minecraft:entity.zombie_villager.ambient": {
- "protocol_id": 1468
+ "minecraft:entity.zoglin.step": {
+ "protocol_id": 1461
},
- "minecraft:entity.zombie_villager.converted": {
- "protocol_id": 1469
+ "minecraft:entity.zombie.ambient": {
+ "protocol_id": 1462
},
- "minecraft:entity.zombie_villager.cure": {
- "protocol_id": 1470
- },
- "minecraft:entity.zombie_villager.death": {
- "protocol_id": 1471
- },
- "minecraft:entity.zombie_villager.hurt": {
- "protocol_id": 1472
- },
- "minecraft:entity.zombie_villager.step": {
- "protocol_id": 1473
- },
- "minecraft:entity.zombified_piglin.ambient": {
- "protocol_id": 1463
- },
- "minecraft:entity.zombified_piglin.angry": {
+ "minecraft:entity.zombie.attack_iron_door": {
"protocol_id": 1464
},
- "minecraft:entity.zombified_piglin.death": {
+ "minecraft:entity.zombie.attack_wooden_door": {
+ "protocol_id": 1463
+ },
+ "minecraft:entity.zombie.break_wooden_door": {
"protocol_id": 1465
},
- "minecraft:entity.zombified_piglin.hurt": {
+ "minecraft:entity.zombie.converted_to_drowned": {
"protocol_id": 1466
},
+ "minecraft:entity.zombie.death": {
+ "protocol_id": 1467
+ },
+ "minecraft:entity.zombie.destroy_egg": {
+ "protocol_id": 1468
+ },
+ "minecraft:entity.zombie.hurt": {
+ "protocol_id": 1472
+ },
+ "minecraft:entity.zombie.infect": {
+ "protocol_id": 1473
+ },
+ "minecraft:entity.zombie.step": {
+ "protocol_id": 1478
+ },
+ "minecraft:entity.zombie_horse.ambient": {
+ "protocol_id": 1469
+ },
+ "minecraft:entity.zombie_horse.death": {
+ "protocol_id": 1470
+ },
+ "minecraft:entity.zombie_horse.hurt": {
+ "protocol_id": 1471
+ },
+ "minecraft:entity.zombie_villager.ambient": {
+ "protocol_id": 1479
+ },
+ "minecraft:entity.zombie_villager.converted": {
+ "protocol_id": 1480
+ },
+ "minecraft:entity.zombie_villager.cure": {
+ "protocol_id": 1481
+ },
+ "minecraft:entity.zombie_villager.death": {
+ "protocol_id": 1482
+ },
+ "minecraft:entity.zombie_villager.hurt": {
+ "protocol_id": 1483
+ },
+ "minecraft:entity.zombie_villager.step": {
+ "protocol_id": 1484
+ },
+ "minecraft:entity.zombified_piglin.ambient": {
+ "protocol_id": 1474
+ },
+ "minecraft:entity.zombified_piglin.angry": {
+ "protocol_id": 1475
+ },
+ "minecraft:entity.zombified_piglin.death": {
+ "protocol_id": 1476
+ },
+ "minecraft:entity.zombified_piglin.hurt": {
+ "protocol_id": 1477
+ },
"minecraft:event.raid.horn": {
"protocol_id": 1061
},
@@ -14348,38 +14387,38 @@
"protocol_id": 1147
},
"minecraft:item.spyglass.stop_using": {
- "protocol_id": 1259
+ "protocol_id": 1265
},
"minecraft:item.spyglass.use": {
- "protocol_id": 1258
+ "protocol_id": 1264
},
"minecraft:item.totem.use": {
- "protocol_id": 1286
- },
- "minecraft:item.trident.hit": {
- "protocol_id": 1287
- },
- "minecraft:item.trident.hit_ground": {
- "protocol_id": 1288
- },
- "minecraft:item.trident.return": {
- "protocol_id": 1289
- },
- "minecraft:item.trident.riptide_1": {
- "protocol_id": 1290
- },
- "minecraft:item.trident.riptide_2": {
- "protocol_id": 1291
- },
- "minecraft:item.trident.riptide_3": {
"protocol_id": 1292
},
- "minecraft:item.trident.throw": {
+ "minecraft:item.trident.hit": {
"protocol_id": 1293
},
- "minecraft:item.trident.thunder": {
+ "minecraft:item.trident.hit_ground": {
"protocol_id": 1294
},
+ "minecraft:item.trident.return": {
+ "protocol_id": 1295
+ },
+ "minecraft:item.trident.riptide_1": {
+ "protocol_id": 1296
+ },
+ "minecraft:item.trident.riptide_2": {
+ "protocol_id": 1297
+ },
+ "minecraft:item.trident.riptide_3": {
+ "protocol_id": 1298
+ },
+ "minecraft:item.trident.throw": {
+ "protocol_id": 1299
+ },
+ "minecraft:item.trident.thunder": {
+ "protocol_id": 1300
+ },
"minecraft:music.creative": {
"protocol_id": 784
},
@@ -14525,37 +14564,37 @@
"protocol_id": 1205
},
"minecraft:ui.button.click": {
- "protocol_id": 1320
- },
- "minecraft:ui.cartography_table.take_result": {
- "protocol_id": 1323
- },
- "minecraft:ui.loom.select_pattern": {
- "protocol_id": 1321
- },
- "minecraft:ui.loom.take_result": {
- "protocol_id": 1322
- },
- "minecraft:ui.stonecutter.select_recipe": {
- "protocol_id": 1325
- },
- "minecraft:ui.stonecutter.take_result": {
- "protocol_id": 1324
- },
- "minecraft:ui.toast.challenge_complete": {
"protocol_id": 1326
},
- "minecraft:ui.toast.in": {
+ "minecraft:ui.cartography_table.take_result": {
+ "protocol_id": 1329
+ },
+ "minecraft:ui.loom.select_pattern": {
"protocol_id": 1327
},
- "minecraft:ui.toast.out": {
+ "minecraft:ui.loom.take_result": {
"protocol_id": 1328
},
+ "minecraft:ui.stonecutter.select_recipe": {
+ "protocol_id": 1331
+ },
+ "minecraft:ui.stonecutter.take_result": {
+ "protocol_id": 1330
+ },
+ "minecraft:ui.toast.challenge_complete": {
+ "protocol_id": 1332
+ },
+ "minecraft:ui.toast.in": {
+ "protocol_id": 1333
+ },
+ "minecraft:ui.toast.out": {
+ "protocol_id": 1334
+ },
"minecraft:weather.rain": {
- "protocol_id": 1395
+ "protocol_id": 1401
},
"minecraft:weather.rain.above": {
- "protocol_id": 1396
+ "protocol_id": 1402
}
},
"protocol_id": 1