From a991ce214bb9483a4b57e93f1176cc3abc2a66e9 Mon Sep 17 00:00:00 2001 From: lukas0008 Date: Sat, 10 Aug 2024 21:46:58 +0200 Subject: [PATCH 1/4] CHUNK LOADING KINDA WORKS --- Cargo.lock | 308 +- pumpkin-protocol/Cargo.toml | 2 + pumpkin-protocol/src/bytebuf/packet_id.rs | 12 +- .../src/client/play/c_center_chunk.rs | 10 + .../src/client/play/c_chunk_data.rs | 113 + pumpkin-protocol/src/client/play/mod.rs | 4 + pumpkin-protocol/src/packet_encoder.rs | 2 +- pumpkin-world/Cargo.toml | 12 +- pumpkin-world/blocks.json | 272408 +++++++++++++++ pumpkin-world/src/block_registry.rs | 58 + pumpkin-world/src/chunk.rs | 167 +- pumpkin-world/src/dimension.rs | 21 + pumpkin-world/src/lib.rs | 30 +- pumpkin-world/src/world.rs | 245 + pumpkin-world/test.nbt | Bin 0 -> 56986 bytes pumpkin/src/client/client_packet.rs | 4 +- pumpkin/src/client/mod.rs | 2 +- pumpkin/src/main.rs | 2 +- pumpkin/src/server.rs | 69 +- 19 files changed, 273205 insertions(+), 264 deletions(-) create mode 100644 pumpkin-protocol/src/client/play/c_center_chunk.rs create mode 100644 pumpkin-protocol/src/client/play/c_chunk_data.rs create mode 100644 pumpkin-world/blocks.json create mode 100644 pumpkin-world/src/block_registry.rs create mode 100644 pumpkin-world/src/dimension.rs create mode 100644 pumpkin-world/src/world.rs create mode 100644 pumpkin-world/test.nbt diff --git a/Cargo.lock b/Cargo.lock index 768e1fcf9..d49f33799 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -67,12 +67,6 @@ version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" -[[package]] -name = "bit_field" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" - [[package]] name = "bitflags" version = "1.3.2" @@ -135,9 +129,9 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "cc" -version = "1.1.7" +version = "1.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc" +checksum = "504bdec147f2cc13c8b57ed9401fd8a147cc66b67ad5cb241394244f2c947549" [[package]] name = "cesu8" @@ -170,12 +164,6 @@ dependencies = [ "inout", ] -[[package]] -name = "color_quant" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" - [[package]] name = "colored" version = "2.1.0" @@ -301,6 +289,12 @@ dependencies = [ "crypto-common 0.2.0-rc.0", ] +[[package]] +name = "either" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + [[package]] name = "encoding_rs" version = "0.8.34" @@ -326,37 +320,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "fastanvil" -version = "0.31.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "619fbd9bb48f9e54a7ff88cdd0f7048b8ea519448518c690057f9d03d3e81ebf" -dependencies = [ - "bit_field", - "byteorder", - "fastnbt 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "flate2", - "image 0.23.14", - "log", - "num_enum", - "once_cell", - "serde", - "serde_json", - "tar", -] - -[[package]] -name = "fastnbt" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d4a73a95dc65551ccd98e1ecd1adb5d1ba5361146963b31f481ca42fc0520a3" -dependencies = [ - "byteorder", - "cesu8", - "serde", - "serde_bytes", -] - [[package]] name = "fastnbt" version = "2.5.0" @@ -396,18 +359,6 @@ dependencies = [ "simd-adler32", ] -[[package]] -name = "filetime" -version = "0.2.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "windows-sys 0.52.0", -] - [[package]] name = "flate2" version = "1.0.31" @@ -448,6 +399,21 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "futures" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + [[package]] name = "futures-channel" version = "0.3.30" @@ -455,6 +421,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" dependencies = [ "futures-core", + "futures-sink", ] [[package]] @@ -463,6 +430,34 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" +[[package]] +name = "futures-executor" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-macro" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "futures-sink" version = "0.3.30" @@ -481,10 +476,16 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" dependencies = [ + "futures-channel", "futures-core", + "futures-io", + "futures-macro", + "futures-sink", "futures-task", + "memchr", "pin-project-lite", "pin-utils", + "slab", ] [[package]] @@ -649,9 +650,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956" +checksum = "cde7055719c54e36e95e8719f95883f22072a48ede39db7fc17a4e1d5281e9b9" dependencies = [ "bytes", "futures-channel", @@ -677,20 +678,6 @@ dependencies = [ "unicode-normalization", ] -[[package]] -name = "image" -version = "0.23.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1" -dependencies = [ - "bytemuck", - "byteorder", - "color_quant", - "num-iter", - "num-rational", - "num-traits", -] - [[package]] name = "image" version = "0.25.2" @@ -728,6 +715,15 @@ version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.11" @@ -885,7 +881,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] @@ -908,17 +904,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "num-rational" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" -dependencies = [ - "autocfg", - "num-integer", - "num-traits", -] - [[package]] name = "num-traits" version = "0.2.19" @@ -929,27 +914,6 @@ dependencies = [ "libm", ] -[[package]] -name = "num_enum" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" -dependencies = [ - "num_enum_derive", -] - -[[package]] -name = "num_enum_derive" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" -dependencies = [ - "proc-macro-crate", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "num_threads" version = "0.1.7" @@ -961,9 +925,9 @@ dependencies = [ [[package]] name = "object" -version = "0.36.2" +version = "0.36.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e" +checksum = "27b64972346851a39438c60b341ebc01bba47464ae329e55cf343eb93964efd9" dependencies = [ "memchr", ] @@ -997,7 +961,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] @@ -1050,7 +1014,7 @@ checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] @@ -1120,16 +1084,6 @@ dependencies = [ "zerocopy", ] -[[package]] -name = "proc-macro-crate" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" -dependencies = [ - "once_cell", - "toml_edit 0.19.15", -] - [[package]] name = "proc-macro2" version = "1.0.86" @@ -1146,7 +1100,7 @@ dependencies = [ "base64", "crossbeam-channel", "digest 0.11.0-pre.9", - "image 0.25.2", + "image", "log", "mio", "num-bigint", @@ -1184,7 +1138,7 @@ version = "0.1.0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] @@ -1194,12 +1148,14 @@ dependencies = [ "aes", "bytes", "cfb8", - "fastnbt 2.5.0 (git+https://github.com/owengage/fastnbt.git)", + "fastnbt", "flate2", + "itertools", "log", "num-derive", "num-traits", "pumpkin-macros", + "pumpkin-world", "serde", "serde_json", "take_mut", @@ -1211,7 +1167,7 @@ dependencies = [ name = "pumpkin-registry" version = "0.1.0" dependencies = [ - "fastnbt 2.5.0 (git+https://github.com/owengage/fastnbt.git)", + "fastnbt", "fastsnbt", "pumpkin-protocol", "serde", @@ -1221,10 +1177,15 @@ dependencies = [ name = "pumpkin-world" version = "0.1.0" dependencies = [ - "fastanvil", - "fastnbt 2.5.0 (git+https://github.com/owengage/fastnbt.git)", + "fastnbt", "fastsnbt", - "pumpkin-protocol", + "flate2", + "futures", + "itertools", + "lazy_static", + "serde", + "serde_json", + "thiserror", "tokio", ] @@ -1267,15 +1228,6 @@ dependencies = [ "getrandom", ] -[[package]] -name = "redox_syscall" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" -dependencies = [ - "bitflags 1.3.2", -] - [[package]] name = "reqwest" version = "0.12.5" @@ -1407,9 +1359,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" +checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0" [[package]] name = "rustls-webpki" @@ -1462,9 +1414,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.204" +version = "1.0.205" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12" +checksum = "e33aedb1a7135da52b7c21791455563facbbcc43d0f0f66165b42c21b3dfb150" dependencies = [ "serde_derive", ] @@ -1480,13 +1432,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.204" +version = "1.0.205" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222" +checksum = "692d6f5ac90220161d6774db30c662202721e64aed9058d2c394f451261420c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] @@ -1620,17 +1572,6 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" -[[package]] -name = "syn" -version = "1.0.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - [[package]] name = "syn" version = "2.0.72" @@ -1675,27 +1616,17 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" -[[package]] -name = "tar" -version = "0.4.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb797dad5fb5b76fcf519e702f4a589483b5ef06567f160c392832c1f5e44909" -dependencies = [ - "filetime", - "libc", -] - [[package]] name = "tempfile" -version = "3.11.0" +version = "3.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8fcd239983515c23a32fb82099f97d0b11b8c72f654ed659363a95c3dad7a53" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" dependencies = [ "cfg-if", "fastrand", "once_cell", "rustix", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1715,7 +1646,7 @@ checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] @@ -1790,7 +1721,7 @@ checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] @@ -1836,7 +1767,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.20", + "toml_edit", ] [[package]] @@ -1848,17 +1779,6 @@ dependencies = [ "serde", ] -[[package]] -name = "toml_edit" -version = "0.19.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" -dependencies = [ - "indexmap", - "toml_datetime", - "winnow 0.5.40", -] - [[package]] name = "toml_edit" version = "0.22.20" @@ -1869,7 +1789,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "winnow 0.6.18", + "winnow", ] [[package]] @@ -2025,7 +1945,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.72", + "syn", "wasm-bindgen-shared", ] @@ -2059,7 +1979,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -2098,6 +2018,15 @@ dependencies = [ "windows-targets 0.52.6", ] +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + [[package]] name = "windows-targets" version = "0.48.5" @@ -2219,15 +2148,6 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" -[[package]] -name = "winnow" -version = "0.5.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" -dependencies = [ - "memchr", -] - [[package]] name = "winnow" version = "0.6.18" @@ -2265,7 +2185,7 @@ checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.72", + "syn", ] [[package]] diff --git a/pumpkin-protocol/Cargo.toml b/pumpkin-protocol/Cargo.toml index 941bdfbfe..d0b20c24a 100644 --- a/pumpkin-protocol/Cargo.toml +++ b/pumpkin-protocol/Cargo.toml @@ -6,6 +6,7 @@ edition.workspace = true [dependencies] pumpkin-macros = { path = "../pumpkin-macros" } +pumpkin-world = { path = "../pumpkin-world" } bytes = "1.7" @@ -29,3 +30,4 @@ fastnbt = { git = "https://github.com/owengage/fastnbt.git" } aes = "0.8.4" cfb8 = "0.8.1" take_mut = "0.2.2" +itertools = "0.13.0" diff --git a/pumpkin-protocol/src/bytebuf/packet_id.rs b/pumpkin-protocol/src/bytebuf/packet_id.rs index fe2989514..bd63dd552 100644 --- a/pumpkin-protocol/src/bytebuf/packet_id.rs +++ b/pumpkin-protocol/src/bytebuf/packet_id.rs @@ -3,10 +3,20 @@ use serde::{ Deserialize, Deserializer, Serialize, Serializer, }; -use crate::{ClientPacket, ServerPacket, VarInt, VarIntType}; +use crate::{BitSet, ClientPacket, ServerPacket, VarInt, VarIntType}; use super::{deserializer, serializer, ByteBuffer, DeserializerError}; +impl Serialize for BitSet { + fn serialize(&self, serializer: S) -> Result + where + S: Serializer, + { + // TODO: make this right + (self.0.clone(), self.1.clone()).serialize(serializer) + } +} + impl Serialize for VarInt { fn serialize(&self, serializer: S) -> Result where diff --git a/pumpkin-protocol/src/client/play/c_center_chunk.rs b/pumpkin-protocol/src/client/play/c_center_chunk.rs new file mode 100644 index 000000000..28652f38c --- /dev/null +++ b/pumpkin-protocol/src/client/play/c_center_chunk.rs @@ -0,0 +1,10 @@ +use pumpkin_macros::packet; + +use crate::VarInt; + +#[derive(serde::Serialize)] +#[packet(0x54)] +pub struct CCenterChunk { + pub chunk_x: VarInt, + pub chunk_z: VarInt +} \ No newline at end of file diff --git a/pumpkin-protocol/src/client/play/c_chunk_data.rs b/pumpkin-protocol/src/client/play/c_chunk_data.rs new file mode 100644 index 000000000..8aea2ed52 --- /dev/null +++ b/pumpkin-protocol/src/client/play/c_chunk_data.rs @@ -0,0 +1,113 @@ +use std::collections::HashMap; + +use crate::{bytebuf::ByteBuffer, BitSet, ClientPacket, VarInt}; +use fastnbt::LongArray; +use itertools::Itertools; +use pumpkin_macros::packet; +use pumpkin_world::chunk::ChunkData; + +#[packet(0x27)] +pub struct CChunkData<'a>(pub &'a ChunkData); + +impl<'a> ClientPacket for CChunkData<'a> { + fn write(&self, buf: &mut crate::bytebuf::ByteBuffer) { + // Chunk X + buf.put_i32(self.0.position.0); + // Chunk Z + buf.put_i32(self.0.position.1); + + let heightmap_nbt = + fastnbt::to_bytes_with_opts(&self.0.heightmaps, fastnbt::SerOpts::network_nbt()) + .unwrap(); + // Heightmaps + buf.put_slice(&heightmap_nbt); + + let mut data_buf = ByteBuffer::empty(); + self.0 + .blocks + .iter() + .chunks(16 * 16 * 16) + .into_iter() + .for_each(|chunk| { + let chunk = chunk.collect_vec(); + let block_count = chunk + .iter() + .filter(|block| ***block != 0 && ***block != 12959 && ***block != 12958) + .count() as i16; + // Block count + data_buf.put_i16(block_count); + //// Block states + let palette = chunk.clone().into_iter().dedup().collect_vec(); + let mut palette_map = HashMap::new(); + let block_size = 8; + // let block_size = { + // let palette_bit_len = palette.len().leading_zeros(); + // if palette_bit_len > 3 { + // palette_bit_len + // } else { + // 4 + // } + // }; + // Bits per entry + data_buf.put_u8(block_size as u8); + // Palette length + data_buf.put_var_int(&VarInt(palette.len() as i32)); + palette.iter().enumerate().for_each(|(i, id)| { + palette_map.insert(*id, i); + // Palette + data_buf.put_var_int(&VarInt(**id as i32)); + }); + let mut block_data_array = Vec::new(); + for block_clump in chunk.chunks(64 / block_size as usize) { + let mut out_long: i64 = 0; + let mut first = true; + for block in block_clump { + if first { + first = false; + } else { + out_long = out_long << block_size; + } + let index = palette_map + .get(block) + .expect("Its just got added, ofc it should be there"); + out_long = out_long | *index as i64; + } + block_data_array.push(out_long); + } + + // Data array length + data_buf.put_var_int(&VarInt(block_data_array.len() as i32)); + // Data array + for data_int in block_data_array { + data_buf.put_i64(data_int); + } + + //// Biomes + // TODO: make biomes work + data_buf.put_u8(0); + data_buf.put_var_int(&VarInt(0)); + data_buf.put_var_int(&VarInt(0)); + }); + + // Size + buf.put_var_int(&VarInt(data_buf.buf().len() as i32)); + // Data + buf.put_slice(&data_buf.buf()); + + // TODO: block entities + buf.put_var_int(&VarInt(0)); + + // TODO + buf.put_bit_set(&BitSet(VarInt(1), vec![0])); + buf.put_bit_set(&BitSet(VarInt(1), vec![0])); + buf.put_bit_set(&BitSet(VarInt(1), vec![0])); + buf.put_bit_set(&BitSet(VarInt(1), vec![0])); + // buf.put_bit_set(&BitSet(VarInt(0), vec![])); + // buf.put_bit_set(&BitSet(VarInt(0), vec![])); + // buf.put_bit_set(&BitSet(VarInt(0), vec![])); + // buf.put_bit_set(&BitSet(VarInt(0), vec![])); + + buf.put_var_int(&VarInt(0)); + buf.put_var_int(&VarInt(0)); + } +} diff --git a/pumpkin-protocol/src/client/play/mod.rs b/pumpkin-protocol/src/client/play/mod.rs index c120926ee..b82b6c347 100644 --- a/pumpkin-protocol/src/client/play/mod.rs +++ b/pumpkin-protocol/src/client/play/mod.rs @@ -1,4 +1,6 @@ +mod c_center_chunk; mod c_change_difficulty; +mod c_chunk_data; mod c_chunk_data_update_light; mod c_disguised_chat_message; mod c_entity_animation; @@ -20,7 +22,9 @@ mod c_update_entity_pos; mod c_update_entity_rot; mod player_action; +pub use c_center_chunk::*; pub use c_change_difficulty::*; +pub use c_chunk_data::*; pub use c_chunk_data_update_light::*; pub use c_disguised_chat_message::*; pub use c_entity_animation::*; diff --git a/pumpkin-protocol/src/packet_encoder.rs b/pumpkin-protocol/src/packet_encoder.rs index 9e3455e59..4208e7405 100644 --- a/pumpkin-protocol/src/packet_encoder.rs +++ b/pumpkin-protocol/src/packet_encoder.rs @@ -32,7 +32,7 @@ impl PacketEncoder { .encode(&mut writer) .map_err(|_| PacketError::EncodeID)?; packet.write(&mut packet_buf); - + writer .write(packet_buf.buf()) .map_err(|_| PacketError::EncodeFailedWrite)?; diff --git a/pumpkin-world/Cargo.toml b/pumpkin-world/Cargo.toml index c100edab9..4f2e63996 100644 --- a/pumpkin-world/Cargo.toml +++ b/pumpkin-world/Cargo.toml @@ -4,8 +4,14 @@ version.workspace = true edition.workspace = true [dependencies] -pumpkin-protocol = { path = "../pumpkin-protocol"} -fastanvil = "0.31" +# fastanvil = "0.31" fastnbt = { git = "https://github.com/owengage/fastnbt.git" } fastsnbt = "0.2" -tokio.workspace = true \ No newline at end of file +tokio.workspace = true +itertools = "0.13.0" +thiserror = "1.0.63" +futures = "0.3.30" +flate2 = "1.0.31" +serde = { version = "1.0.205", features = ["derive"] } +lazy_static = "1.5.0" +serde_json = "1.0.122" diff --git a/pumpkin-world/blocks.json b/pumpkin-world/blocks.json new file mode 100644 index 000000000..769af7782 --- /dev/null +++ b/pumpkin-world/blocks.json @@ -0,0 +1,272408 @@ +{ + "minecraft:acacia_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "acacia", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8707, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8708, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8709, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8710, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8711, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8712, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8713, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8714, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8715, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8716, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8717, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8718, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8719, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8720, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8721, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8722, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8723, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8724, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8725, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8726, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8727, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8728, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8729, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8730, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12014, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12015, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12016, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12017, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12018, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12019, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12020, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12021, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12022, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12023, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12024, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12025, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12026, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12027, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12028, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12029, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12030, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12031, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12032, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12033, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12034, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12035, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12036, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12037, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12038, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12039, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12040, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12041, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12042, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12043, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12044, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12045, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12046, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12047, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12048, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12049, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12050, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12051, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12052, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12053, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12054, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12055, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12056, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12057, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12058, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12059, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12060, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12061, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12062, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12063, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12064, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12065, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12066, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12067, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12068, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12069, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12070, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12071, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12072, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12073, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12074, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12075, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12076, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12077, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11662, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11663, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11664, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11665, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11666, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11667, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11668, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11669, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11670, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11671, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11672, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11673, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11674, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11675, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11676, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11677, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11678, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11679, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11680, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11681, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11682, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11683, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11684, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11685, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11686, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11687, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11688, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11689, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11690, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11691, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11692, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11693, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:acacia_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11406, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11407, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11408, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11409, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11410, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11411, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11412, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11413, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11414, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11415, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11416, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11417, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11418, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11419, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11420, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11421, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11422, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11423, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11424, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11425, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11426, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11427, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11428, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11429, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11430, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11431, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11432, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11433, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11434, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11435, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11436, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11437, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5026, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5027, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5028, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5029, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5030, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5031, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5032, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5033, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5034, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5035, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5036, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5037, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5038, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5039, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5040, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5041, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5042, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5043, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5044, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5045, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5046, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5047, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5048, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5049, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5050, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5051, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5052, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5053, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5054, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5055, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5056, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5057, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5058, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5059, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5060, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5061, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5062, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5063, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5064, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5065, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5066, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5067, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5068, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5069, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5070, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5071, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5072, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5073, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5074, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5075, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5076, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5077, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5078, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5079, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5080, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5081, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5082, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5083, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5084, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5085, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5086, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5087, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5088, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5089, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 349, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 350, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 351, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 352, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 353, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 354, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 355, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 356, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 357, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 358, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 359, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 360, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 361, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 362, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 363, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 364, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 365, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 366, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 367, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 368, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 369, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 370, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 371, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 372, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 373, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 374, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 375, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 376, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 142, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 143, + "properties": { + "axis": "y" + } + }, + { + "id": 144, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:acacia_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19 + } + ] + }, + "minecraft:acacia_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5724, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5725, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:acacia_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "acacia" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 33, + "properties": { + "stage": "0" + } + }, + { + "id": 34, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:acacia_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4398, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4399, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4400, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4401, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4402, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4403, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4404, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4405, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4406, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4407, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4408, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4409, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4410, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4411, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4412, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4413, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4414, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4415, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4416, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4417, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4418, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4419, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4420, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4421, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4422, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4423, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4424, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4425, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4426, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4427, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4428, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4429, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11186, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11187, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11188, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11189, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11190, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11191, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:acacia_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9884, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9885, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9886, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9887, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9888, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9889, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9890, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9891, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9892, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9893, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9894, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9895, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9896, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9897, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9901, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9902, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9903, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9904, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9905, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9906, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9907, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9908, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9909, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9910, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9911, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9912, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9913, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9914, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9915, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9916, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9917, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9921, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9922, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9923, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9924, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9925, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9926, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9927, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9928, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9929, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9930, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9931, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9932, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9933, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9934, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9935, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9936, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9937, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9941, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9942, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9943, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9944, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9945, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9946, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9947, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9948, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9949, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9950, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9951, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9952, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9953, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9954, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9955, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9956, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9957, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9958, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9959, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9960, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9961, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9962, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9963, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6217, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6218, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6219, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6220, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6221, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6222, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6223, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6224, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6225, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6226, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6227, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6228, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6229, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6230, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6231, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6232, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6233, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6234, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6235, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6236, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6237, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6238, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6239, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6240, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6241, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6242, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6243, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6244, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6245, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6246, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6247, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6248, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6249, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6250, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6251, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6252, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6253, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6254, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6255, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6256, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6257, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6258, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6259, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6260, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6261, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6262, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6263, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6264, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6265, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6266, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6267, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6268, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6269, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6270, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6271, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6272, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6273, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6274, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6275, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6276, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6277, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6278, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6279, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6280, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5562, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5563, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5564, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5565, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5566, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5567, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5568, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5569, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4786, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4787, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4788, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4789, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4790, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4791, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4792, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4793, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 201, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 202, + "properties": { + "axis": "y" + } + }, + { + "id": 203, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:activator_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9320, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 9321, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 9322, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 9323, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 9324, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 9325, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 9326, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 9327, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 9328, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 9329, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 9330, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 9331, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 9332, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9333, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 9334, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 9335, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 9336, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 9337, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 9338, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 9339, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 9340, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 9341, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 9342, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 9343, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 0 + } + ] + }, + "minecraft:allium": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 80, + "id": "minecraft:fire_resistance" + } + ] + }, + "states": [ + { + "default": true, + "id": 2079 + } + ] + }, + "minecraft:amethyst_block": { + "definition": { + "type": "minecraft:amethyst", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21031 + } + ] + }, + "minecraft:amethyst_cluster": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 3.0, + "height": 7.0, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21033, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21034, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21035, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21036, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21037, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21038, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21039, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21040, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21041, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21042, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21043, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21044, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ancient_debris": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19448 + } + ] + }, + "minecraft:andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6 + } + ] + }, + "minecraft:andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14136, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14137, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14138, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14139, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14140, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14141, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:andesite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13762, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13763, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13764, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13765, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13766, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13767, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13768, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13769, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13770, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13771, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13772, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13773, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13774, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13775, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13776, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13777, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13778, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13779, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13780, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13781, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13782, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13783, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13784, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13785, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13786, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13787, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13788, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13789, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13790, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13791, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13792, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13793, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13794, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13795, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13796, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13797, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13798, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13799, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13800, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13801, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13802, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13803, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13804, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13805, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13806, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13807, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13808, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13809, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13810, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13811, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13812, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13813, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13814, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13815, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13816, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13817, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13818, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13819, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13820, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13821, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13822, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13823, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13824, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13825, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13826, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13827, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13828, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13829, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13830, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13831, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13832, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13833, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13834, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13835, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13836, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13837, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13838, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13839, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13840, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13841, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16752, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16753, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16754, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16755, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16756, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16757, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16758, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16759, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16760, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16761, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16762, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16763, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16764, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16765, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16766, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16767, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16768, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16769, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16770, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16771, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16772, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16773, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16774, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16775, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16776, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16777, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16778, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16779, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16780, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16781, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16782, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16783, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16784, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16785, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16786, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16787, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16788, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16789, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16790, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16791, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16792, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16793, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16794, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16795, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16796, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16797, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16798, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16799, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16800, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16801, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16802, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16803, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16804, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16805, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16806, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16807, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16808, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16809, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16810, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16811, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16812, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16813, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16814, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16815, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16816, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16817, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16818, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16819, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16820, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16821, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16822, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16823, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16824, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16825, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16968, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16969, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16970, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16971, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16972, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16973, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16974, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16975, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16976, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16977, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16978, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16979, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16980, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16981, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16982, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16983, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16984, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16985, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16986, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16987, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16988, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16989, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16990, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16991, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16992, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16993, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16994, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16995, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16996, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16997, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16998, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16999, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17000, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17001, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17002, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17003, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17004, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17005, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17006, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17007, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17008, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17009, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17010, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17011, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17012, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17013, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17014, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17015, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17016, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17017, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17018, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17019, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17020, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17021, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17022, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17023, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17024, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17025, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17026, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17027, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17028, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17029, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17030, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17031, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17032, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17033, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17034, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17035, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17036, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17037, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17038, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17039, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17040, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17041, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17042, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17043, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17044, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17045, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17046, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17047, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17048, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17049, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17050, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17051, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17052, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17053, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17054, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17055, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17056, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17057, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17058, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17059, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17060, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17061, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17062, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17063, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17064, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17065, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17066, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17067, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17068, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17069, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17070, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17071, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17072, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17073, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17074, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17075, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9107, + "properties": { + "facing": "north" + } + }, + { + "id": 9108, + "properties": { + "facing": "south" + } + }, + { + "id": 9109, + "properties": { + "facing": "west" + } + }, + { + "id": 9110, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_melon_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:melon", + "properties": {}, + "seed": "minecraft:melon_seeds", + "stem": "minecraft:melon_stem" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 6817, + "properties": { + "facing": "north" + } + }, + { + "id": 6818, + "properties": { + "facing": "south" + } + }, + { + "id": 6819, + "properties": { + "facing": "west" + } + }, + { + "id": 6820, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:pumpkin", + "properties": {}, + "seed": "minecraft:pumpkin_seeds", + "stem": "minecraft:pumpkin_stem" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 6813, + "properties": { + "facing": "north" + } + }, + { + "id": 6814, + "properties": { + "facing": "south" + } + }, + { + "id": 6815, + "properties": { + "facing": "west" + } + }, + { + "id": 6816, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24824 + } + ] + }, + "minecraft:azalea_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 461, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 462, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 463, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 464, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 465, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 466, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 467, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 468, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 469, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 470, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 471, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 472, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 473, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 474, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 475, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 476, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 477, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 478, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 479, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 480, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 481, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 482, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 483, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 484, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 485, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 486, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 487, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 488, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:azure_bluet": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "id": "minecraft:blindness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2080 + } + ] + }, + "minecraft:bamboo": { + "definition": { + "type": "minecraft:bamboo_stalk", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1" + ], + "leaves": [ + "none", + "small", + "large" + ], + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 12945, + "properties": { + "age": "0", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 12946, + "properties": { + "age": "0", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 12947, + "properties": { + "age": "0", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 12948, + "properties": { + "age": "0", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 12949, + "properties": { + "age": "0", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 12950, + "properties": { + "age": "0", + "leaves": "large", + "stage": "1" + } + }, + { + "id": 12951, + "properties": { + "age": "1", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 12952, + "properties": { + "age": "1", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 12953, + "properties": { + "age": "1", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 12954, + "properties": { + "age": "1", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 12955, + "properties": { + "age": "1", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 12956, + "properties": { + "age": "1", + "leaves": "large", + "stage": "1" + } + } + ] + }, + "minecraft:bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 159, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 160, + "properties": { + "axis": "y" + } + }, + { + "id": 161, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bamboo_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "bamboo", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8803, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8804, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8805, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8806, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8807, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8808, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8809, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8810, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8811, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8812, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8813, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8814, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8815, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8816, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8817, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8818, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8819, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8820, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8821, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8822, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8823, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8824, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8825, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8826, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12270, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12271, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12272, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12273, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12274, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12275, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12276, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12277, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12278, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12279, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12280, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12281, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12282, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12283, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12284, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12285, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12286, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12287, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12288, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12289, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12290, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12291, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12292, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12293, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12294, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12295, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12296, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12297, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12298, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12299, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12300, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12301, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12302, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12303, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12304, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12305, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12306, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12307, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12308, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12309, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12310, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12311, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12312, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12313, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12314, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12315, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12316, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12317, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12318, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12319, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12320, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12321, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12322, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12323, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12324, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12325, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12326, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12327, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12328, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12329, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12330, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12331, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12332, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12333, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11790, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11791, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11792, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11793, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11794, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11795, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11796, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11797, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11798, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11799, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11800, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11801, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11802, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11803, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11804, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11805, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11806, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11807, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11808, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11809, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11810, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11811, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11812, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11813, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11814, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11815, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11816, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11817, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11818, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11819, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11820, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11821, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:bamboo_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11534, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11535, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11536, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11537, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11538, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11539, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11540, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11541, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11542, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11543, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11544, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11545, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11546, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11547, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11548, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11549, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11550, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11551, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11552, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11553, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11554, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11555, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11556, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11557, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11558, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11559, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11560, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11561, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11562, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11563, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11564, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11565, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5474, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5475, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5476, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5477, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5478, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5479, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5480, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5481, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5482, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5483, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5484, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5485, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5486, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5487, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5488, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5489, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5490, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5491, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5492, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5493, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5494, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5495, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5496, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5497, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5498, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5499, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5500, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5501, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5502, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5503, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5504, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5505, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5506, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5507, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5508, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5509, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5510, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5511, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5512, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5513, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5514, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5515, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5516, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5517, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5518, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5519, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5520, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5521, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5522, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5523, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5524, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5525, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5526, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5527, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5528, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5529, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5530, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5531, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5532, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5533, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5534, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5535, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5536, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5537, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24 + } + ] + }, + "minecraft:bamboo_mosaic_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11216, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11217, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11218, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11219, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11220, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11221, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_mosaic" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10284, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10285, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10286, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10287, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10288, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10289, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10290, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10291, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10292, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10293, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10294, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10295, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10302, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10303, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10304, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10305, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10306, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10307, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10308, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10309, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10310, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10311, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10312, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10313, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10314, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10315, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10322, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10323, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10324, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10325, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10326, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10327, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10328, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10329, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10330, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10331, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10332, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10333, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10334, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10335, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10342, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10343, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10344, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10345, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10346, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10347, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10348, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10349, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10350, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10351, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10352, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10353, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10354, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10355, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10362, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10363, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23 + } + ] + }, + "minecraft:bamboo_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5732, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5733, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_sapling": { + "definition": { + "type": "minecraft:bamboo_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12944 + } + ] + }, + "minecraft:bamboo_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4558, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4559, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4560, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4561, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4562, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4563, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4564, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4565, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4566, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4567, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4568, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4569, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4570, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4571, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4572, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4573, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4574, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4575, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4576, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4577, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4578, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4579, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4580, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4581, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4582, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4583, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4584, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4585, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4586, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4587, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4588, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4589, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11210, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11211, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11212, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11213, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11214, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11215, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10204, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10205, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10206, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10207, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10208, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10209, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10210, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10211, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10212, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10213, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10214, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10215, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10216, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10217, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10218, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10219, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10220, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10221, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10222, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10223, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10224, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10225, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10226, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10227, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10228, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10229, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10230, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10231, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10232, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10233, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10236, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10237, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10238, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10239, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10240, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10241, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10242, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10243, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10244, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10245, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10246, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10247, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10248, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10249, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10250, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10251, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10252, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10253, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10256, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10257, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10258, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10259, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10260, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10261, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10262, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10263, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10264, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10265, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10266, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10267, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10268, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10269, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10270, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10271, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10272, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10273, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10274, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10275, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10276, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10277, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10278, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10279, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10280, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10281, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10282, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10283, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6473, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6474, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6475, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6476, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6477, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6478, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6479, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6480, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6481, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6482, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6483, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6484, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6485, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6486, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6487, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6488, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6489, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6490, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6491, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6492, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6493, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6494, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6495, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6496, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6497, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6498, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6499, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6500, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6501, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6502, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6503, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6504, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6505, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6506, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6507, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6508, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6509, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6510, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6511, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6512, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6513, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6514, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6515, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6516, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6517, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6518, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6519, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6520, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6521, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6522, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6523, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6524, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6525, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6526, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6527, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6528, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6529, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6530, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6531, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6532, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6533, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6534, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6535, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6536, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5618, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5619, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5620, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5621, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5622, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5623, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5624, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5625, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4826, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4827, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4828, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4829, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4830, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4831, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4832, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4833, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:barrel": { + "definition": { + "type": "minecraft:barrel", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "open": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18408, + "properties": { + "facing": "north", + "open": "true" + } + }, + { + "default": true, + "id": 18409, + "properties": { + "facing": "north", + "open": "false" + } + }, + { + "id": 18410, + "properties": { + "facing": "east", + "open": "true" + } + }, + { + "id": 18411, + "properties": { + "facing": "east", + "open": "false" + } + }, + { + "id": 18412, + "properties": { + "facing": "south", + "open": "true" + } + }, + { + "id": 18413, + "properties": { + "facing": "south", + "open": "false" + } + }, + { + "id": 18414, + "properties": { + "facing": "west", + "open": "true" + } + }, + { + "id": 18415, + "properties": { + "facing": "west", + "open": "false" + } + }, + { + "id": 18416, + "properties": { + "facing": "up", + "open": "true" + } + }, + { + "id": 18417, + "properties": { + "facing": "up", + "open": "false" + } + }, + { + "id": 18418, + "properties": { + "facing": "down", + "open": "true" + } + }, + { + "id": 18419, + "properties": { + "facing": "down", + "open": "false" + } + } + ] + }, + "minecraft:barrier": { + "definition": { + "type": "minecraft:barrier", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10365, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10366, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 5852, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 5853, + "properties": { + "axis": "y" + } + }, + { + "id": 5854, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:beacon": { + "definition": { + "type": "minecraft:beacon", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7918 + } + ] + }, + "minecraft:bedrock": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 79 + } + ] + }, + "minecraft:bee_nest": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 19397, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 19398, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 19399, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 19400, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 19401, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 19402, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 19403, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 19404, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 19405, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 19406, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 19407, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 19408, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 19409, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 19410, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 19411, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 19412, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 19413, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 19414, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 19415, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 19416, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 19417, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 19418, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 19419, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 19420, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beehive": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 19421, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 19422, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 19423, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 19424, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 19425, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 19426, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 19427, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 19428, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 19429, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 19430, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 19431, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 19432, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 19433, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 19434, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 19435, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 19436, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 19437, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 19438, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 19439, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 19440, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 19441, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 19442, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 19443, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 19444, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beetroots": { + "definition": { + "type": "minecraft:beetroot", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 12509, + "properties": { + "age": "0" + } + }, + { + "id": 12510, + "properties": { + "age": "1" + } + }, + { + "id": 12511, + "properties": { + "age": "2" + } + }, + { + "id": 12512, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:bell": { + "definition": { + "type": "minecraft:bell", + "properties": {} + }, + "properties": { + "attachment": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18471, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 18472, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18473, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18474, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18475, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18476, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18477, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18478, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18479, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18480, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18481, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18482, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18483, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18484, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18485, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18486, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18487, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18488, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18489, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18490, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18491, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18492, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18493, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18494, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 18495, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 18496, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 18497, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 18498, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 18499, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 18500, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 18501, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 18502, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:big_dripleaf": { + "definition": { + "type": "minecraft:big_dripleaf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "tilt": [ + "none", + "unstable", + "partial", + "full" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24844, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24845, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24846, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24847, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24848, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24849, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24850, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24851, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 24852, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 24853, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24854, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24855, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24856, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24857, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24858, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24859, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 24860, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 24861, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24862, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24863, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24864, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24865, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24866, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24867, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 24868, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 24869, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 24870, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 24871, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 24872, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 24873, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 24874, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 24875, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "false" + } + } + ] + }, + "minecraft:big_dripleaf_stem": { + "definition": { + "type": "minecraft:big_dripleaf_stem", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24876, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24877, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 24878, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 24879, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 24880, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 24881, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 24882, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 24883, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "birch", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8659, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8660, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8661, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8662, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8663, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8664, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8665, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8666, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8667, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8668, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8669, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8670, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8671, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8672, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8673, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8674, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8675, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8676, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8677, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8678, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8679, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8680, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8681, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8682, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:birch_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11886, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11887, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11888, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11889, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11890, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11891, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11892, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11893, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11894, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11895, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11896, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11897, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11898, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11899, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11900, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11901, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11902, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11903, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11904, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11905, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11906, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11907, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11908, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11909, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11910, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11911, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11912, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11913, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11914, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11915, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11916, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11917, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11918, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11919, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11920, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11921, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11922, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11923, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11924, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11925, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11926, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11927, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11928, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11929, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11930, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11931, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11932, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11933, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11934, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11935, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11936, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11937, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11938, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11939, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11940, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11941, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11942, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11943, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11944, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11945, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11946, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11947, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11948, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11949, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11598, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11599, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11600, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11601, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11602, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11603, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11604, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11605, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11606, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11607, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11608, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11609, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11610, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11611, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11612, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11613, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11614, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11615, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11616, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11617, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11618, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11619, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11620, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11621, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11622, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11623, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11624, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11625, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11626, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11627, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11628, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11629, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:birch_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11342, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11343, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11344, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11345, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11346, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11347, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11348, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11349, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11350, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11351, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11352, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11353, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11354, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11355, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11356, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11357, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11358, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11359, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11360, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11361, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11362, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11363, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11364, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11365, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11366, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11367, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11368, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11369, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11370, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11371, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11372, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11373, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4962, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4963, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4964, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4965, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4966, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4967, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4968, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4969, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4970, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4971, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4972, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4973, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4974, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4975, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4976, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4977, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4978, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4979, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4980, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4981, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4982, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4983, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4984, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4985, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4986, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4987, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4988, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4989, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4990, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4991, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4992, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4993, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4994, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4995, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4996, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4997, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4998, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4999, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5000, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5001, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5002, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5003, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5004, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5005, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5006, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5007, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5008, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5009, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5010, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5011, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5012, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5013, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5014, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5015, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5016, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5017, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5018, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5019, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5020, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5021, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5022, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5023, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5024, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5025, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 293, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 294, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 295, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 296, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 297, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 298, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 299, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 300, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 301, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 302, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 303, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 304, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 305, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 306, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 307, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 308, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 309, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 310, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 311, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 312, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 313, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 314, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 315, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 316, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 317, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 318, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 319, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 320, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 136, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 137, + "properties": { + "axis": "y" + } + }, + { + "id": 138, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:birch_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 17 + } + ] + }, + "minecraft:birch_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5720, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5721, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:birch_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "birch" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 29, + "properties": { + "stage": "0" + } + }, + { + "id": 30, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:birch_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4366, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4367, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4368, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4369, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4370, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4371, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4372, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4373, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4374, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4375, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4376, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4377, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4378, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4379, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4380, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4381, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4382, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4383, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4384, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4385, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4386, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4387, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4388, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4389, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4390, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4391, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4392, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4393, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4394, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4395, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4396, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4397, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11174, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11175, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11176, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11177, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11178, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11179, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:birch_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7746, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7747, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7748, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7749, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7750, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7751, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7752, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7753, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7754, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7755, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7756, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7757, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7758, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7759, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7760, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7761, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7762, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7763, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7764, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7766, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7767, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7768, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7769, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7770, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7771, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7772, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7773, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7774, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7775, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7776, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7777, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7778, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7779, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7780, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7781, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7782, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7783, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7784, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7786, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7787, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7788, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7789, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7790, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7791, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7792, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7793, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7794, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7795, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7796, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7797, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7798, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7799, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7800, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7801, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7802, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7803, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7804, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7806, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7807, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7808, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7809, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7810, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7811, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7812, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7813, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7814, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7815, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7816, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7817, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7818, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7819, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7820, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7821, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7822, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7823, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7824, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6089, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6090, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6091, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6092, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6093, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6094, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6095, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6096, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6097, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6098, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6099, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6100, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6101, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6102, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6103, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6104, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6105, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6106, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6107, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6108, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6109, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6110, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6111, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6112, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6113, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6114, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6115, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6116, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6117, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6118, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6119, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6120, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6121, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6122, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6123, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6124, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6125, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6126, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6127, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6128, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6129, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6130, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6131, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6132, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6133, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6134, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6135, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6136, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6137, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6138, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6139, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6140, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6141, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6142, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6143, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6144, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6145, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6146, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6147, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6148, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6149, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6150, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6151, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6152, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5554, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5555, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5556, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5557, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5558, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5559, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5560, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5561, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4778, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4779, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4780, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4781, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4782, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4783, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4784, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4785, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 195, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 196, + "properties": { + "axis": "y" + } + }, + { + "id": 197, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:black_banner": { + "definition": { + "type": "minecraft:banner", + "color": "black", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10999, + "properties": { + "rotation": "0" + } + }, + { + "id": 11000, + "properties": { + "rotation": "1" + } + }, + { + "id": 11001, + "properties": { + "rotation": "2" + } + }, + { + "id": 11002, + "properties": { + "rotation": "3" + } + }, + { + "id": 11003, + "properties": { + "rotation": "4" + } + }, + { + "id": 11004, + "properties": { + "rotation": "5" + } + }, + { + "id": 11005, + "properties": { + "rotation": "6" + } + }, + { + "id": 11006, + "properties": { + "rotation": "7" + } + }, + { + "id": 11007, + "properties": { + "rotation": "8" + } + }, + { + "id": 11008, + "properties": { + "rotation": "9" + } + }, + { + "id": 11009, + "properties": { + "rotation": "10" + } + }, + { + "id": 11010, + "properties": { + "rotation": "11" + } + }, + { + "id": 11011, + "properties": { + "rotation": "12" + } + }, + { + "id": 11012, + "properties": { + "rotation": "13" + } + }, + { + "id": 11013, + "properties": { + "rotation": "14" + } + }, + { + "id": 11014, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:black_bed": { + "definition": { + "type": "minecraft:bed", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1928, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1929, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1930, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1931, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1932, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1933, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1934, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1935, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1936, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1937, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1938, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1939, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1940, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1941, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1942, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1943, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:black_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20981, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20982, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20983, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20984, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20985, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20986, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20987, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20988, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20989, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20990, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20991, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20992, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20993, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20994, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20995, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20996, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:black_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:black_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21029, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21030, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:black_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "black", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10743 + } + ] + }, + "minecraft:black_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12743 + } + ] + }, + "minecraft:black_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:black_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12759 + } + ] + }, + "minecraft:black_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12724, + "properties": { + "facing": "north" + } + }, + { + "id": 12725, + "properties": { + "facing": "south" + } + }, + { + "id": 12726, + "properties": { + "facing": "west" + } + }, + { + "id": 12727, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12658, + "properties": { + "facing": "north" + } + }, + { + "id": 12659, + "properties": { + "facing": "east" + } + }, + { + "id": 12660, + "properties": { + "facing": "south" + } + }, + { + "id": 12661, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12662, + "properties": { + "facing": "up" + } + }, + { + "id": 12663, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:black_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "black", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5960 + } + ] + }, + "minecraft:black_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "black", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9852, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9853, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9854, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9855, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9856, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9857, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9858, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9859, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9860, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9861, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9862, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9863, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9864, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9865, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9866, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9867, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9868, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9869, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9870, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9871, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9872, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9873, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9874, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9875, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9876, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9877, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9878, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9879, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9880, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9881, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9882, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9883, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:black_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9371 + } + ] + }, + "minecraft:black_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11075, + "properties": { + "facing": "north" + } + }, + { + "id": 11076, + "properties": { + "facing": "south" + } + }, + { + "id": 11077, + "properties": { + "facing": "west" + } + }, + { + "id": 11078, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2062 + } + ] + }, + "minecraft:blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19460 + } + ] + }, + "minecraft:blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19865, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19866, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19867, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19868, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19869, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19870, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:blackstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19461, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19462, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19463, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19464, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19465, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19466, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19467, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19468, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19469, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19470, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19473, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19474, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19475, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19476, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19477, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19481, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19482, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19483, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19484, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19485, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19486, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19487, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19488, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19489, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19490, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19493, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19494, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19495, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19496, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19497, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19501, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19502, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19503, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19504, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19505, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19506, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19507, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19508, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19509, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19510, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19513, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19514, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19515, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19516, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19517, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19521, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19522, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19523, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19524, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19525, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19526, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19527, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19528, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19529, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19530, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19533, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19534, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19541, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19542, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19543, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19544, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19545, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19546, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19547, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19548, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19549, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19550, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19551, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19552, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19553, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19554, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19555, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19556, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19557, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19558, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19559, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19560, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19561, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19562, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19563, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19564, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19565, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19566, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19567, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19568, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19569, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19570, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19571, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19572, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19573, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19574, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19575, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19576, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19577, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19578, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19579, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19580, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19581, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19582, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19583, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19584, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19585, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19586, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19587, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19588, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19589, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19590, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19591, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19592, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19593, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19594, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19595, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19596, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19597, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19598, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19599, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19600, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19601, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19602, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19603, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19604, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19605, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19606, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19607, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19608, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19609, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19610, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19611, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19612, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19613, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19614, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19757, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19758, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19759, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19760, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19761, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19762, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19763, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19764, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19765, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19766, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19767, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19768, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19769, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19770, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19771, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19772, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19773, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19774, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19775, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19776, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19777, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19778, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19779, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19780, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19781, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19782, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19783, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19784, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19785, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19786, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19787, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19788, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19789, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19790, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19791, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19792, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19793, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19794, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19795, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19796, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19797, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19798, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19799, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19800, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19801, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19802, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19803, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19804, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19805, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19806, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19807, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19808, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19809, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19810, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19811, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19812, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19813, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19814, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19815, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19816, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19817, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19818, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19819, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19820, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19821, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19822, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19823, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19824, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19825, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19826, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19827, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19828, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19829, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19830, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19831, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19832, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19833, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19834, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19835, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19836, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19837, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19838, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19839, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19840, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19841, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19842, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19843, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19844, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19845, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19846, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19847, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19848, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19849, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19850, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19851, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19852, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19853, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19854, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19855, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19856, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19857, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19858, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19859, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19860, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19861, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19862, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19863, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19864, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:blast_furnace": { + "definition": { + "type": "minecraft:blast_furnace", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18428, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 18429, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 18430, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 18431, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 18432, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 18433, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 18434, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 18435, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "blue", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10935, + "properties": { + "rotation": "0" + } + }, + { + "id": 10936, + "properties": { + "rotation": "1" + } + }, + { + "id": 10937, + "properties": { + "rotation": "2" + } + }, + { + "id": 10938, + "properties": { + "rotation": "3" + } + }, + { + "id": 10939, + "properties": { + "rotation": "4" + } + }, + { + "id": 10940, + "properties": { + "rotation": "5" + } + }, + { + "id": 10941, + "properties": { + "rotation": "6" + } + }, + { + "id": 10942, + "properties": { + "rotation": "7" + } + }, + { + "id": 10943, + "properties": { + "rotation": "8" + } + }, + { + "id": 10944, + "properties": { + "rotation": "9" + } + }, + { + "id": 10945, + "properties": { + "rotation": "10" + } + }, + { + "id": 10946, + "properties": { + "rotation": "11" + } + }, + { + "id": 10947, + "properties": { + "rotation": "12" + } + }, + { + "id": 10948, + "properties": { + "rotation": "13" + } + }, + { + "id": 10949, + "properties": { + "rotation": "14" + } + }, + { + "id": 10950, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1864, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1865, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1866, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1867, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1868, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1869, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1870, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1871, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1872, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1873, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1874, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1875, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1876, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1877, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1878, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1879, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20917, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20918, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20919, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20920, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20921, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20922, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20923, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20924, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20925, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20926, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20927, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20928, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20929, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20930, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20931, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20932, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:blue_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21021, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21022, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10739 + } + ] + }, + "minecraft:blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12739 + } + ] + }, + "minecraft:blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:blue_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12755 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12708, + "properties": { + "facing": "north" + } + }, + { + "id": 12709, + "properties": { + "facing": "south" + } + }, + { + "id": 12710, + "properties": { + "facing": "west" + } + }, + { + "id": 12711, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_ice": { + "definition": { + "type": "minecraft:half_transparent", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12941 + } + ] + }, + "minecraft:blue_orchid": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2078 + } + ] + }, + "minecraft:blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12634, + "properties": { + "facing": "north" + } + }, + { + "id": 12635, + "properties": { + "facing": "east" + } + }, + { + "id": 12636, + "properties": { + "facing": "south" + } + }, + { + "id": 12637, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12638, + "properties": { + "facing": "up" + } + }, + { + "id": 12639, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5956 + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "blue", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9724, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9725, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9726, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9727, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9728, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9729, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9730, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9731, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9732, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9733, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9734, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9735, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9736, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9737, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9738, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9739, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9740, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9741, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9742, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9743, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9744, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9745, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9746, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9747, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9748, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9749, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9750, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9751, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9752, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9753, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9754, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9755, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9367 + } + ] + }, + "minecraft:blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11059, + "properties": { + "facing": "north" + } + }, + { + "id": 11060, + "properties": { + "facing": "south" + } + }, + { + "id": 11061, + "properties": { + "facing": "west" + } + }, + { + "id": 11062, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2058 + } + ] + }, + "minecraft:bone_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12546, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12547, + "properties": { + "axis": "y" + } + }, + { + "id": 12548, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bookshelf": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2096 + } + ] + }, + "minecraft:brain_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_brain_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12825, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12826, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_brain_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12809 + } + ] + }, + "minecraft:brain_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_brain_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12845, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12846, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_brain_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12901, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12902, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12903, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12904, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12905, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12906, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12907, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12908, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brewing_stand": { + "definition": { + "type": "minecraft:brewing_stand", + "properties": {} + }, + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7390, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 7391, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 7392, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "id": 7393, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + }, + { + "id": 7394, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 7395, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 7396, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "default": true, + "id": 7397, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + } + ] + }, + "minecraft:brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11258, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11259, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11260, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11261, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11262, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11263, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7029, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7030, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7031, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7032, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7033, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7034, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7035, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7036, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7037, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7038, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7039, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7040, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7041, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7042, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7043, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7044, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7045, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7046, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7047, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7048, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7049, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7050, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7051, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7052, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7053, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7054, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7055, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7056, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7057, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7058, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7059, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7060, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7061, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7062, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7063, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7064, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7065, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7066, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7067, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7068, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7069, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7070, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7071, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7072, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7073, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7074, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7075, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7076, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7077, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7078, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7079, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7080, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7081, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7082, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7083, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7084, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7085, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7086, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7087, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7088, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7089, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7090, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7091, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7092, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7093, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7094, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7095, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7096, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7097, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7098, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7099, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7100, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7101, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7102, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7103, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7104, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7105, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7106, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7107, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7108, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14160, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14161, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14162, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14163, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14164, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14165, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14166, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14167, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14168, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14169, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14170, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14171, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14172, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14173, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14174, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14175, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14176, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14177, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14178, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14179, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14180, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14181, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14182, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14183, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14184, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14185, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14186, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14187, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14188, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14189, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14190, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14191, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14192, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14193, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14194, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14195, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14196, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14197, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14198, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14199, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14200, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14201, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14202, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14203, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14204, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14205, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14206, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14207, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14208, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14209, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14210, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14211, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14212, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14213, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14214, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14215, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14216, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14217, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14218, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14219, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14220, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14221, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14222, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14223, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14224, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14225, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14226, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14227, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14228, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14229, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14230, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14231, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14232, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14233, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14376, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14377, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14378, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14379, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14380, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14381, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14382, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14383, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14384, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14385, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14386, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14387, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14388, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14389, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14390, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14391, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14392, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14393, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14394, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14395, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14396, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14397, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14398, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14399, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14400, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14401, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14402, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14403, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14404, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14405, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14406, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14407, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14408, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14409, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14410, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14411, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14412, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14413, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14414, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14415, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14416, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14417, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14418, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14419, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14420, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14421, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14422, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14423, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14424, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14425, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14426, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14427, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14428, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14429, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14430, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14431, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14432, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14433, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14434, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14435, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14436, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14437, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14438, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14439, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14440, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14441, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14442, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14443, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14444, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14445, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14446, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14447, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14448, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14449, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14450, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14451, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14452, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14453, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14454, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14455, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14456, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14457, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14458, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14459, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14460, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14461, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14462, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14463, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14464, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14465, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14466, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14467, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14468, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14469, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14470, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14471, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14472, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14473, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14474, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14475, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14476, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14477, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14478, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14479, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14480, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14481, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14482, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14483, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2093 + } + ] + }, + "minecraft:brown_banner": { + "definition": { + "type": "minecraft:banner", + "color": "brown", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10951, + "properties": { + "rotation": "0" + } + }, + { + "id": 10952, + "properties": { + "rotation": "1" + } + }, + { + "id": 10953, + "properties": { + "rotation": "2" + } + }, + { + "id": 10954, + "properties": { + "rotation": "3" + } + }, + { + "id": 10955, + "properties": { + "rotation": "4" + } + }, + { + "id": 10956, + "properties": { + "rotation": "5" + } + }, + { + "id": 10957, + "properties": { + "rotation": "6" + } + }, + { + "id": 10958, + "properties": { + "rotation": "7" + } + }, + { + "id": 10959, + "properties": { + "rotation": "8" + } + }, + { + "id": 10960, + "properties": { + "rotation": "9" + } + }, + { + "id": 10961, + "properties": { + "rotation": "10" + } + }, + { + "id": 10962, + "properties": { + "rotation": "11" + } + }, + { + "id": 10963, + "properties": { + "rotation": "12" + } + }, + { + "id": 10964, + "properties": { + "rotation": "13" + } + }, + { + "id": 10965, + "properties": { + "rotation": "14" + } + }, + { + "id": 10966, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:brown_bed": { + "definition": { + "type": "minecraft:bed", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1880, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1881, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1882, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1883, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1884, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1885, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1886, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1887, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1888, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1889, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1890, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1891, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1892, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1893, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1894, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1895, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:brown_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20933, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20934, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20935, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20936, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20937, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20938, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20939, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20940, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20941, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20942, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20943, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20944, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20945, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20946, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20947, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20948, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brown_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:brown_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21023, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21024, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:brown_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "brown", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10740 + } + ] + }, + "minecraft:brown_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12740 + } + ] + }, + "minecraft:brown_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:brown_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12756 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12712, + "properties": { + "facing": "north" + } + }, + { + "id": 12713, + "properties": { + "facing": "south" + } + }, + { + "id": 12714, + "properties": { + "facing": "west" + } + }, + { + "id": 12715, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_brown_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2089 + } + ] + }, + "minecraft:brown_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6549, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6550, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6551, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6552, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6553, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6554, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6555, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6556, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6557, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6558, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6559, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6560, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6561, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6562, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6563, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6564, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6565, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6566, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6567, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6568, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6569, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6570, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6571, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6572, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6573, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6574, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6575, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6576, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6577, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6578, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6579, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6580, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6581, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6582, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6583, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6584, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6585, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6586, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6587, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6588, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6589, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6590, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6591, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6592, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6593, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6594, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6595, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6596, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6597, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6598, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6599, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6600, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6601, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6602, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6603, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6604, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6605, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6606, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6607, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6608, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6609, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6610, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6611, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6612, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12640, + "properties": { + "facing": "north" + } + }, + { + "id": 12641, + "properties": { + "facing": "east" + } + }, + { + "id": 12642, + "properties": { + "facing": "south" + } + }, + { + "id": 12643, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12644, + "properties": { + "facing": "up" + } + }, + { + "id": 12645, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:brown_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "brown", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5957 + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "brown", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9756, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9757, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9758, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9759, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9760, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9761, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9762, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9763, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9764, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9765, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9766, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9767, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9768, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9769, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9770, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9771, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9772, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9773, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9774, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9775, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9776, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9777, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9778, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9779, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9780, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9781, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9782, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9783, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9784, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9785, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9786, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9787, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9368 + } + ] + }, + "minecraft:brown_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11063, + "properties": { + "facing": "north" + } + }, + { + "id": 11064, + "properties": { + "facing": "south" + } + }, + { + "id": 11065, + "properties": { + "facing": "west" + } + }, + { + "id": 11066, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2059 + } + ] + }, + "minecraft:bubble_column": { + "definition": { + "type": "minecraft:bubble_column", + "properties": {} + }, + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12960, + "properties": { + "drag": "true" + } + }, + { + "id": 12961, + "properties": { + "drag": "false" + } + } + ] + }, + "minecraft:bubble_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_bubble_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12827, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12828, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_bubble_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12810 + } + ] + }, + "minecraft:bubble_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_bubble_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12847, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12848, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_bubble_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12909, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12910, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12911, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12912, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12913, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12914, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12915, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12916, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:budding_amethyst": { + "definition": { + "type": "minecraft:budding_amethyst", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21032 + } + ] + }, + "minecraft:cactus": { + "definition": { + "type": "minecraft:cactus", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 5782, + "properties": { + "age": "0" + } + }, + { + "id": 5783, + "properties": { + "age": "1" + } + }, + { + "id": 5784, + "properties": { + "age": "2" + } + }, + { + "id": 5785, + "properties": { + "age": "3" + } + }, + { + "id": 5786, + "properties": { + "age": "4" + } + }, + { + "id": 5787, + "properties": { + "age": "5" + } + }, + { + "id": 5788, + "properties": { + "age": "6" + } + }, + { + "id": 5789, + "properties": { + "age": "7" + } + }, + { + "id": 5790, + "properties": { + "age": "8" + } + }, + { + "id": 5791, + "properties": { + "age": "9" + } + }, + { + "id": 5792, + "properties": { + "age": "10" + } + }, + { + "id": 5793, + "properties": { + "age": "11" + } + }, + { + "id": 5794, + "properties": { + "age": "12" + } + }, + { + "id": 5795, + "properties": { + "age": "13" + } + }, + { + "id": 5796, + "properties": { + "age": "14" + } + }, + { + "id": 5797, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:cake": { + "definition": { + "type": "minecraft:cake", + "properties": {} + }, + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ + { + "default": true, + "id": 5874, + "properties": { + "bites": "0" + } + }, + { + "id": 5875, + "properties": { + "bites": "1" + } + }, + { + "id": 5876, + "properties": { + "bites": "2" + } + }, + { + "id": 5877, + "properties": { + "bites": "3" + } + }, + { + "id": 5878, + "properties": { + "bites": "4" + } + }, + { + "id": 5879, + "properties": { + "bites": "5" + } + }, + { + "id": 5880, + "properties": { + "bites": "6" + } + } + ] + }, + "minecraft:calcite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22316 + } + ] + }, + "minecraft:calibrated_sculk_sensor": { + "definition": { + "type": "minecraft:calibrated_sculk_sensor", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22415, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22416, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22417, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22418, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22419, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22420, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22421, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22422, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22423, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22424, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22425, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22426, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22427, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22428, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22429, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22430, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22431, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22432, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22433, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22434, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22435, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22436, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22437, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22438, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22439, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22440, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22441, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22442, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22443, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22444, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22445, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22446, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22447, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22448, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22449, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22450, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22451, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22452, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22453, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22454, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22455, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22456, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22457, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22458, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22459, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22460, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22461, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22462, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22463, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22464, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22465, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22466, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22467, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22468, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22469, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22470, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22471, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22472, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22473, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22474, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22475, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22476, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22477, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22478, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22479, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22480, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22481, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22482, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22483, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22484, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22485, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22486, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22487, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22488, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22489, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22490, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22491, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22492, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22493, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22494, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22495, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22496, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22497, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22498, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22499, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22500, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22501, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22502, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22503, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22504, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22505, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22506, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22507, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22508, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22509, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22510, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22511, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22512, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22513, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22514, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22515, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22516, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22517, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22518, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22519, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22520, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22521, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22522, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22523, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22524, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22525, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22526, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22527, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22528, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22529, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22530, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22531, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22532, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22533, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22534, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22535, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22536, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22537, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22538, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22539, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22540, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22541, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22542, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22543, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22544, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22545, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22546, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22547, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22548, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22549, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22550, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22551, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22552, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22553, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22554, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22555, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22556, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22557, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22558, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22559, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22560, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22561, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22562, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22563, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22564, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22565, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22566, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22567, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22568, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22569, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22570, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22571, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22572, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22573, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22574, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22575, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22576, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22577, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22578, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22579, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22580, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22581, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22582, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22583, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22584, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22585, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22586, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22587, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22588, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22589, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22590, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22591, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22592, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22593, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22594, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22595, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22596, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22597, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22598, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22599, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22600, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22601, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22602, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22603, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22604, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22605, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22606, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22607, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22608, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22609, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22610, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22611, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22612, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22613, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22614, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22615, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22616, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22617, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22618, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22619, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22620, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22621, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22622, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22623, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22624, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22625, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22626, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22627, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22628, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22629, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22630, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22631, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22632, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22633, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22634, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22635, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22636, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22637, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22638, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22639, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22640, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22641, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22642, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22643, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22644, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22645, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22646, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22647, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22648, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22649, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22650, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22651, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22652, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22653, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22654, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22655, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22656, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22657, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22658, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22659, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22660, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22661, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22662, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22663, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22664, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22665, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22666, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22667, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22668, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22669, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22670, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22671, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22672, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22673, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22674, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22675, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22676, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22677, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22678, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22679, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22680, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22681, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22682, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22683, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22684, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22685, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22686, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22687, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22688, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22689, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22690, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22691, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22692, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22693, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22694, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22695, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22696, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22697, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22698, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22699, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22700, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22701, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22702, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22703, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22704, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22705, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22706, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22707, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22708, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22709, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22710, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22711, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22712, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22713, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22714, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22715, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22716, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22717, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22718, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22719, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22720, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22721, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22722, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22723, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22724, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22725, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22726, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22727, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22728, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22729, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22730, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22731, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22732, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22733, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22734, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22735, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22736, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22737, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22738, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22739, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22740, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22741, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22742, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22743, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22744, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22745, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22746, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22747, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22748, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22749, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22750, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22751, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22752, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22753, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22754, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22755, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22756, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22757, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22758, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22759, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22760, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22761, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22762, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22763, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22764, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22765, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22766, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22767, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22768, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22769, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22770, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22771, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22772, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22773, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22774, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22775, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22776, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22777, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22778, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22779, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22780, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22781, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22782, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22783, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22784, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22785, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22786, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22787, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22788, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22789, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22790, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22791, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22792, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22793, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22794, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22795, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22796, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22797, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22798, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 1, + "properties": {}, + "spawn_particles": true + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18511, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18512, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18513, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18514, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18515, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18516, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18517, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18518, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18519, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18520, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18521, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18522, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18523, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18524, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18525, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18526, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18527, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18528, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18529, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18530, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18531, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18532, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18533, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18534, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18535, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18536, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18537, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18538, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18539, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18540, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18541, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18542, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20725, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20726, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20727, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20728, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20729, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20730, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20731, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20732, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20733, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20734, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20735, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20736, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20737, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20738, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20739, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20740, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20997, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 20998, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:carrots": { + "definition": { + "type": "minecraft:carrot", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8595, + "properties": { + "age": "0" + } + }, + { + "id": 8596, + "properties": { + "age": "1" + } + }, + { + "id": 8597, + "properties": { + "age": "2" + } + }, + { + "id": 8598, + "properties": { + "age": "3" + } + }, + { + "id": 8599, + "properties": { + "age": "4" + } + }, + { + "id": 8600, + "properties": { + "age": "5" + } + }, + { + "id": 8601, + "properties": { + "age": "6" + } + }, + { + "id": 8602, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:cartography_table": { + "definition": { + "type": "minecraft:cartography_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18436 + } + ] + }, + "minecraft:carved_pumpkin": { + "definition": { + "type": "minecraft:carved_pumpkin", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5866, + "properties": { + "facing": "north" + } + }, + { + "id": 5867, + "properties": { + "facing": "south" + } + }, + { + "id": 5868, + "properties": { + "facing": "west" + } + }, + { + "id": 5869, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cauldron": { + "definition": { + "type": "minecraft:cauldron", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7398 + } + ] + }, + "minecraft:cave_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12959 + } + ] + }, + "minecraft:cave_vines": { + "definition": { + "type": "minecraft:cave_vines", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ], + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24769, + "properties": { + "age": "0", + "berries": "true" + } + }, + { + "default": true, + "id": 24770, + "properties": { + "age": "0", + "berries": "false" + } + }, + { + "id": 24771, + "properties": { + "age": "1", + "berries": "true" + } + }, + { + "id": 24772, + "properties": { + "age": "1", + "berries": "false" + } + }, + { + "id": 24773, + "properties": { + "age": "2", + "berries": "true" + } + }, + { + "id": 24774, + "properties": { + "age": "2", + "berries": "false" + } + }, + { + "id": 24775, + "properties": { + "age": "3", + "berries": "true" + } + }, + { + "id": 24776, + "properties": { + "age": "3", + "berries": "false" + } + }, + { + "id": 24777, + "properties": { + "age": "4", + "berries": "true" + } + }, + { + "id": 24778, + "properties": { + "age": "4", + "berries": "false" + } + }, + { + "id": 24779, + "properties": { + "age": "5", + "berries": "true" + } + }, + { + "id": 24780, + "properties": { + "age": "5", + "berries": "false" + } + }, + { + "id": 24781, + "properties": { + "age": "6", + "berries": "true" + } + }, + { + "id": 24782, + "properties": { + "age": "6", + "berries": "false" + } + }, + { + "id": 24783, + "properties": { + "age": "7", + "berries": "true" + } + }, + { + "id": 24784, + "properties": { + "age": "7", + "berries": "false" + } + }, + { + "id": 24785, + "properties": { + "age": "8", + "berries": "true" + } + }, + { + "id": 24786, + "properties": { + "age": "8", + "berries": "false" + } + }, + { + "id": 24787, + "properties": { + "age": "9", + "berries": "true" + } + }, + { + "id": 24788, + "properties": { + "age": "9", + "berries": "false" + } + }, + { + "id": 24789, + "properties": { + "age": "10", + "berries": "true" + } + }, + { + "id": 24790, + "properties": { + "age": "10", + "berries": "false" + } + }, + { + "id": 24791, + "properties": { + "age": "11", + "berries": "true" + } + }, + { + "id": 24792, + "properties": { + "age": "11", + "berries": "false" + } + }, + { + "id": 24793, + "properties": { + "age": "12", + "berries": "true" + } + }, + { + "id": 24794, + "properties": { + "age": "12", + "berries": "false" + } + }, + { + "id": 24795, + "properties": { + "age": "13", + "berries": "true" + } + }, + { + "id": 24796, + "properties": { + "age": "13", + "berries": "false" + } + }, + { + "id": 24797, + "properties": { + "age": "14", + "berries": "true" + } + }, + { + "id": 24798, + "properties": { + "age": "14", + "berries": "false" + } + }, + { + "id": 24799, + "properties": { + "age": "15", + "berries": "true" + } + }, + { + "id": 24800, + "properties": { + "age": "15", + "berries": "false" + } + }, + { + "id": 24801, + "properties": { + "age": "16", + "berries": "true" + } + }, + { + "id": 24802, + "properties": { + "age": "16", + "berries": "false" + } + }, + { + "id": 24803, + "properties": { + "age": "17", + "berries": "true" + } + }, + { + "id": 24804, + "properties": { + "age": "17", + "berries": "false" + } + }, + { + "id": 24805, + "properties": { + "age": "18", + "berries": "true" + } + }, + { + "id": 24806, + "properties": { + "age": "18", + "berries": "false" + } + }, + { + "id": 24807, + "properties": { + "age": "19", + "berries": "true" + } + }, + { + "id": 24808, + "properties": { + "age": "19", + "berries": "false" + } + }, + { + "id": 24809, + "properties": { + "age": "20", + "berries": "true" + } + }, + { + "id": 24810, + "properties": { + "age": "20", + "berries": "false" + } + }, + { + "id": 24811, + "properties": { + "age": "21", + "berries": "true" + } + }, + { + "id": 24812, + "properties": { + "age": "21", + "berries": "false" + } + }, + { + "id": 24813, + "properties": { + "age": "22", + "berries": "true" + } + }, + { + "id": 24814, + "properties": { + "age": "22", + "berries": "false" + } + }, + { + "id": 24815, + "properties": { + "age": "23", + "berries": "true" + } + }, + { + "id": 24816, + "properties": { + "age": "23", + "berries": "false" + } + }, + { + "id": 24817, + "properties": { + "age": "24", + "berries": "true" + } + }, + { + "id": 24818, + "properties": { + "age": "24", + "berries": "false" + } + }, + { + "id": 24819, + "properties": { + "age": "25", + "berries": "true" + } + }, + { + "id": 24820, + "properties": { + "age": "25", + "berries": "false" + } + } + ] + }, + "minecraft:cave_vines_plant": { + "definition": { + "type": "minecraft:cave_vines_plant", + "properties": {} + }, + "properties": { + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24821, + "properties": { + "berries": "true" + } + }, + { + "default": true, + "id": 24822, + "properties": { + "berries": "false" + } + } + ] + }, + "minecraft:chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6773, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 6774, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 6775, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6776, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 6777, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 6778, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chain_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": true, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12527, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 12528, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 12529, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 12530, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 12531, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 12532, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 12533, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 12534, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 12535, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 12536, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 12537, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 12538, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:cherry_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "cherry", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8731, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8732, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8733, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8734, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8735, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8736, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8737, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8738, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8739, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8740, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8741, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8742, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8743, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8744, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8745, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8746, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8747, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8748, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8749, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8750, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8751, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8752, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8753, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8754, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12078, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12079, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12080, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12081, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12082, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12083, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12084, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12085, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12086, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12087, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12088, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12089, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12090, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12091, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12092, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12093, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12094, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12095, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12096, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12097, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12098, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12099, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12100, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12101, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12102, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12103, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12104, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12105, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12106, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12107, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12108, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12109, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12110, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12111, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12112, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12113, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12114, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12115, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12116, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12117, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12118, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12119, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12120, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12121, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12122, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12123, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12124, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12125, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12126, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12127, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12128, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12129, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12130, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12131, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12132, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12133, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12134, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12135, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12136, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12137, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12138, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12139, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12140, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12141, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11694, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11695, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11696, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11697, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11698, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11699, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11700, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11701, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11702, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11703, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11704, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11705, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11706, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11707, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11708, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11709, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11710, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11711, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11712, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11713, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11714, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11715, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11716, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11717, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11718, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11719, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11720, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11721, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11722, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11723, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11724, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11725, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cherry_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11438, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11439, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11440, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11441, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11442, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11443, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11444, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11445, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11446, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11447, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11448, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11449, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11450, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11451, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11452, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11453, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11454, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11455, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11456, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11457, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11458, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11459, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11460, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11461, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11462, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11463, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11464, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11465, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11466, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11467, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11468, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11469, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5090, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5091, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5092, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5093, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5094, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5095, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5096, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5097, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5098, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5099, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5100, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5101, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5102, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5103, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5104, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5105, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5106, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5107, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5108, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5109, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5110, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5111, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5112, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5113, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5114, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5115, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5116, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5117, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5118, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5119, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5120, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5121, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5122, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5123, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5124, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5125, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5126, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5127, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5128, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5129, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5130, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5131, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5132, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5133, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5134, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5135, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5136, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5137, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5138, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5139, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5140, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5141, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5142, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5143, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5144, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5145, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5146, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5147, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5148, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5149, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5150, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5151, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5152, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5153, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_leaves": { + "definition": { + "type": "minecraft:cherry_leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 377, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 378, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 379, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 380, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 381, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 382, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 383, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 384, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 385, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 386, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 387, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 388, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 389, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 390, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 391, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 392, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 393, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 394, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 395, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 396, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 397, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 398, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 399, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 400, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 401, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 402, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 403, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 404, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 145, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 146, + "properties": { + "axis": "y" + } + }, + { + "id": 147, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:cherry_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20 + } + ] + }, + "minecraft:cherry_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5726, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5727, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:cherry_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "cherry" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 35, + "properties": { + "stage": "0" + } + }, + { + "id": 36, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:cherry_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4430, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4431, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4432, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4433, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4434, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4435, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4436, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4437, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4438, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4439, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4440, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4441, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4442, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4443, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4444, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4445, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4446, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4447, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4448, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4449, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4450, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4451, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4452, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4453, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4454, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4455, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4456, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4457, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4458, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4459, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4460, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4461, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11192, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11193, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11194, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11195, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11196, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11197, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cherry_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9964, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9965, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9966, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9967, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9968, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9969, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9970, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9971, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9972, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9973, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9974, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9975, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9976, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9977, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9978, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9979, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9980, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9981, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9982, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9983, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9984, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9985, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9986, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9987, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9988, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9989, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9990, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9991, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9992, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9993, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9994, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9995, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9996, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9997, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9998, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9999, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10000, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10001, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10002, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10003, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10004, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10005, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10006, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10007, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10008, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10009, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10010, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10011, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10012, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10013, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10014, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10015, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10016, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10017, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10018, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10019, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10020, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10021, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10022, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10023, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10024, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10025, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10026, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10027, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10028, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10029, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10030, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10031, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10032, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10033, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10036, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10037, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10038, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10039, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10040, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10041, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10042, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10043, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6281, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6282, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6283, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6284, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6285, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6286, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6287, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6288, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6289, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6290, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6291, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6292, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6293, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6294, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6295, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6296, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6297, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6298, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6299, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6300, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6301, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6302, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6303, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6304, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6305, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6306, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6307, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6308, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6309, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6310, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6311, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6312, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6313, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6314, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6315, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6316, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6317, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6318, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6319, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6320, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6321, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6322, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6323, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6324, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6325, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6326, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6327, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6328, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6329, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6330, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6331, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6332, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6333, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6334, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6335, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6336, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6337, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6338, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6339, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6340, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6341, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6342, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6343, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6344, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5570, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5571, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5572, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5573, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5574, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5575, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5576, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5577, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4794, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4795, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4796, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4797, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4798, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4799, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4800, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4801, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 204, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 205, + "properties": { + "axis": "y" + } + }, + { + "id": 206, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:chest": { + "definition": { + "type": "minecraft:chest", + "properties": {} + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2954, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2955, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2956, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2957, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2958, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 2959, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 2960, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2961, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2962, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2963, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2964, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 2965, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 2966, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2967, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2968, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2969, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2970, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 2971, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 2972, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2973, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2974, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2975, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 2976, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 2977, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chipped_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9111, + "properties": { + "facing": "north" + } + }, + { + "id": 9112, + "properties": { + "facing": "south" + } + }, + { + "id": 9113, + "properties": { + "facing": "west" + } + }, + { + "id": 9114, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:chiseled_bookshelf": { + "definition": { + "type": "minecraft:chiseled_book_shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "slot_0_occupied": [ + "true", + "false" + ], + "slot_1_occupied": [ + "true", + "false" + ], + "slot_2_occupied": [ + "true", + "false" + ], + "slot_3_occupied": [ + "true", + "false" + ], + "slot_4_occupied": [ + "true", + "false" + ], + "slot_5_occupied": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2097, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2098, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2099, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2100, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2101, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2102, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2103, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2104, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2105, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2106, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2107, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2108, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2109, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2110, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2111, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2112, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2113, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2114, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2115, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2116, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2117, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2118, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2119, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2120, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2121, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2122, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2123, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2124, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2125, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2126, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2127, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2128, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2129, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2130, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2131, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2132, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2133, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2134, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2135, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2136, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2137, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2138, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2139, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2140, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2141, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2142, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2143, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2144, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2145, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2146, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2147, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2148, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2149, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2150, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2151, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2152, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2153, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2154, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2155, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2156, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2157, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2158, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2159, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "default": true, + "id": 2160, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2161, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2162, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2163, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2164, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2165, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2166, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2167, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2168, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2169, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2170, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2171, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2172, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2173, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2174, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2175, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2176, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2177, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2178, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2179, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2180, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2181, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2182, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2183, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2184, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2185, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2186, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2187, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2188, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2189, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2190, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2191, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2192, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2193, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2194, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2195, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2196, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2197, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2198, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2199, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2200, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2201, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2202, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2203, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2204, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2205, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2206, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2207, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2208, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2209, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2210, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2211, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2212, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2213, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2214, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2215, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2216, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2217, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2218, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2219, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2220, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2221, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2222, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2223, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2224, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2225, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2226, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2227, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2228, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2229, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2230, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2231, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2232, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2233, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2234, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2235, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2236, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2237, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2238, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2239, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2240, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2241, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2242, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2243, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2244, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2245, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2246, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2247, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2248, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2249, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2250, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2251, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2252, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2253, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2254, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2255, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2256, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2257, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2258, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2259, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2260, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2261, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2262, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2263, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2264, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2265, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2266, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2267, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2268, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2269, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2270, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2271, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2272, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2273, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2274, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2275, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2276, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2277, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2278, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2279, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2280, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2281, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2282, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2283, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2284, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2285, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2286, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2287, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2288, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2289, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2290, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2291, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2292, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2293, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2294, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2295, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2296, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2297, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2298, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2299, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2300, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2301, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2302, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2303, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2304, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2305, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2306, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2307, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2308, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2309, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2310, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2311, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2312, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2313, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2314, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2315, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2316, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2317, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2318, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2319, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2320, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2321, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2322, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2323, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2324, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2325, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2326, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2327, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2328, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2329, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2330, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2331, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2332, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2333, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2334, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2335, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2336, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2337, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2338, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2339, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2340, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2341, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2342, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2343, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2344, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2345, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2346, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2347, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2348, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2349, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2350, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2351, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2352, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + } + ] + }, + "minecraft:chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 22951 + } + ] + }, + "minecraft:chiseled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26551 + } + ] + }, + "minecraft:chiseled_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20722 + } + ] + }, + "minecraft:chiseled_polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19874 + } + ] + }, + "minecraft:chiseled_quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9236 + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11080 + } + ] + }, + "minecraft:chiseled_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 536 + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6540 + } + ] + }, + "minecraft:chiseled_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21903 + } + ] + }, + "minecraft:chiseled_tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22315 + } + ] + }, + "minecraft:chorus_flower": { + "definition": { + "type": "minecraft:chorus_flower", + "plant": "minecraft:chorus_plant", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 12404, + "properties": { + "age": "0" + } + }, + { + "id": 12405, + "properties": { + "age": "1" + } + }, + { + "id": 12406, + "properties": { + "age": "2" + } + }, + { + "id": 12407, + "properties": { + "age": "3" + } + }, + { + "id": 12408, + "properties": { + "age": "4" + } + }, + { + "id": 12409, + "properties": { + "age": "5" + } + } + ] + }, + "minecraft:chorus_plant": { + "definition": { + "type": "minecraft:chorus_plant", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12340, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12341, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12342, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12343, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12344, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12345, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12346, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12347, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12348, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12349, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12350, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12351, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12352, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12353, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12354, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12355, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12356, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12357, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12358, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12359, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12360, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12361, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12362, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12363, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12364, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12365, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12366, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12367, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12368, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12369, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12370, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12371, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12372, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12373, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12374, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12375, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12376, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12377, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12378, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12379, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12380, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12381, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12382, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12383, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12384, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12385, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12386, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12387, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12388, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12389, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12390, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12391, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12392, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12393, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12394, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 12395, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 12396, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 12397, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 12398, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 12399, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 12400, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 12401, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 12402, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 12403, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:clay": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5798 + } + ] + }, + "minecraft:coal_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10745 + } + ] + }, + "minecraft:coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 127 + } + ] + }, + "minecraft:coarse_dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11 + } + ] + }, + "minecraft:cobbled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24907 + } + ] + }, + "minecraft:cobbled_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24988, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 24989, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 24990, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24991, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 24992, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 24993, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobbled_deepslate" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24908, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24909, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24910, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24911, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24912, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24913, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24914, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24915, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24916, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24917, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24918, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24919, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24920, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24924, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24925, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24926, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24927, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24928, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24929, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24930, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24931, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24932, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24933, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24934, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24935, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24936, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24937, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24938, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24939, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24940, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24947, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24948, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24949, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24950, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24951, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24952, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24953, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24954, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24955, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24956, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24957, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24958, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24959, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24960, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24967, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24968, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24969, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24970, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24971, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24972, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24973, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24974, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24975, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24976, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24977, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24978, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24979, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24980, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24985, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24986, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24987, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 24994, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24995, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24996, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 24997, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24998, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24999, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25000, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25001, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25002, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25003, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25004, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25005, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25006, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25007, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25008, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25009, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25010, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25011, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25012, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25013, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25014, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25015, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25016, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25017, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25018, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25019, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25020, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25021, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25022, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25023, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25024, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25025, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25026, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25027, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25028, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25029, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25030, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25031, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25033, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25034, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25035, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25036, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25037, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25038, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25039, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25040, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25041, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25042, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25043, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25044, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25045, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25046, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25047, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25048, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25049, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25050, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25051, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25052, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25053, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25054, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25055, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25056, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25057, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25058, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25059, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25060, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25061, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25062, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25063, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25064, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25065, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25066, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25067, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25068, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25069, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25070, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25071, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25072, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25073, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25074, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25075, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25076, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25077, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25078, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25082, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25083, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25084, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25085, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25086, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25087, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25088, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25089, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25094, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25095, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25096, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25097, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25098, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25099, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25100, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25101, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25102, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25103, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25104, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25105, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25106, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25107, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25108, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25109, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25110, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25111, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25112, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25113, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25114, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25115, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25116, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25117, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25118, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25119, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25120, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25121, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25122, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25123, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25124, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25125, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25126, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25127, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25128, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25129, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25130, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25131, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25132, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25133, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25134, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25135, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25136, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25137, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25138, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25139, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25140, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25141, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25142, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25143, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25144, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25145, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25146, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25147, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25148, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25149, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25150, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25151, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25152, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25153, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25154, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25155, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25156, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25157, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25158, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25159, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25160, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25161, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25162, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25163, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25164, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25165, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25166, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25167, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25168, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25169, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25170, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25171, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25172, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25173, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25174, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25175, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25176, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25177, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25178, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25179, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25180, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25181, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25182, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25183, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25184, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25185, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25186, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25190, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25191, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25192, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25193, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25194, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25195, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25196, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25197, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25202, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25203, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25204, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25205, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25206, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25207, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25208, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25209, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25210, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25211, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25212, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25213, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25214, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25215, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25216, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25217, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25218, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25219, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25220, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25221, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25222, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25226, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25227, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25228, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25229, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25230, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25231, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25232, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25233, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25238, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25239, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25240, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25241, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25242, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25243, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25244, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25245, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25246, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25247, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25248, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25249, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25250, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25251, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25252, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25253, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25254, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25255, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25256, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25257, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25258, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25262, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25263, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25264, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25265, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25266, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25267, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25268, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25269, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25274, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25275, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25276, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25277, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25278, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25279, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25280, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25281, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25282, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25283, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25284, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25285, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25286, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25287, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25288, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25289, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25290, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25291, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25292, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25293, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25298, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25299, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25300, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25301, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25302, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25303, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25304, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25305, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25309, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25310, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25311, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25312, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25313, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25314, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25315, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25316, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25317, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14 + } + ] + }, + "minecraft:cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11252, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11253, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11254, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11255, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11256, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11257, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobblestone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4682, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4683, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4684, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4685, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4686, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4687, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4688, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4689, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4690, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4691, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4698, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4699, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4700, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4701, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4702, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4703, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4704, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4705, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4706, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4707, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4708, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4709, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4710, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4711, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4719, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4720, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4721, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4722, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4723, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4724, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4725, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4726, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4727, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4728, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4729, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4730, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4731, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4739, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4740, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4741, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4742, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4743, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4744, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4745, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4746, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4747, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4748, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4749, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4750, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4751, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 4752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 4753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 4754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 4755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 4756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 4757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 4758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 4759, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 4760, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 4761, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 7919, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7920, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7921, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 7922, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7923, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7924, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7925, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7926, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7927, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7928, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7929, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7930, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7931, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7932, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7933, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7934, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7935, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7936, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7937, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7938, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7939, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7940, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7941, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7942, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7943, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7944, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7945, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7946, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7947, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7948, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7949, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7950, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7951, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7952, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7953, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7954, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7955, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7956, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7957, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7958, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7959, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7960, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7961, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7962, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7963, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7964, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7965, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7966, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7967, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7968, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7969, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7970, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7971, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7972, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7973, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7974, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7975, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7976, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7977, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7978, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7979, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7980, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7981, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7982, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7983, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7984, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7985, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7986, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7987, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7988, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7989, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7990, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7991, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7992, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7993, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 7994, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 7995, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 7996, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 7997, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 7998, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 7999, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8000, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8001, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8002, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8003, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8004, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8005, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8006, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8007, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8008, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8009, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8010, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8011, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8012, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8013, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8014, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8015, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8016, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8017, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8018, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8019, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8020, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8021, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8022, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8023, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8024, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8025, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8026, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8027, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8028, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8029, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8030, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8031, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8032, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8033, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8034, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8035, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8036, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8037, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8038, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8039, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8040, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8041, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8042, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8043, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8044, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8045, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8046, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8047, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8048, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8049, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8050, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8051, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8052, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8053, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8054, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8055, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8056, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8057, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8058, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8059, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8060, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8061, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8062, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8063, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8064, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8065, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8066, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8067, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8068, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8069, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8070, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8071, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8072, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8073, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8074, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8075, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8076, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8077, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8078, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8079, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8080, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8081, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8082, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8083, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8084, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8085, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8086, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8087, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8088, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8089, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8090, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8091, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8092, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8093, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8094, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8095, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8096, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8097, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8098, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8099, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8100, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8101, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8102, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8103, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8104, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8105, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8106, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8107, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8108, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8109, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8110, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8111, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8112, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8113, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8114, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8115, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8116, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8117, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8118, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8119, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8120, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8121, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8122, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8123, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8124, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8125, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8126, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8127, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8128, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8129, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8130, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8131, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8132, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8133, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8134, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8135, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8136, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8137, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8138, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8139, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8140, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8141, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8142, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8143, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8144, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8145, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8146, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8147, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8148, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8149, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8150, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8151, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8152, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8153, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8154, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8155, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8156, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8157, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8158, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8159, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8160, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8161, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8162, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8163, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8164, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8165, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8166, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8167, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8168, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8169, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8170, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8171, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8172, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8173, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8174, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8175, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8176, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8177, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8178, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8179, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8180, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8181, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8182, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8183, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8184, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8185, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8186, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8187, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8188, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8189, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8190, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8191, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8192, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8193, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8194, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8195, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8196, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8197, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8198, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8199, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8200, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8201, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8202, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8203, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8204, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8205, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8206, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8207, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8208, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8209, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8210, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8211, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8212, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8213, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8214, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8215, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8216, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8217, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8218, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8219, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8220, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8221, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8222, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8223, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8224, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8225, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8226, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8227, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8228, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8229, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8230, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8231, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8232, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8233, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8234, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8235, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8236, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8237, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8238, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8239, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8240, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8241, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8242, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobweb": { + "definition": { + "type": "minecraft:web", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2004 + } + ] + }, + "minecraft:cocoa": { + "definition": { + "type": "minecraft:cocoa", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7419, + "properties": { + "age": "0", + "facing": "north" + } + }, + { + "id": 7420, + "properties": { + "age": "0", + "facing": "south" + } + }, + { + "id": 7421, + "properties": { + "age": "0", + "facing": "west" + } + }, + { + "id": 7422, + "properties": { + "age": "0", + "facing": "east" + } + }, + { + "id": 7423, + "properties": { + "age": "1", + "facing": "north" + } + }, + { + "id": 7424, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 7425, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 7426, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 7427, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 7428, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 7429, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 7430, + "properties": { + "age": "2", + "facing": "east" + } + } + ] + }, + "minecraft:command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 7906, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 7907, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 7908, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 7909, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 7910, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 7911, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 7912, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 7913, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 7914, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 7915, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 7916, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 7917, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:comparator": { + "definition": { + "type": "minecraft:comparator", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9175, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "true" + } + }, + { + "default": true, + "id": 9176, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9177, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9178, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9179, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9180, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9181, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9182, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9183, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9184, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9185, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9186, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 9187, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 9188, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 9189, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 9190, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "false" + } + } + ] + }, + "minecraft:composter": { + "definition": { + "type": "minecraft:composter", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 19372, + "properties": { + "level": "0" + } + }, + { + "id": 19373, + "properties": { + "level": "1" + } + }, + { + "id": 19374, + "properties": { + "level": "2" + } + }, + { + "id": 19375, + "properties": { + "level": "3" + } + }, + { + "id": 19376, + "properties": { + "level": "4" + } + }, + { + "id": 19377, + "properties": { + "level": "5" + } + }, + { + "id": 19378, + "properties": { + "level": "6" + } + }, + { + "id": 19379, + "properties": { + "level": "7" + } + }, + { + "id": 19380, + "properties": { + "level": "8" + } + } + ] + }, + "minecraft:conduit": { + "definition": { + "type": "minecraft:conduit", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12942, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12943, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_block": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 22938 + } + ] + }, + "minecraft:copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24692, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24693, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24694, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24695, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23652, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23653, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23654, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23655, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23660, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23661, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23662, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23663, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23664, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23665, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23666, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23668, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23669, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23670, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23671, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23672, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23673, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23674, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23676, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23677, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23678, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23679, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23680, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23681, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23682, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23684, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23685, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23686, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23687, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23688, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23689, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23690, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23692, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23693, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23694, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23695, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23696, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23697, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23698, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23700, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23701, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23702, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23703, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23704, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23705, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23706, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23708, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23709, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23710, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24676, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24677, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22942 + } + ] + }, + "minecraft:copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24164, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24165, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24166, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24167, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24168, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24169, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24170, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24171, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24172, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24173, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24174, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24175, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24176, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24177, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24178, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24179, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24180, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24181, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24182, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24183, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24184, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24185, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24186, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24187, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24188, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24189, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24190, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24191, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24192, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24193, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24194, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24195, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24196, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24197, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24198, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24199, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24200, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24201, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24202, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24203, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24204, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24205, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24206, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24207, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24208, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24209, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24210, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24211, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24212, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24213, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24214, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24215, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24216, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24217, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24218, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24219, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24220, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24221, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24222, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24223, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24224, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24225, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24226, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24227, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cornflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 120, + "id": "minecraft:jump_boost" + } + ] + }, + "states": [ + { + "default": true, + "id": 2086 + } + ] + }, + "minecraft:cracked_deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26552 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26553 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20723 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19873 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6539 + } + ] + }, + "minecraft:crafter": { + "definition": { + "type": "minecraft:crafter", + "properties": {} + }, + "properties": { + "crafting": [ + "true", + "false" + ], + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26590, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 26591, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 26592, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 26593, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 26594, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 26595, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 26596, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 26597, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 26598, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 26599, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 26600, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 26601, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 26602, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 26603, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 26604, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 26605, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 26606, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 26607, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 26608, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 26609, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 26610, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "id": 26611, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 26612, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 26613, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "false" + } + }, + { + "id": 26614, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 26615, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 26616, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 26617, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 26618, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 26619, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 26620, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 26621, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 26622, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 26623, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 26624, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 26625, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 26626, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 26627, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 26628, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 26629, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 26630, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 26631, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 26632, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 26633, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 26634, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "default": true, + "id": 26635, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 26636, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 26637, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "false" + } + } + ] + }, + "minecraft:crafting_table": { + "definition": { + "type": "minecraft:crafting_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 4277 + } + ] + }, + "minecraft:creeper_head": { + "definition": { + "type": "minecraft:skull", + "kind": "creeper", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8987, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8988, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8989, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8990, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8991, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8992, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8993, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8994, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8995, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8996, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8997, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8998, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8999, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 9000, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 9001, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "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" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "creeper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9019, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9020, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 9021, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 9022, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 9023, + "properties": { + "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" + } + } + ] + }, + "minecraft:crimson_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "crimson", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19100, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19101, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19102, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19103, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19104, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19105, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19106, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19107, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19108, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 19109, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19110, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19111, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19112, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19113, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19114, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19115, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19116, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19117, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19118, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19119, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19120, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19121, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19122, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19123, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19148, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19149, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19150, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19151, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19152, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19153, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19154, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19155, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19156, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19157, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19158, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 19159, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19160, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19161, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19162, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19163, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19164, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19165, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19166, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19167, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19168, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19169, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19170, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19171, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19172, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19173, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19174, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19175, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19176, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19177, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19178, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19179, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19180, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19181, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19182, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19183, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19184, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19185, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19186, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19187, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19188, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19189, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19190, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19191, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19192, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19193, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19194, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19195, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19196, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19197, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19198, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19199, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19200, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19201, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19202, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19203, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19204, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19205, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19206, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19207, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19208, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19209, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19210, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19211, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18684, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18685, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18686, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18687, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18688, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18689, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18690, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18691, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18692, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18693, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18694, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18695, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18696, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18697, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18698, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18699, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18700, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18701, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18702, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18703, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18704, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18705, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18706, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18707, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18708, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18709, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18710, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18711, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18712, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18713, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18714, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 18715, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:crimson_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18876, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18877, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18878, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18879, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18880, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18881, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18882, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 18883, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18884, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18885, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18886, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18887, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18888, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18889, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18890, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18891, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18892, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18893, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18894, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18895, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18896, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18897, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18898, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18899, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18900, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18901, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18902, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18903, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18904, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18905, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18906, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18907, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fungus": { + "definition": { + "type": "minecraft:fungus", + "feature": "minecraft:crimson_fungus_planted", + "grows_on": "minecraft:crimson_nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18609 + } + ] + }, + "minecraft:crimson_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5282, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5283, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5284, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5285, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5286, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5287, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5288, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5289, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5290, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5291, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5292, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5293, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5294, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5295, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5296, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5297, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5298, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5299, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5300, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5301, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5302, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5303, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5304, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5305, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5306, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5307, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5308, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5309, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5310, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5311, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5312, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5313, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5314, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5315, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5316, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5317, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5318, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5319, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5320, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5321, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5322, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5323, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5324, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5325, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5326, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5327, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5328, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5329, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5330, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5331, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5332, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5333, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5334, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5335, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5336, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5337, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5338, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5339, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5340, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5341, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5342, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5343, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5344, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5345, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18602, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18603, + "properties": { + "axis": "y" + } + }, + { + "id": 18604, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18608 + } + ] + }, + "minecraft:crimson_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18666 + } + ] + }, + "minecraft:crimson_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18680, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 18681, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "definition": { + "type": "minecraft:roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18665 + } + ] + }, + "minecraft:crimson_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19276, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19277, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 19278, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 19279, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 19280, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 19281, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 19282, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 19283, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 19284, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 19285, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 19286, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 19287, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 19288, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 19289, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 19290, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 19291, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 19292, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 19293, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 19294, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 19295, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 19296, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 19297, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 19298, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 19299, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 19300, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 19301, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 19302, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 19303, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 19304, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 19305, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 19306, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 19307, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18668, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 18669, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 18670, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18671, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 18672, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 18673, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:crimson_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18940, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18941, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18942, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18943, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18944, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18945, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18946, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18947, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18948, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18949, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18950, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18951, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18952, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18953, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18954, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18955, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18956, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18957, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18958, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18959, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18960, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18961, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18962, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18963, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18964, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18965, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18966, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18967, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18968, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18969, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18970, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18973, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18974, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18975, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18976, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18977, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18978, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18979, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18980, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18981, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18982, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18983, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18984, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18985, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18986, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18987, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18988, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18989, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 18990, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 18991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 18992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 18993, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 18994, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 18995, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 18996, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 18997, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 18998, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 18999, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19000, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19001, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19002, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19003, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19004, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19005, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19006, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19007, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19008, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19009, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19013, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19014, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19015, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19016, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19017, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19018, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19019, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18596, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18597, + "properties": { + "axis": "y" + } + }, + { + "id": 18598, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18748, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18749, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18750, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18751, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18752, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18753, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18754, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18755, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18756, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18757, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18758, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18759, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18760, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18761, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18762, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18763, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18764, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18765, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18766, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18767, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18768, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18769, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18770, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18771, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18772, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18773, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18774, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18775, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18776, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18777, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18778, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18779, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18780, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18781, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18782, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18783, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18784, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18785, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18786, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18787, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18788, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18789, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18790, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18791, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18792, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18793, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18794, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18795, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18796, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18797, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18798, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18799, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18800, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18801, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18802, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18803, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18804, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18805, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18806, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18807, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18808, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18809, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18810, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18811, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5602, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5603, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5604, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5605, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5606, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5607, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5608, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5609, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19340, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19341, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 19342, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 19343, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 19344, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 19345, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 19346, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 19347, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crying_obsidian": { + "definition": { + "type": "minecraft:crying_obsidian", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19449 + } + ] + }, + "minecraft:cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 22947 + } + ] + }, + "minecraft:cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23294, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23295, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23296, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23297, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23298, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23299, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:cut_copper" + }, + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23196, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23197, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23198, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23199, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23200, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23201, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23202, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23203, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23204, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23205, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23206, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23207, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23208, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23209, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23210, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23211, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23212, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23213, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23214, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23215, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23216, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23217, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23218, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23219, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23220, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23221, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23222, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23223, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23224, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23225, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23226, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23227, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23228, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23229, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23230, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23231, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23233, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23236, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23237, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23238, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23239, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23240, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23241, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23242, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23243, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23244, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23245, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23246, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23247, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23248, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23249, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23250, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23251, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23252, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23253, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23256, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23257, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23258, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23259, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23260, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23261, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23262, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23263, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23264, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23265, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23268, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23269, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23270, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23271, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23272, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23273, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23274, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23275, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11081 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11294, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11295, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11296, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11297, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11298, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11299, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 537 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11240, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11241, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11242, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11243, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11244, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11245, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_banner": { + "definition": { + "type": "minecraft:banner", + "color": "cyan", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10903, + "properties": { + "rotation": "0" + } + }, + { + "id": 10904, + "properties": { + "rotation": "1" + } + }, + { + "id": 10905, + "properties": { + "rotation": "2" + } + }, + { + "id": 10906, + "properties": { + "rotation": "3" + } + }, + { + "id": 10907, + "properties": { + "rotation": "4" + } + }, + { + "id": 10908, + "properties": { + "rotation": "5" + } + }, + { + "id": 10909, + "properties": { + "rotation": "6" + } + }, + { + "id": 10910, + "properties": { + "rotation": "7" + } + }, + { + "id": 10911, + "properties": { + "rotation": "8" + } + }, + { + "id": 10912, + "properties": { + "rotation": "9" + } + }, + { + "id": 10913, + "properties": { + "rotation": "10" + } + }, + { + "id": 10914, + "properties": { + "rotation": "11" + } + }, + { + "id": 10915, + "properties": { + "rotation": "12" + } + }, + { + "id": 10916, + "properties": { + "rotation": "13" + } + }, + { + "id": 10917, + "properties": { + "rotation": "14" + } + }, + { + "id": 10918, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:cyan_bed": { + "definition": { + "type": "minecraft:bed", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1832, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1833, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1834, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1835, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1836, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1837, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1838, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1839, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1840, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1841, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1842, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1843, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1844, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1845, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1846, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1847, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:cyan_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20885, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20886, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20887, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20888, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20889, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20890, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20891, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20892, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20893, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20894, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20895, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20896, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20897, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20898, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20899, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20900, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:cyan_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21017, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21018, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:cyan_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "cyan", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10737 + } + ] + }, + "minecraft:cyan_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12737 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:cyan_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12753 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12700, + "properties": { + "facing": "north" + } + }, + { + "id": 12701, + "properties": { + "facing": "south" + } + }, + { + "id": 12702, + "properties": { + "facing": "west" + } + }, + { + "id": 12703, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12622, + "properties": { + "facing": "north" + } + }, + { + "id": 12623, + "properties": { + "facing": "east" + } + }, + { + "id": 12624, + "properties": { + "facing": "south" + } + }, + { + "id": 12625, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12626, + "properties": { + "facing": "up" + } + }, + { + "id": 12627, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:cyan_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "cyan", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5954 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "cyan", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9660, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9661, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9662, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9663, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9664, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9665, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9666, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9667, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9668, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9669, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9670, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9671, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9672, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9673, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9674, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9675, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9676, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9677, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9678, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9679, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9680, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9681, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9682, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9683, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9684, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9685, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9686, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9687, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9688, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9689, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9690, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9691, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cyan_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9365 + } + ] + }, + "minecraft:cyan_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11051, + "properties": { + "facing": "north" + } + }, + { + "id": 11052, + "properties": { + "facing": "south" + } + }, + { + "id": 11053, + "properties": { + "facing": "west" + } + }, + { + "id": 11054, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2056 + } + ] + }, + "minecraft:damaged_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9115, + "properties": { + "facing": "north" + } + }, + { + "id": 9116, + "properties": { + "facing": "south" + } + }, + { + "id": 9117, + "properties": { + "facing": "west" + } + }, + { + "id": 9118, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dandelion": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2075 + } + ] + }, + "minecraft:dark_oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "dark_oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8755, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8756, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8757, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8758, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8759, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8760, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8761, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8762, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8763, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8764, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8765, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8766, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8767, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8768, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8769, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8770, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8771, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8772, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8773, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8774, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8775, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8776, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8777, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8778, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12142, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12143, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12144, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12145, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12146, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12147, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12148, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12149, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12150, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12151, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12152, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12153, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12154, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12155, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12156, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12157, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12158, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12159, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12160, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12161, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12162, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12163, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12164, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12165, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12166, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12167, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12168, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12169, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12170, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12171, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12172, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12173, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12174, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12175, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12176, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12177, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12178, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12179, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12180, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12181, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12182, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12183, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12184, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12185, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12186, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12187, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12188, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12189, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12190, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12191, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12192, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12193, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12194, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12195, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12196, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12197, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12198, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12199, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12200, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12201, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12202, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12203, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12204, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12205, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11726, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11727, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11728, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11729, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11730, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11731, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11732, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11733, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11734, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11735, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11736, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11737, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11738, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11739, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11740, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11741, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11742, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11743, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11744, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11745, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11746, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11747, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11748, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11749, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11750, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11751, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11752, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11753, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11754, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11755, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11756, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11757, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11470, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11471, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11472, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11473, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11474, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11475, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11476, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11477, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11478, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11479, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11480, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11481, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11482, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11483, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11484, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11485, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11486, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11487, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11488, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11489, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11490, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11491, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11492, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11493, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11494, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11495, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11496, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11497, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11498, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11499, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11500, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11501, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5218, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5219, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5220, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5221, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5222, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5223, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5224, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5225, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5226, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5227, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5228, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5229, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5230, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5231, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5232, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5233, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5234, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5235, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5236, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5237, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5238, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5239, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5240, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5241, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5242, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5243, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5244, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5245, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5246, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5247, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5248, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5249, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5250, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5251, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5252, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5253, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5254, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5255, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5256, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5257, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5258, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5259, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5260, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5261, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5262, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5263, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5264, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5265, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5266, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5267, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5268, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5269, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5270, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5271, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5272, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5273, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5274, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5275, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5276, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5277, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5278, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5279, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5280, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5281, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 405, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 406, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 407, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 408, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 409, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 410, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 411, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 412, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 413, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 414, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 415, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 416, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 417, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 418, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 419, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 420, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 421, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 422, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 423, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 424, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 425, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 426, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 427, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 428, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 429, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 430, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 431, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 432, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 148, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 149, + "properties": { + "axis": "y" + } + }, + { + "id": 150, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21 + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5728, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5729, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "dark_oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 37, + "properties": { + "stage": "0" + } + }, + { + "id": 38, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:dark_oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4494, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4495, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4496, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4497, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4498, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4499, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4500, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4501, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4502, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4503, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4504, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4505, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4506, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4507, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4508, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4509, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4510, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4511, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4512, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4513, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4514, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4515, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4516, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4517, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4518, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4519, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4520, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4521, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4522, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4523, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4524, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4525, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11198, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11199, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11200, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11201, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11202, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11203, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10044, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10045, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10046, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10047, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10048, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10049, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10050, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10051, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10052, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10053, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10054, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10055, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10056, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10057, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10058, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10059, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10060, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10061, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10062, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10063, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10064, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10065, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10066, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10067, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10068, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10069, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10070, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10071, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10072, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10073, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10074, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10075, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10076, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10077, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10078, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10079, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10080, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10081, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10082, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10083, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10084, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10085, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10086, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10087, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10088, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10089, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10090, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10091, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10092, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10093, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10094, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10095, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10096, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10097, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10098, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10099, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10100, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10101, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10102, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10103, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10104, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10105, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10106, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10107, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10108, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10109, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10110, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10111, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10112, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10113, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10116, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10117, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10118, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10122, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10123, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6345, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6346, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6347, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6348, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6349, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6350, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6351, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6352, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6353, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6354, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6355, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6356, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6357, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6358, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6359, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6360, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6361, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6362, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6363, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6364, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6365, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6366, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6367, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6368, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6369, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6370, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6371, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6372, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6373, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6374, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6375, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6376, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6377, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6378, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6379, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6380, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6381, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6382, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6383, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6384, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6385, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6386, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6387, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6388, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6389, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6390, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6391, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6392, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6393, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6394, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6395, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6396, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6397, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6398, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6399, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6400, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6401, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6402, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6403, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6404, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6405, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6406, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6407, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6408, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5586, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5587, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5588, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5589, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5590, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5591, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5592, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5593, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4810, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4811, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4812, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4813, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4814, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4815, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4816, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4817, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 207, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 208, + "properties": { + "axis": "y" + } + }, + { + "id": 209, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10465 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10718, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10719, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10720, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10721, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10722, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10723, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_prismarine" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10626, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10627, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10628, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10629, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10630, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10631, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10632, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10633, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10634, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10635, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10636, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10637, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10638, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10639, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10640, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10641, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10642, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10643, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10644, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10645, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10646, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10647, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10648, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10649, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10650, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10651, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10652, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10653, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10654, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10655, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10656, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10657, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10658, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10659, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10660, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10661, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10662, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10663, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10664, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10665, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10666, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10667, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10668, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10669, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10670, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10671, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10672, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10673, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10674, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10675, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10676, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10677, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10678, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10679, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10680, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10681, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10682, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10683, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10684, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10685, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10686, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10687, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10688, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10689, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10690, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10691, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10692, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10693, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10694, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10695, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10696, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10697, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10698, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10699, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10700, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10701, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10702, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10703, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10704, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10705, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:daylight_detector": { + "definition": { + "type": "minecraft:daylight_detector", + "properties": {} + }, + "properties": { + "inverted": [ + "true", + "false" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9191, + "properties": { + "inverted": "true", + "power": "0" + } + }, + { + "id": 9192, + "properties": { + "inverted": "true", + "power": "1" + } + }, + { + "id": 9193, + "properties": { + "inverted": "true", + "power": "2" + } + }, + { + "id": 9194, + "properties": { + "inverted": "true", + "power": "3" + } + }, + { + "id": 9195, + "properties": { + "inverted": "true", + "power": "4" + } + }, + { + "id": 9196, + "properties": { + "inverted": "true", + "power": "5" + } + }, + { + "id": 9197, + "properties": { + "inverted": "true", + "power": "6" + } + }, + { + "id": 9198, + "properties": { + "inverted": "true", + "power": "7" + } + }, + { + "id": 9199, + "properties": { + "inverted": "true", + "power": "8" + } + }, + { + "id": 9200, + "properties": { + "inverted": "true", + "power": "9" + } + }, + { + "id": 9201, + "properties": { + "inverted": "true", + "power": "10" + } + }, + { + "id": 9202, + "properties": { + "inverted": "true", + "power": "11" + } + }, + { + "id": 9203, + "properties": { + "inverted": "true", + "power": "12" + } + }, + { + "id": 9204, + "properties": { + "inverted": "true", + "power": "13" + } + }, + { + "id": 9205, + "properties": { + "inverted": "true", + "power": "14" + } + }, + { + "id": 9206, + "properties": { + "inverted": "true", + "power": "15" + } + }, + { + "default": true, + "id": 9207, + "properties": { + "inverted": "false", + "power": "0" + } + }, + { + "id": 9208, + "properties": { + "inverted": "false", + "power": "1" + } + }, + { + "id": 9209, + "properties": { + "inverted": "false", + "power": "2" + } + }, + { + "id": 9210, + "properties": { + "inverted": "false", + "power": "3" + } + }, + { + "id": 9211, + "properties": { + "inverted": "false", + "power": "4" + } + }, + { + "id": 9212, + "properties": { + "inverted": "false", + "power": "5" + } + }, + { + "id": 9213, + "properties": { + "inverted": "false", + "power": "6" + } + }, + { + "id": 9214, + "properties": { + "inverted": "false", + "power": "7" + } + }, + { + "id": 9215, + "properties": { + "inverted": "false", + "power": "8" + } + }, + { + "id": 9216, + "properties": { + "inverted": "false", + "power": "9" + } + }, + { + "id": 9217, + "properties": { + "inverted": "false", + "power": "10" + } + }, + { + "id": 9218, + "properties": { + "inverted": "false", + "power": "11" + } + }, + { + "id": 9219, + "properties": { + "inverted": "false", + "power": "12" + } + }, + { + "id": 9220, + "properties": { + "inverted": "false", + "power": "13" + } + }, + { + "id": 9221, + "properties": { + "inverted": "false", + "power": "14" + } + }, + { + "id": 9222, + "properties": { + "inverted": "false", + "power": "15" + } + } + ] + }, + "minecraft:dead_brain_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12815, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12816, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12804 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12835, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12836, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12861, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12862, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12863, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12864, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12865, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12866, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12867, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12868, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12817, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12818, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12805 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12837, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12838, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12869, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12870, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12871, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12872, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12873, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12874, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12875, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12876, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bush": { + "definition": { + "type": "minecraft:dead_bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2007 + } + ] + }, + "minecraft:dead_fire_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12819, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12820, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12806 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12839, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12840, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12877, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12878, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12879, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12880, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12881, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12882, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12883, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12884, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12821, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12822, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12807 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12841, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12842, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12885, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12886, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12887, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12888, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12889, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12890, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12891, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12892, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12813, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12814, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12803 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12833, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12834, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12853, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12854, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12855, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12856, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12857, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12858, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12859, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12860, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:decorated_pot": { + "definition": { + "type": "minecraft:decorated_pot", + "properties": {} + }, + "properties": { + "cracked": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26574, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 26575, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 26576, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 26577, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 26578, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 26579, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 26580, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 26581, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 26582, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26583, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 26584, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 26585, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 26586, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 26587, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 26588, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 26589, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 24904, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 24905, + "properties": { + "axis": "y" + } + }, + { + "id": 24906, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26221, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26222, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26223, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26224, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26225, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26226, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26141, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26142, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26143, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26144, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26145, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26146, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26147, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26148, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26149, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26150, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26151, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26152, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26153, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26154, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26155, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26156, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26157, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26158, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26159, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26160, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26161, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26162, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26163, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26164, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26165, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26166, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26167, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26168, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26169, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26170, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26171, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26172, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26173, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26174, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26175, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26176, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26177, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26178, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26179, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26180, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26181, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26182, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26183, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26184, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26185, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26186, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26187, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26188, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26189, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26190, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26191, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26192, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26193, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26194, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26195, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26196, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26197, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26198, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26199, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26200, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26201, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26202, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26203, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26204, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26205, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26206, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26207, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26208, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26209, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26210, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26211, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26212, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26213, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26214, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26215, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26216, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26217, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26218, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26219, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26220, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26227, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26228, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26229, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26230, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26231, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26232, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26233, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26234, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26235, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26236, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26237, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26238, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26239, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26240, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26241, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26242, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26243, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26244, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26245, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26246, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26247, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26248, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26249, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26250, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26251, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26252, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26253, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26254, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26255, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26256, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26257, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26258, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26259, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26260, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26261, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26262, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26263, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26264, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26265, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26266, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26267, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26268, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26269, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26270, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26271, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26272, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26273, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26274, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26275, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26276, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26277, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26278, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26279, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26280, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26281, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26282, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26283, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26284, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26285, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26286, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26287, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26288, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26289, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26290, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26291, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26292, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26293, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26294, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26295, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26296, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26297, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26298, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26299, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26300, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26301, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26302, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26303, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26304, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26305, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26306, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26307, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26308, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26309, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26310, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26311, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26312, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26313, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26314, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26315, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26316, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26317, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26318, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26319, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26320, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26321, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26322, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26323, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26324, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26325, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26326, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26327, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26328, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26329, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26330, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26331, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26332, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26333, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26334, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26335, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26336, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26337, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26338, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26339, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26340, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26341, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26342, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26343, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26344, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26345, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26346, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26347, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26348, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26349, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26350, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26351, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26352, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26353, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26354, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26355, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26356, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26357, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26358, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26359, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26360, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26361, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26362, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26363, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26364, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26365, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26366, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26367, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26368, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26369, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26370, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26371, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26372, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26373, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26374, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26375, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26376, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26377, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26378, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26379, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26380, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26381, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26382, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26383, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26384, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26385, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26386, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26387, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26388, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26389, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26390, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26391, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26392, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26393, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26394, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26395, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26396, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26397, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26398, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26399, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26400, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26401, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26402, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26403, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26404, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26405, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26406, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26407, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26408, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26409, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26410, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26411, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26412, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26413, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26414, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26415, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26416, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26417, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26418, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26419, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26420, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26421, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26422, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26423, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26424, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26425, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26426, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26427, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26428, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26429, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26430, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26431, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26432, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26433, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26434, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26435, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26436, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26437, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26438, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26439, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26440, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26441, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26442, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26443, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26444, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26445, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26446, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26447, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26448, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26449, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26450, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26451, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26452, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26453, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26454, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26455, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26456, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26457, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26458, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26459, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26460, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26461, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26462, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26463, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26464, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26465, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26466, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26467, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26468, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26469, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26470, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26471, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26472, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26473, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26474, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26475, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26476, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26477, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26478, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26479, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26480, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26481, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26482, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26483, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26484, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26485, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26486, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26487, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26488, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26489, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26490, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26491, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26492, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26493, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26494, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26495, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26496, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26497, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26498, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26499, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26500, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26501, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26502, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26503, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26504, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26505, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26506, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26507, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26508, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26509, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26510, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26511, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26512, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26513, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26514, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26515, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26516, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26517, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26518, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26519, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26520, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26521, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26522, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26523, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26524, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26525, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26526, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26527, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26528, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26529, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26530, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26531, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26532, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26533, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26534, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26535, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26536, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26537, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26538, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26539, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26540, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26541, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26542, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26543, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26544, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26545, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26546, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26547, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26548, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26549, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26550, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26140 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 128 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22943 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 4275 + } + ] + }, + "minecraft:deepslate_emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7512 + } + ] + }, + "minecraft:deepslate_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 124 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 126 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 521 + } + ] + }, + "minecraft:deepslate_redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5736, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 5737, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:deepslate_tile_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25810, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25811, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25812, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25813, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25814, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25815, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_tiles" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25730, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25731, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25732, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25733, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25734, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25735, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25736, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25737, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25738, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25739, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25740, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25741, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25742, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25743, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25744, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25745, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25746, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25747, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25748, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25749, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25750, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25751, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25752, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25753, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25754, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25755, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25756, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25757, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25758, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25759, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25760, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25761, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25762, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25763, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25764, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25765, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25766, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25767, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25768, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25769, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25770, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25771, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25772, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25773, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25774, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25775, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25776, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25777, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25778, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25779, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25780, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25781, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25782, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25783, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25784, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25785, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25786, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25787, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25788, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25789, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25790, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25791, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25792, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25793, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25794, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25795, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25796, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25797, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25798, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25799, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25800, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25801, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25802, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25803, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25804, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25805, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25806, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25807, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25808, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25809, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25816, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25817, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25818, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25819, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25820, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25821, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25822, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25823, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25824, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25825, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25826, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25827, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25828, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25829, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25830, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25831, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25832, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25833, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25834, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25835, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25836, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25837, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25838, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25839, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25840, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25841, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25842, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25843, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25844, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25845, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25846, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25847, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25848, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25849, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25850, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25851, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25852, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25853, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25854, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25855, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25856, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25857, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25858, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25859, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25860, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25861, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25862, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25863, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25864, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25865, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25866, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25867, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25868, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25869, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25870, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25871, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25872, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25873, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25874, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25875, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25876, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25877, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25878, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25879, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25880, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25881, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25882, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25883, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25884, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25885, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25886, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25887, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25888, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25889, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25890, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25891, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25892, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25893, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25894, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25895, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25896, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25897, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25898, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25899, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25900, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25901, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25902, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25903, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25904, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25905, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25906, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25907, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25908, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25909, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25910, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25911, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25912, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25913, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25914, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25915, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25916, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25917, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25918, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25919, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25920, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25921, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25922, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25923, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25924, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25925, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25926, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25927, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25928, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25929, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25930, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25931, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25932, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25933, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25934, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25935, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25936, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25937, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25938, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25939, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25940, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25941, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25942, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25943, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25944, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25945, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25946, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25947, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25948, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25949, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25950, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25951, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25952, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25953, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25954, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25955, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25956, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25957, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25958, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25959, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25960, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25961, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25962, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25963, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25964, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25965, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25966, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25967, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25968, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25969, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25970, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25971, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25972, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25973, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25974, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25975, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25976, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25977, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25978, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25979, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25980, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25981, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25982, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25983, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25984, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25985, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25986, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25987, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25988, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25989, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25990, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25991, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25992, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25993, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25994, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25995, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25996, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25997, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25998, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25999, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26000, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26001, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26002, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26003, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26004, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26005, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26006, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26007, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26008, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26009, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26010, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26011, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26012, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26013, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26014, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26015, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26016, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26017, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26018, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26019, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26020, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26021, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26022, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26023, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26024, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26025, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26026, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26027, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26028, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26029, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26030, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26031, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26032, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26033, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26034, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26035, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26036, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26037, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26038, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26039, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26040, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26041, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26042, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26043, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26044, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26045, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26046, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26047, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26048, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26049, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26050, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26051, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26052, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26053, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26054, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26055, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26056, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26057, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26058, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26059, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26060, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26061, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26062, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26063, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26064, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26065, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26066, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26067, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26068, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26069, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26070, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26071, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26072, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26073, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26074, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26075, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26076, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26077, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26078, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26079, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26080, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26081, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26082, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26083, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26084, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26085, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26086, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26087, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26088, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26089, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26090, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26091, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26092, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26093, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26094, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26095, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26096, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26097, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26098, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26099, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26100, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26101, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26102, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26103, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26104, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26105, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26106, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26107, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26108, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26109, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26110, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26111, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26112, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26113, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26114, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26115, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26116, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26117, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26118, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26119, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26120, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26121, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26122, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26123, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26124, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26125, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26126, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26127, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26128, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26129, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26130, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26131, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26132, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26133, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26134, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26135, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26136, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26137, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26138, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26139, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25729 + } + ] + }, + "minecraft:detector_rail": { + "definition": { + "type": "minecraft:detector_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1968, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1969, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1970, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1971, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1972, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1973, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1974, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1975, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1976, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1977, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1978, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1979, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1980, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1981, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1982, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1983, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1984, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1985, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1986, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1987, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1988, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1989, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1990, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1991, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diamond_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 4276 + } + ] + }, + "minecraft:diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 4274 + } + ] + }, + "minecraft:diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14154, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14155, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14156, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14157, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14158, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14159, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:diorite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14002, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14003, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14004, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14005, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14006, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14007, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14008, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14009, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14010, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14011, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14012, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14013, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14014, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14015, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14016, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14017, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14018, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14019, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14020, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14021, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14022, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14023, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14024, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14025, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14026, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14027, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14028, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14029, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14030, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14031, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14032, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14033, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14034, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14035, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14036, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14037, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14038, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14039, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14040, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14041, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14042, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14043, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14044, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14045, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14046, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14047, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14048, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14049, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14050, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14051, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14052, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14053, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14054, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14055, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14056, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14057, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14058, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14059, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14060, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14061, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14062, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14063, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14064, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14065, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14066, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14067, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14068, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14069, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14070, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14071, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14072, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14073, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14074, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14075, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14076, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14077, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14078, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14079, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14080, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14081, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18048, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18049, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18050, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18051, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18052, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18053, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18054, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18055, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18056, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18057, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18058, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18059, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18060, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18061, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18062, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18063, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18064, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18065, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18066, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18067, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18068, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18069, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18070, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18071, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18072, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18073, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18074, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18075, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18076, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18077, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18078, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18079, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18080, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18081, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18082, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18083, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18084, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18085, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18086, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18087, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18088, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18089, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18090, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18091, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18092, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18093, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18094, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18095, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18096, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18097, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18098, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18099, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18100, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18101, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18102, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18103, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18104, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18105, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18106, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18107, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18108, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18109, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18110, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18111, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18112, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18113, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18114, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18115, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18116, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18117, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18118, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18119, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18120, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18121, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18264, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18265, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18266, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18267, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18268, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18269, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18270, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18271, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18272, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18273, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18274, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18275, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18276, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18277, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18278, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18279, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18280, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18281, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18282, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18283, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18284, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18285, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18286, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18287, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18288, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18289, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18290, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18291, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18292, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18293, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18294, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18295, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18296, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18297, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18298, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18299, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18300, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18301, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18302, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18303, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18304, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18305, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18306, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18307, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18308, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18309, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18310, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18311, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18312, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18313, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18314, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18315, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18316, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18317, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18318, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18319, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18320, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18321, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18322, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18323, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18324, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18325, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18326, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18327, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18328, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18329, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18330, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18331, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18332, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18333, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18334, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18335, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18336, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18337, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18338, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18339, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18340, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18341, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18342, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18343, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18344, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18345, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18346, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18347, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18348, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18349, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18350, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18351, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18352, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18353, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18354, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18355, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18356, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18357, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18358, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18359, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18360, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18361, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18362, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18363, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18364, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18365, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18366, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18367, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18368, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18369, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18370, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18371, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10 + } + ] + }, + "minecraft:dirt_path": { + "definition": { + "type": "minecraft:dirt_path", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12513 + } + ] + }, + "minecraft:dispenser": { + "definition": { + "type": "minecraft:dispenser", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 523, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 524, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 525, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 526, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 527, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 528, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 529, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 530, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 531, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 532, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 533, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 534, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:dragon_egg": { + "definition": { + "type": "minecraft:dragon_egg", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7416 + } + ] + }, + "minecraft:dragon_head": { + "definition": { + "type": "minecraft:skull", + "kind": "dragon", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9027, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 9028, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 9029, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 9030, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 9031, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 9032, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 9033, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 9034, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 9035, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 9036, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 9037, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 9038, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 9039, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 9040, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 9041, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "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" + } + } + ] + }, + "minecraft:dragon_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "dragon", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9059, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9060, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 9061, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 9062, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 9063, + "properties": { + "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" + } + } + ] + }, + "minecraft:dried_kelp_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12787 + } + ] + }, + "minecraft:dripstone_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24768 + } + ] + }, + "minecraft:dropper": { + "definition": { + "type": "minecraft:dropper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9344, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 9345, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 9346, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 9347, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 9348, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 9349, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 9350, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 9351, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 9352, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 9353, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 9354, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 9355, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:emerald_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7665 + } + ] + }, + "minecraft:emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7511 + } + ] + }, + "minecraft:enchanting_table": { + "definition": { + "type": "minecraft:enchantment_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7389 + } + ] + }, + "minecraft:end_gateway": { + "definition": { + "type": "minecraft:end_gateway", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12514 + } + ] + }, + "minecraft:end_portal": { + "definition": { + "type": "minecraft:end_portal", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7406 + } + ] + }, + "minecraft:end_portal_frame": { + "definition": { + "type": "minecraft:end_portal_frame", + "properties": {} + }, + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 7407, + "properties": { + "eye": "true", + "facing": "north" + } + }, + { + "id": 7408, + "properties": { + "eye": "true", + "facing": "south" + } + }, + { + "id": 7409, + "properties": { + "eye": "true", + "facing": "west" + } + }, + { + "id": 7410, + "properties": { + "eye": "true", + "facing": "east" + } + }, + { + "default": true, + "id": 7411, + "properties": { + "eye": "false", + "facing": "north" + } + }, + { + "id": 7412, + "properties": { + "eye": "false", + "facing": "south" + } + }, + { + "id": 7413, + "properties": { + "eye": "false", + "facing": "west" + } + }, + { + "id": 7414, + "properties": { + "eye": "false", + "facing": "east" + } + } + ] + }, + "minecraft:end_rod": { + "definition": { + "type": "minecraft:end_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12334, + "properties": { + "facing": "north" + } + }, + { + "id": 12335, + "properties": { + "facing": "east" + } + }, + { + "id": 12336, + "properties": { + "facing": "south" + } + }, + { + "id": 12337, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12338, + "properties": { + "facing": "up" + } + }, + { + "id": 12339, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:end_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7415 + } + ] + }, + "minecraft:end_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14112, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14113, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14114, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14115, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14116, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14117, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:end_stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13362, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13363, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13364, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13365, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13366, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13367, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13368, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13369, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13370, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13371, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13372, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13373, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13374, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13375, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13376, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13377, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13378, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13379, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13380, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13381, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13382, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13383, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13384, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13385, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13386, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13387, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13388, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13389, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13390, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13391, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13392, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13393, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13394, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13395, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13396, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13397, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13398, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13399, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13400, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13401, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13402, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13403, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13404, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13405, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13406, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13407, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13408, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13409, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13410, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13411, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13412, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13413, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13414, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13415, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13416, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13417, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13418, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13419, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13420, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13421, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13422, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13423, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13424, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13425, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13426, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13427, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13428, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13429, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13430, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13431, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13432, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13433, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13434, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13435, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13436, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13437, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13438, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13439, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13440, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13441, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17724, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17725, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17726, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17727, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17728, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17729, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17730, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17731, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17732, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17733, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17734, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17735, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17736, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17737, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17738, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17739, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17740, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17741, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17742, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17743, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17744, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17745, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17746, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17747, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17748, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17749, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17750, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17751, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17752, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17753, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17754, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17755, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17756, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17757, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17758, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17759, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17760, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17761, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17762, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17763, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17764, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17765, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17766, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17767, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17768, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17769, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17770, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17771, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17772, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17773, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17774, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17775, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17776, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17777, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17778, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17779, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17780, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17781, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17782, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17783, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17784, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17785, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17786, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17787, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17788, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17789, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17790, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17791, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17792, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17793, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17794, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17795, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17796, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17797, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17940, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17941, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17942, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17943, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17944, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17945, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17946, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17947, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17948, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17949, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17950, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17951, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17952, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17953, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17954, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17955, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17956, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17957, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17958, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17959, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17960, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17961, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17962, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17963, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17964, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17965, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17966, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17967, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17968, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17969, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17970, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17971, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17972, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17973, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17974, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17975, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17976, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17977, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17978, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17979, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17980, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17981, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17982, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17983, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17984, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17985, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17986, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17987, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17988, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17989, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17990, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17991, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17992, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17993, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17994, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17995, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17996, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17997, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17998, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17999, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18000, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18001, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18002, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18003, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18004, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18005, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18006, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18007, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18008, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18009, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18010, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18011, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18012, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18013, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18014, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18015, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18016, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18017, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18018, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18019, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18020, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18021, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18022, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18023, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18024, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18025, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18026, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18027, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18028, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18029, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18030, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18031, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18032, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18033, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18034, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18035, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18036, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18037, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18038, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18039, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18040, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18041, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18042, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18043, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18044, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18045, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18046, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18047, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:end_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12494 + } + ] + }, + "minecraft:ender_chest": { + "definition": { + "type": "minecraft:ender_chest", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7513, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7514, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 7515, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 7516, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 7517, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 7518, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 7519, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 7520, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 22950 + } + ] + }, + "minecraft:exposed_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 22939 + } + ] + }, + "minecraft:exposed_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24696, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24697, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24698, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24699, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23716, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23717, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23718, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23719, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23720, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23721, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23722, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23723, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23724, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23725, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23726, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23727, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23728, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23729, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23730, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23731, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23732, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23733, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23734, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23735, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23736, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23737, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23738, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23739, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23740, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23741, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23742, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23743, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23744, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23745, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23746, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23747, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23748, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23749, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23750, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23751, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23752, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23753, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23754, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23755, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23756, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23757, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23758, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23759, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23760, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23761, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23762, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23763, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23764, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23765, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23766, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23767, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23768, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23769, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23770, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23771, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23772, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23773, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23774, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23775, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23776, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23777, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23778, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23779, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24678, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24679, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24228, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24229, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24230, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24231, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24232, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24233, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24234, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24235, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24236, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24237, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24238, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24239, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24240, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24241, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24242, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24243, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24244, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24245, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24246, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24247, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24248, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24249, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24250, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24251, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24252, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24253, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24254, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24255, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24256, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24257, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24258, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24259, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24260, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24261, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24262, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24263, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24264, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24265, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24266, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24267, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24268, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24269, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24270, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24271, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24272, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24273, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24274, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24275, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24276, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24277, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24278, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24279, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24280, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24281, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24282, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24283, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24284, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24285, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24286, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24287, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24288, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24289, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24290, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24291, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 22946 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23288, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23289, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23290, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23291, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23292, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23293, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:exposed_cut_copper" + }, + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23116, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23117, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23118, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23119, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23120, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23121, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23122, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23123, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23124, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23125, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23129, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23130, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23131, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23132, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23133, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23134, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23135, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23136, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23137, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23138, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23139, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23140, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23141, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23142, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23143, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23144, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23145, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23149, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23150, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23151, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23152, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23153, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23154, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23155, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23156, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23157, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23158, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23159, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23160, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23161, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23162, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23163, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23164, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23165, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23169, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23170, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23171, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23172, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23173, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23174, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23175, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23176, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23177, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23178, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23179, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23180, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23181, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23182, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23183, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23184, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23185, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23189, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23190, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23191, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23192, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23193, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23194, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23195, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "definition": { + "type": "minecraft:farm", + "properties": {} + }, + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 4286, + "properties": { + "moisture": "0" + } + }, + { + "id": 4287, + "properties": { + "moisture": "1" + } + }, + { + "id": 4288, + "properties": { + "moisture": "2" + } + }, + { + "id": 4289, + "properties": { + "moisture": "3" + } + }, + { + "id": 4290, + "properties": { + "moisture": "4" + } + }, + { + "id": 4291, + "properties": { + "moisture": "5" + } + }, + { + "id": 4292, + "properties": { + "moisture": "6" + } + }, + { + "id": 4293, + "properties": { + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2006 + } + ] + }, + "minecraft:fire": { + "definition": { + "type": "minecraft:fire", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2360, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2361, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2362, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2363, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2364, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2365, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2366, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2367, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2368, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2369, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2370, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2371, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2372, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2373, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2374, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2375, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2376, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2377, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2378, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2379, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2380, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2381, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2382, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2383, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2384, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2385, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2386, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2387, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2388, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2389, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2390, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 2391, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2392, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2393, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2394, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2395, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2396, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2397, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2398, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2399, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2400, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2401, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2402, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2403, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2404, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2405, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2406, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2407, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2408, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2409, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2410, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2411, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2412, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2413, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2414, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2415, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2416, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2417, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2418, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2419, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2420, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2421, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2422, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2423, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2424, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2425, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2426, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2427, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2428, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2429, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2430, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2431, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2432, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2433, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2434, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2435, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2436, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2437, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2438, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2439, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2440, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2441, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2442, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2443, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2444, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2445, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2446, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2447, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2448, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2449, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2450, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2451, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2452, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2453, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2454, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2455, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2456, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2457, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2458, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2459, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2460, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2461, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2462, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2463, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2464, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2465, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2466, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2467, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2468, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2469, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2470, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2471, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2472, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2473, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2474, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2475, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2476, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2477, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2478, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2479, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2480, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2481, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2482, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2483, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2484, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2485, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2486, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2487, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2488, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2489, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2490, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2491, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2492, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2493, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2494, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2495, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2496, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2497, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2498, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2499, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2500, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2501, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2502, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2503, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2504, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2505, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2506, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2507, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2508, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2509, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2510, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2511, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2512, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2513, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2514, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2515, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2516, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2517, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2518, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2519, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2520, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2521, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2522, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2523, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2524, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2525, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2526, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2527, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2528, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2529, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2530, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2531, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2532, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2533, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2534, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2535, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2536, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2537, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2538, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2539, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2540, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2541, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2542, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2543, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2544, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2545, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2546, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2547, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2548, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2549, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2550, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2551, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2552, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2553, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2554, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2555, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2556, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2557, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2558, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2559, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2560, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2561, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2562, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2563, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2564, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2565, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2566, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2567, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2568, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2569, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2570, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2571, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2572, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2573, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2574, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2575, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2576, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2577, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2578, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2579, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2580, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2581, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2582, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2583, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2584, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2585, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2586, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2587, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2588, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2589, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2590, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2591, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2592, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2593, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2594, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2595, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2596, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2597, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2598, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2599, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2600, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2601, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2602, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2603, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2604, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2605, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2606, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2607, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2608, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2609, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2610, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2611, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2612, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2613, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2614, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2615, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2616, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2617, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2618, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2619, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2620, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2621, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2622, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2623, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2624, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2625, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2626, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2627, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2628, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2629, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2630, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2631, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2632, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2633, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2634, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2635, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2636, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2637, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2638, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2639, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2640, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2641, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2642, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2643, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2644, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2645, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2646, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2647, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2648, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2649, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2650, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2651, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2652, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2653, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2654, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2655, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2656, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2657, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2658, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2659, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2660, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2661, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2662, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2663, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2664, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2665, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2666, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2667, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2668, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2669, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2670, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2671, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2672, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2673, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2674, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2675, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2676, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2677, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2678, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2679, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2680, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2681, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2682, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2683, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2684, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2685, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2686, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2687, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2688, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2689, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2690, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2691, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2692, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2693, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2694, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2695, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2696, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2697, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2698, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2699, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2700, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2701, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2702, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2703, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2704, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2705, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2706, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2707, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2708, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2709, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2710, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2711, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2712, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2713, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2714, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2715, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2716, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2717, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2718, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2719, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2720, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2721, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2722, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2723, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2724, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2725, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2726, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2727, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2728, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2729, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2730, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2731, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2732, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2733, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2734, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2735, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2736, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2737, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2738, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2739, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2740, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2741, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2742, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2743, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2744, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2745, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2746, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2747, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2748, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2749, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2750, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2751, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2752, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2753, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2754, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2755, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2756, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2757, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2758, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2759, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2760, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2761, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2762, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2763, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2764, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2765, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2766, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2767, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2768, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2769, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2770, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2771, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2772, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2773, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2774, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2775, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2776, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2777, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2778, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2779, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2780, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2781, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2782, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2783, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2784, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2785, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2786, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2787, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2788, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2789, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2790, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2791, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2792, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2793, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2794, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2795, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2796, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2797, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2798, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2799, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2800, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2801, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2802, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2803, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2804, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2805, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2806, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2807, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2808, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2809, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2810, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2811, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2812, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2813, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2814, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2815, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2816, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2817, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2818, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2819, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2820, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2821, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2822, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2823, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2824, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2825, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2826, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2827, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2828, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2829, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2830, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2831, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2832, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2833, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2834, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2835, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2836, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2837, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2838, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2839, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2840, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2841, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2842, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2843, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2844, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2845, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2846, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2847, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2848, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2849, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2850, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2851, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2852, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2853, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2854, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2855, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2856, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2857, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2858, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2859, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2860, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2861, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2862, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2863, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 2864, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 2865, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 2866, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 2867, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 2868, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 2869, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 2870, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 2871, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:fire_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_fire_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12829, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12830, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_fire_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12811 + } + ] + }, + "minecraft:fire_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_fire_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12849, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12850, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_fire_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12917, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12918, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12919, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12920, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12921, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12922, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12923, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12924, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:fletching_table": { + "definition": { + "type": "minecraft:fletching_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18437 + } + ] + }, + "minecraft:flower_pot": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8567 + } + ] + }, + "minecraft:flowering_azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24825 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 489, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 490, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 491, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 492, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 493, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 494, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 495, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 496, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 497, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 498, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 499, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 500, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 501, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 502, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 503, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 504, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 505, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 506, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 507, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 508, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 509, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 510, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 511, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 512, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 513, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 514, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 515, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 516, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "definition": { + "type": "minecraft:frogspawn", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26572 + } + ] + }, + "minecraft:frosted_ice": { + "definition": { + "type": "minecraft:frosted_ice", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 12539, + "properties": { + "age": "0" + } + }, + { + "id": 12540, + "properties": { + "age": "1" + } + }, + { + "id": 12541, + "properties": { + "age": "2" + } + }, + { + "id": 12542, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "definition": { + "type": "minecraft:furnace", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4294, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 4295, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 4296, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 4297, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 4298, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 4299, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 4300, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 4301, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:gilded_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20285 + } + ] + }, + "minecraft:glass": { + "definition": { + "type": "minecraft:transparent", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 519 + } + ] + }, + "minecraft:glass_pane": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6779, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6780, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6781, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6782, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6783, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6784, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6785, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6786, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6787, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6788, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6789, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6790, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6791, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6792, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6793, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6794, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6795, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6796, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6797, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6798, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6799, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6800, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6801, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6802, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6803, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6804, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6805, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6806, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6807, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6808, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6809, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6810, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glow_lichen": { + "definition": { + "type": "minecraft:glow_lichen", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6869, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6870, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6871, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6872, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6873, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6874, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6875, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6876, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6877, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6878, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6879, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6880, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6881, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6882, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6883, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6884, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6885, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6886, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6887, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6888, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6889, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6890, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6891, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6892, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6893, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6894, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6895, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6896, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6897, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6898, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6899, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6900, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6901, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6902, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6903, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6904, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6905, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6906, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6907, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6908, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6909, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6910, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6911, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6912, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6913, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6914, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6915, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6916, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6917, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6918, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6919, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6920, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6921, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6922, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6923, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6924, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6925, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6926, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6927, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6928, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6929, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6930, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6931, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6932, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6933, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6934, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6935, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6936, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6937, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6938, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6939, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6940, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6941, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6942, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6943, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6944, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6945, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6946, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6947, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6948, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6949, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6950, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6951, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6952, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6953, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6954, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6955, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6956, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6957, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6958, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6959, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6960, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6961, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6962, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6963, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6964, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6965, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6966, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6967, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6968, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6969, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6970, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6971, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6972, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6973, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6974, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6975, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6976, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6977, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6978, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6979, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6980, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6981, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6982, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6983, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6984, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6985, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6986, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6987, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6988, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6989, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6990, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6991, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6992, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6993, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6994, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6995, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6996, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glowstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5863 + } + ] + }, + "minecraft:gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2091 + } + ] + }, + "minecraft:gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 123 + } + ] + }, + "minecraft:granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14130, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14131, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14132, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14133, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14134, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14135, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:granite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13682, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13683, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13684, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13685, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13686, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13687, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13688, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13689, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13690, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13691, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13698, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13699, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13700, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13701, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13702, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13703, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13704, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13705, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13706, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13707, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13708, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13709, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13710, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13711, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13719, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13720, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13721, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13722, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13723, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13724, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13725, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13726, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13727, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13728, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13729, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13730, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13731, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13739, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13740, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13741, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13742, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13743, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13744, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13745, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13746, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13747, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13748, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13749, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13750, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13751, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13759, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13760, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13761, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15456, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15457, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15458, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15459, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15460, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15461, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15462, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15463, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15464, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15465, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15466, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15467, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15468, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15469, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15470, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15471, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15472, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15473, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15474, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15475, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15476, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15477, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15478, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15479, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15480, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15481, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15482, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15483, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15484, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15485, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15486, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15487, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15488, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15489, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15490, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15491, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15492, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15493, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15494, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15495, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15496, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15497, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15498, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15499, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15500, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15501, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15502, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15503, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15504, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15505, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15506, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15507, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15508, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15509, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15510, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15511, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15512, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15513, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15514, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15515, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15516, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15517, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15518, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15519, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15520, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15521, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15522, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15523, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15524, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15525, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15526, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15527, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15528, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15529, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15672, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15673, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15674, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15675, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15676, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15677, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15678, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15679, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15680, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15681, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15682, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15683, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15684, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15685, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15686, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15687, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15688, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15689, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15690, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15691, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15692, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15693, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15694, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15695, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15696, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15697, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15698, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15699, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15700, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15701, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15702, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15703, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15704, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15705, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15706, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15707, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15708, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15709, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15710, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15711, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15712, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15713, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15714, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15715, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15716, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15717, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15718, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15719, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15720, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15721, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15722, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15723, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15724, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15725, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15726, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15727, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15728, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15729, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15730, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15731, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15732, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15733, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15734, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15735, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15736, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15737, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15738, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15739, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15740, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15741, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15742, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15743, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15744, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15745, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15746, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15747, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15748, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15749, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15750, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15751, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15752, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15753, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15754, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15755, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15756, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15757, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15758, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15759, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15760, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15761, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15762, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15763, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15764, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15765, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15766, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15767, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15768, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15769, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15770, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15771, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15772, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15773, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15774, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15775, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15776, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15777, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15778, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15779, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:grass_block": { + "definition": { + "type": "minecraft:grass", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 9, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:gravel": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#FF807C7B", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 118 + } + ] + }, + "minecraft:gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "gray", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10871, + "properties": { + "rotation": "0" + } + }, + { + "id": 10872, + "properties": { + "rotation": "1" + } + }, + { + "id": 10873, + "properties": { + "rotation": "2" + } + }, + { + "id": 10874, + "properties": { + "rotation": "3" + } + }, + { + "id": 10875, + "properties": { + "rotation": "4" + } + }, + { + "id": 10876, + "properties": { + "rotation": "5" + } + }, + { + "id": 10877, + "properties": { + "rotation": "6" + } + }, + { + "id": 10878, + "properties": { + "rotation": "7" + } + }, + { + "id": 10879, + "properties": { + "rotation": "8" + } + }, + { + "id": 10880, + "properties": { + "rotation": "9" + } + }, + { + "id": 10881, + "properties": { + "rotation": "10" + } + }, + { + "id": 10882, + "properties": { + "rotation": "11" + } + }, + { + "id": 10883, + "properties": { + "rotation": "12" + } + }, + { + "id": 10884, + "properties": { + "rotation": "13" + } + }, + { + "id": 10885, + "properties": { + "rotation": "14" + } + }, + { + "id": 10886, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1800, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1801, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1802, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1803, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1804, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1805, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1806, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1807, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1808, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1809, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1810, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1811, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1812, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1813, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1814, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1815, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20853, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20854, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20855, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20856, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20857, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20858, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20859, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20860, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20861, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20862, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20863, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20864, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20865, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20866, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20867, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20868, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:gray_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21013, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21014, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10735 + } + ] + }, + "minecraft:gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12735 + } + ] + }, + "minecraft:gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:gray_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12751 + } + ] + }, + "minecraft:gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12692, + "properties": { + "facing": "north" + } + }, + { + "id": 12693, + "properties": { + "facing": "south" + } + }, + { + "id": 12694, + "properties": { + "facing": "west" + } + }, + { + "id": 12695, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12610, + "properties": { + "facing": "north" + } + }, + { + "id": 12611, + "properties": { + "facing": "east" + } + }, + { + "id": 12612, + "properties": { + "facing": "south" + } + }, + { + "id": 12613, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12614, + "properties": { + "facing": "up" + } + }, + { + "id": 12615, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5952 + } + ] + }, + "minecraft:gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "gray", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9596, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9597, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9598, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9599, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9600, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9601, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9602, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9603, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9604, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9605, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9606, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9607, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9608, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9609, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9610, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9611, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9612, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9613, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9614, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9615, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9616, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9617, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9618, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9619, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9620, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9621, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9622, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9623, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9624, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9625, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9626, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9627, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9363 + } + ] + }, + "minecraft:gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11043, + "properties": { + "facing": "north" + } + }, + { + "id": 11044, + "properties": { + "facing": "south" + } + }, + { + "id": 11045, + "properties": { + "facing": "west" + } + }, + { + "id": 11046, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2054 + } + ] + }, + "minecraft:green_banner": { + "definition": { + "type": "minecraft:banner", + "color": "green", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10967, + "properties": { + "rotation": "0" + } + }, + { + "id": 10968, + "properties": { + "rotation": "1" + } + }, + { + "id": 10969, + "properties": { + "rotation": "2" + } + }, + { + "id": 10970, + "properties": { + "rotation": "3" + } + }, + { + "id": 10971, + "properties": { + "rotation": "4" + } + }, + { + "id": 10972, + "properties": { + "rotation": "5" + } + }, + { + "id": 10973, + "properties": { + "rotation": "6" + } + }, + { + "id": 10974, + "properties": { + "rotation": "7" + } + }, + { + "id": 10975, + "properties": { + "rotation": "8" + } + }, + { + "id": 10976, + "properties": { + "rotation": "9" + } + }, + { + "id": 10977, + "properties": { + "rotation": "10" + } + }, + { + "id": 10978, + "properties": { + "rotation": "11" + } + }, + { + "id": 10979, + "properties": { + "rotation": "12" + } + }, + { + "id": 10980, + "properties": { + "rotation": "13" + } + }, + { + "id": 10981, + "properties": { + "rotation": "14" + } + }, + { + "id": 10982, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:green_bed": { + "definition": { + "type": "minecraft:bed", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1896, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1897, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1898, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1899, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1900, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1901, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1902, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1903, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1904, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1905, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1906, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1907, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1908, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1909, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1910, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1911, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:green_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20949, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20950, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20951, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20952, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20953, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20954, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20955, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20956, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20957, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20958, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20959, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20960, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20961, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20962, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20963, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20964, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:green_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:green_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21025, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21026, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:green_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "green", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10741 + } + ] + }, + "minecraft:green_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12741 + } + ] + }, + "minecraft:green_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:green_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12757 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12716, + "properties": { + "facing": "north" + } + }, + { + "id": 12717, + "properties": { + "facing": "south" + } + }, + { + "id": 12718, + "properties": { + "facing": "west" + } + }, + { + "id": 12719, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12646, + "properties": { + "facing": "north" + } + }, + { + "id": 12647, + "properties": { + "facing": "east" + } + }, + { + "id": 12648, + "properties": { + "facing": "south" + } + }, + { + "id": 12649, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12650, + "properties": { + "facing": "up" + } + }, + { + "id": 12651, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:green_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "green", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5958 + } + ] + }, + "minecraft:green_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "green", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9788, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9789, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9790, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9791, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9792, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9793, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9794, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9795, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9796, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9797, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9798, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9799, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9800, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9801, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9802, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9803, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9804, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9805, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9806, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9807, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9808, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9809, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9810, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9811, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9812, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9813, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9814, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9815, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9816, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9817, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9818, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9819, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:green_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9369 + } + ] + }, + "minecraft:green_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11067, + "properties": { + "facing": "north" + } + }, + { + "id": 11068, + "properties": { + "facing": "south" + } + }, + { + "id": 11069, + "properties": { + "facing": "west" + } + }, + { + "id": 11070, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2060 + } + ] + }, + "minecraft:grindstone": { + "definition": { + "type": "minecraft:grindstone", + "properties": {} + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 18438, + "properties": { + "face": "floor", + "facing": "north" + } + }, + { + "id": 18439, + "properties": { + "face": "floor", + "facing": "south" + } + }, + { + "id": 18440, + "properties": { + "face": "floor", + "facing": "west" + } + }, + { + "id": 18441, + "properties": { + "face": "floor", + "facing": "east" + } + }, + { + "default": true, + "id": 18442, + "properties": { + "face": "wall", + "facing": "north" + } + }, + { + "id": 18443, + "properties": { + "face": "wall", + "facing": "south" + } + }, + { + "id": 18444, + "properties": { + "face": "wall", + "facing": "west" + } + }, + { + "id": 18445, + "properties": { + "face": "wall", + "facing": "east" + } + }, + { + "id": 18446, + "properties": { + "face": "ceiling", + "facing": "north" + } + }, + { + "id": 18447, + "properties": { + "face": "ceiling", + "facing": "south" + } + }, + { + "id": 18448, + "properties": { + "face": "ceiling", + "facing": "west" + } + }, + { + "id": 18449, + "properties": { + "face": "ceiling", + "facing": "east" + } + } + ] + }, + "minecraft:hanging_roots": { + "definition": { + "type": "minecraft:hanging_roots", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24900, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24901, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:hay_block": { + "definition": { + "type": "minecraft:hay", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 10725, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 10726, + "properties": { + "axis": "y" + } + }, + { + "id": 10727, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:heavy_core": { + "definition": { + "type": "minecraft:heavy_core", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26682, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26683, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "iron", + "max_weight": 150, + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 9159, + "properties": { + "power": "0" + } + }, + { + "id": 9160, + "properties": { + "power": "1" + } + }, + { + "id": 9161, + "properties": { + "power": "2" + } + }, + { + "id": 9162, + "properties": { + "power": "3" + } + }, + { + "id": 9163, + "properties": { + "power": "4" + } + }, + { + "id": 9164, + "properties": { + "power": "5" + } + }, + { + "id": 9165, + "properties": { + "power": "6" + } + }, + { + "id": 9166, + "properties": { + "power": "7" + } + }, + { + "id": 9167, + "properties": { + "power": "8" + } + }, + { + "id": 9168, + "properties": { + "power": "9" + } + }, + { + "id": 9169, + "properties": { + "power": "10" + } + }, + { + "id": 9170, + "properties": { + "power": "11" + } + }, + { + "id": 9171, + "properties": { + "power": "12" + } + }, + { + "id": 9172, + "properties": { + "power": "13" + } + }, + { + "id": 9173, + "properties": { + "power": "14" + } + }, + { + "id": 9174, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:honey_block": { + "definition": { + "type": "minecraft:honey", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19445 + } + ] + }, + "minecraft:honeycomb_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19446 + } + ] + }, + "minecraft:hopper": { + "definition": { + "type": "minecraft:hopper", + "properties": {} + }, + "properties": { + "enabled": [ + "true", + "false" + ], + "facing": [ + "down", + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9225, + "properties": { + "enabled": "true", + "facing": "down" + } + }, + { + "id": 9226, + "properties": { + "enabled": "true", + "facing": "north" + } + }, + { + "id": 9227, + "properties": { + "enabled": "true", + "facing": "south" + } + }, + { + "id": 9228, + "properties": { + "enabled": "true", + "facing": "west" + } + }, + { + "id": 9229, + "properties": { + "enabled": "true", + "facing": "east" + } + }, + { + "id": 9230, + "properties": { + "enabled": "false", + "facing": "down" + } + }, + { + "id": 9231, + "properties": { + "enabled": "false", + "facing": "north" + } + }, + { + "id": 9232, + "properties": { + "enabled": "false", + "facing": "south" + } + }, + { + "id": 9233, + "properties": { + "enabled": "false", + "facing": "west" + } + }, + { + "id": 9234, + "properties": { + "enabled": "false", + "facing": "east" + } + } + ] + }, + "minecraft:horn_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_horn_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12831, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12832, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_horn_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12812 + } + ] + }, + "minecraft:horn_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_horn_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12851, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12852, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_horn_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12925, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12926, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12927, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12928, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12929, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12930, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12931, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12932, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ice": { + "definition": { + "type": "minecraft:ice", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5780 + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:chiseled_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6548 + } + ] + }, + "minecraft:infested_cobblestone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cobblestone", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6544 + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cracked_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6547 + } + ] + }, + "minecraft:infested_deepslate": { + "definition": { + "type": "minecraft:infested_rotated_pillar", + "host": "minecraft:deepslate", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26554, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26555, + "properties": { + "axis": "y" + } + }, + { + "id": 26556, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:infested_mossy_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:mossy_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6546 + } + ] + }, + "minecraft:infested_stone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6543 + } + ] + }, + "minecraft:infested_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6545 + } + ] + }, + "minecraft:iron_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6741, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6742, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6743, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6744, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6745, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6746, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6747, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6748, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6749, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6750, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6751, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6752, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6753, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6754, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6755, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6756, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6757, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6758, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6759, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6760, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6761, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6762, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6763, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6764, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6765, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6766, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6767, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6768, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6769, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6770, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6771, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6772, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2092 + } + ] + }, + "minecraft:iron_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "iron", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5652, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5653, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5654, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5655, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5660, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5661, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5662, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5663, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5664, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5665, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5666, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5668, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5669, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5670, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5671, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5672, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5673, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5674, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5676, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5677, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5678, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5679, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5680, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5681, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5682, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5684, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5685, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5686, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5687, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5688, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5689, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5690, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5692, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5693, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5694, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5695, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5696, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5697, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5698, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5700, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5701, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5702, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5703, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5704, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5705, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5706, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5708, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5709, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5710, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 125 + } + ] + }, + "minecraft:iron_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "iron", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10399, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10400, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10401, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10402, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10403, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10404, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10405, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10406, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10407, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10408, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10409, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10410, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10411, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10412, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10413, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10414, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10415, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10416, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10417, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10418, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10419, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10420, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10421, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10422, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10423, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10424, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10425, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10426, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10427, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10428, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10429, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10430, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10431, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10432, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10433, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10434, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10435, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10436, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10437, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10438, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10439, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10440, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10441, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10442, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10443, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10444, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10445, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10446, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10447, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10448, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10449, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10450, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10451, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10452, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10453, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10454, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10455, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10456, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10457, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10458, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 10459, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 10460, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 10461, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 10462, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jack_o_lantern": { + "definition": { + "type": "minecraft:jack_o_lantern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5870, + "properties": { + "facing": "north" + } + }, + { + "id": 5871, + "properties": { + "facing": "south" + } + }, + { + "id": 5872, + "properties": { + "facing": "west" + } + }, + { + "id": 5873, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:jigsaw": { + "definition": { + "type": "minecraft:jigsaw", + "properties": {} + }, + "properties": { + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + }, + "states": [ + { + "id": 19360, + "properties": { + "orientation": "down_east" + } + }, + { + "id": 19361, + "properties": { + "orientation": "down_north" + } + }, + { + "id": 19362, + "properties": { + "orientation": "down_south" + } + }, + { + "id": 19363, + "properties": { + "orientation": "down_west" + } + }, + { + "id": 19364, + "properties": { + "orientation": "up_east" + } + }, + { + "id": 19365, + "properties": { + "orientation": "up_north" + } + }, + { + "id": 19366, + "properties": { + "orientation": "up_south" + } + }, + { + "id": 19367, + "properties": { + "orientation": "up_west" + } + }, + { + "id": 19368, + "properties": { + "orientation": "west_up" + } + }, + { + "id": 19369, + "properties": { + "orientation": "east_up" + } + }, + { + "default": true, + "id": 19370, + "properties": { + "orientation": "north_up" + } + }, + { + "id": 19371, + "properties": { + "orientation": "south_up" + } + } + ] + }, + "minecraft:jukebox": { + "definition": { + "type": "minecraft:jukebox", + "properties": {} + }, + "properties": { + "has_record": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5815, + "properties": { + "has_record": "true" + } + }, + { + "default": true, + "id": 5816, + "properties": { + "has_record": "false" + } + } + ] + }, + "minecraft:jungle_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "jungle", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8683, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8684, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8685, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8686, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8687, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8688, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8689, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8690, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8691, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8692, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8693, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8694, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8695, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8696, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8697, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8698, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8699, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8700, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8701, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8702, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8703, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8704, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8705, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8706, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11950, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11951, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11952, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11953, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11954, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11955, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11956, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11957, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11958, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11959, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11960, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11961, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11962, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11963, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11964, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11965, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11966, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11967, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11968, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11969, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11970, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11971, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11972, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11973, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11974, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11975, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11976, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11977, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11978, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11979, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11980, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11981, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11982, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11983, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11984, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11985, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11986, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11987, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11988, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11989, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11990, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11991, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11992, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11993, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11994, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11995, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11996, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11997, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11998, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11999, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12000, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12001, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12002, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12003, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12004, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12005, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12006, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12007, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12008, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12009, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12010, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12011, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12012, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12013, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11630, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11631, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11632, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11633, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11634, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11635, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11636, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11637, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11638, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11639, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11640, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11641, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11642, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11643, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11644, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11645, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11646, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11647, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11648, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11649, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11650, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11651, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11652, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11653, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11654, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11655, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11656, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11657, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11658, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11659, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11660, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11661, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:jungle_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11374, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11375, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11376, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11377, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11378, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11379, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11380, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11381, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11382, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11383, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11384, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11385, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11386, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11387, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11388, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11389, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11390, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11391, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11392, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11393, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11394, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11395, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11396, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11397, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11398, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11399, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11400, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11401, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11402, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11403, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11404, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11405, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5154, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5155, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5156, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5157, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5158, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5159, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5160, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5161, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5162, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5163, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5164, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5165, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5166, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5167, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5168, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5169, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5170, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5171, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5172, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5173, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5174, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5175, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5176, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5177, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5178, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5179, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5180, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5181, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5182, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5183, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5184, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5185, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5186, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5187, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5188, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5189, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5190, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5191, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5192, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5193, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5194, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5195, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5196, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5197, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5198, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5199, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5200, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5201, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5202, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5203, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5204, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5205, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5206, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5207, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5208, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5209, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5210, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5211, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5212, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5213, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5214, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5215, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5216, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5217, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 321, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 322, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 323, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 324, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 325, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 326, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 327, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 328, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 329, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 330, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 331, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 332, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 333, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 334, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 335, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 336, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 337, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 338, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 339, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 340, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 341, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 342, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 343, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 344, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 345, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 346, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 347, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 348, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 139, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 140, + "properties": { + "axis": "y" + } + }, + { + "id": 141, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:jungle_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18 + } + ] + }, + "minecraft:jungle_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5722, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5723, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:jungle_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "jungle" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 31, + "properties": { + "stage": "0" + } + }, + { + "id": 32, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:jungle_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4462, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4463, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4464, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4465, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4466, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4467, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4468, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4469, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4470, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4471, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4472, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4473, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4474, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4475, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4476, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4477, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4478, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4479, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4480, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4481, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4482, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4483, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4484, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4485, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4486, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4487, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4488, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4489, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4490, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4491, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4492, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4493, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11180, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11181, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11182, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11183, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11184, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11185, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:jungle_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7826, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7827, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7828, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7829, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7830, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7831, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7832, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7833, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7834, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7835, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7836, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7837, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7838, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7839, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7840, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7841, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7842, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7843, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7844, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7845, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7846, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7847, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7848, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7849, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7850, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7851, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7852, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7853, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7854, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7855, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7856, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7857, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7858, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7859, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7860, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7861, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7862, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7863, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7864, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7865, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7866, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7867, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7868, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7869, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7870, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7871, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7872, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7873, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7874, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7875, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7876, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7877, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7878, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7879, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7880, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7881, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7882, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7883, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7884, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7885, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7886, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7887, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7888, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7889, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7890, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7891, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7892, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7893, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7894, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7895, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7896, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7897, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7898, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7899, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7900, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7901, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7902, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7903, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7904, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7905, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6153, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6154, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6155, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6156, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6157, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6158, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6159, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6160, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6161, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6162, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6163, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6164, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6165, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6166, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6167, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6168, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6169, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6170, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6171, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6172, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6173, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6174, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6175, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6176, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6177, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6178, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6179, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6180, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6181, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6182, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6183, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6184, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6185, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6186, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6187, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6188, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6189, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6190, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6191, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6192, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6193, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6194, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6195, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6196, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6197, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6198, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6199, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6200, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6201, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6202, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6203, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6204, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6205, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6206, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6207, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6208, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6209, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6210, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6211, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6212, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6213, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6214, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6215, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6216, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5578, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5579, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5580, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5581, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5582, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5583, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5584, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5585, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4802, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4803, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4804, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4805, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4806, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4807, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4808, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4809, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 198, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 199, + "properties": { + "axis": "y" + } + }, + { + "id": 200, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:kelp": { + "definition": { + "type": "minecraft:kelp", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 12760, + "properties": { + "age": "0" + } + }, + { + "id": 12761, + "properties": { + "age": "1" + } + }, + { + "id": 12762, + "properties": { + "age": "2" + } + }, + { + "id": 12763, + "properties": { + "age": "3" + } + }, + { + "id": 12764, + "properties": { + "age": "4" + } + }, + { + "id": 12765, + "properties": { + "age": "5" + } + }, + { + "id": 12766, + "properties": { + "age": "6" + } + }, + { + "id": 12767, + "properties": { + "age": "7" + } + }, + { + "id": 12768, + "properties": { + "age": "8" + } + }, + { + "id": 12769, + "properties": { + "age": "9" + } + }, + { + "id": 12770, + "properties": { + "age": "10" + } + }, + { + "id": 12771, + "properties": { + "age": "11" + } + }, + { + "id": 12772, + "properties": { + "age": "12" + } + }, + { + "id": 12773, + "properties": { + "age": "13" + } + }, + { + "id": 12774, + "properties": { + "age": "14" + } + }, + { + "id": 12775, + "properties": { + "age": "15" + } + }, + { + "id": 12776, + "properties": { + "age": "16" + } + }, + { + "id": 12777, + "properties": { + "age": "17" + } + }, + { + "id": 12778, + "properties": { + "age": "18" + } + }, + { + "id": 12779, + "properties": { + "age": "19" + } + }, + { + "id": 12780, + "properties": { + "age": "20" + } + }, + { + "id": 12781, + "properties": { + "age": "21" + } + }, + { + "id": 12782, + "properties": { + "age": "22" + } + }, + { + "id": 12783, + "properties": { + "age": "23" + } + }, + { + "id": 12784, + "properties": { + "age": "24" + } + }, + { + "id": 12785, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:kelp_plant": { + "definition": { + "type": "minecraft:kelp_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12786 + } + ] + }, + "minecraft:ladder": { + "definition": { + "type": "minecraft:ladder", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4654, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4655, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4656, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4657, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4658, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4659, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4660, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4661, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18503, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 18504, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 18505, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18506, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lapis_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 522 + } + ] + }, + "minecraft:lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 520 + } + ] + }, + "minecraft:large_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 3.0, + "height": 5.0, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21045, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21046, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21047, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21048, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21049, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21050, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21051, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21052, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21053, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21054, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21055, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21056, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:large_fern": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10757, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10758, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lava": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:lava", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 96, + "properties": { + "level": "0" + } + }, + { + "id": 97, + "properties": { + "level": "1" + } + }, + { + "id": 98, + "properties": { + "level": "2" + } + }, + { + "id": 99, + "properties": { + "level": "3" + } + }, + { + "id": 100, + "properties": { + "level": "4" + } + }, + { + "id": 101, + "properties": { + "level": "5" + } + }, + { + "id": 102, + "properties": { + "level": "6" + } + }, + { + "id": 103, + "properties": { + "level": "7" + } + }, + { + "id": 104, + "properties": { + "level": "8" + } + }, + { + "id": 105, + "properties": { + "level": "9" + } + }, + { + "id": 106, + "properties": { + "level": "10" + } + }, + { + "id": 107, + "properties": { + "level": "11" + } + }, + { + "id": 108, + "properties": { + "level": "12" + } + }, + { + "id": 109, + "properties": { + "level": "13" + } + }, + { + "id": 110, + "properties": { + "level": "14" + } + }, + { + "id": 111, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:lava_cauldron": { + "definition": { + "type": "minecraft:lava_cauldron", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7402 + } + ] + }, + "minecraft:lectern": { + "definition": { + "type": "minecraft:lectern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "has_book": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18450, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18451, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18452, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 18453, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 18454, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18455, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18456, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 18457, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 18458, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18459, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18460, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 18461, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 18462, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 18463, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 18464, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 18465, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "false" + } + } + ] + }, + "minecraft:lever": { + "definition": { + "type": "minecraft:lever", + "properties": {} + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5626, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5627, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5628, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5629, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5630, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5631, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5632, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5633, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5634, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 5635, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5636, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5637, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5638, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5639, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5640, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5641, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5642, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5643, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5644, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5645, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5646, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5647, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5648, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5649, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:light": { + "definition": { + "type": "minecraft:light", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10367, + "properties": { + "level": "0", + "waterlogged": "true" + } + }, + { + "id": 10368, + "properties": { + "level": "0", + "waterlogged": "false" + } + }, + { + "id": 10369, + "properties": { + "level": "1", + "waterlogged": "true" + } + }, + { + "id": 10370, + "properties": { + "level": "1", + "waterlogged": "false" + } + }, + { + "id": 10371, + "properties": { + "level": "2", + "waterlogged": "true" + } + }, + { + "id": 10372, + "properties": { + "level": "2", + "waterlogged": "false" + } + }, + { + "id": 10373, + "properties": { + "level": "3", + "waterlogged": "true" + } + }, + { + "id": 10374, + "properties": { + "level": "3", + "waterlogged": "false" + } + }, + { + "id": 10375, + "properties": { + "level": "4", + "waterlogged": "true" + } + }, + { + "id": 10376, + "properties": { + "level": "4", + "waterlogged": "false" + } + }, + { + "id": 10377, + "properties": { + "level": "5", + "waterlogged": "true" + } + }, + { + "id": 10378, + "properties": { + "level": "5", + "waterlogged": "false" + } + }, + { + "id": 10379, + "properties": { + "level": "6", + "waterlogged": "true" + } + }, + { + "id": 10380, + "properties": { + "level": "6", + "waterlogged": "false" + } + }, + { + "id": 10381, + "properties": { + "level": "7", + "waterlogged": "true" + } + }, + { + "id": 10382, + "properties": { + "level": "7", + "waterlogged": "false" + } + }, + { + "id": 10383, + "properties": { + "level": "8", + "waterlogged": "true" + } + }, + { + "id": 10384, + "properties": { + "level": "8", + "waterlogged": "false" + } + }, + { + "id": 10385, + "properties": { + "level": "9", + "waterlogged": "true" + } + }, + { + "id": 10386, + "properties": { + "level": "9", + "waterlogged": "false" + } + }, + { + "id": 10387, + "properties": { + "level": "10", + "waterlogged": "true" + } + }, + { + "id": 10388, + "properties": { + "level": "10", + "waterlogged": "false" + } + }, + { + "id": 10389, + "properties": { + "level": "11", + "waterlogged": "true" + } + }, + { + "id": 10390, + "properties": { + "level": "11", + "waterlogged": "false" + } + }, + { + "id": 10391, + "properties": { + "level": "12", + "waterlogged": "true" + } + }, + { + "id": 10392, + "properties": { + "level": "12", + "waterlogged": "false" + } + }, + { + "id": 10393, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 10394, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 10395, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 10396, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 10397, + "properties": { + "level": "15", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10398, + "properties": { + "level": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_blue", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10807, + "properties": { + "rotation": "0" + } + }, + { + "id": 10808, + "properties": { + "rotation": "1" + } + }, + { + "id": 10809, + "properties": { + "rotation": "2" + } + }, + { + "id": 10810, + "properties": { + "rotation": "3" + } + }, + { + "id": 10811, + "properties": { + "rotation": "4" + } + }, + { + "id": 10812, + "properties": { + "rotation": "5" + } + }, + { + "id": 10813, + "properties": { + "rotation": "6" + } + }, + { + "id": 10814, + "properties": { + "rotation": "7" + } + }, + { + "id": 10815, + "properties": { + "rotation": "8" + } + }, + { + "id": 10816, + "properties": { + "rotation": "9" + } + }, + { + "id": 10817, + "properties": { + "rotation": "10" + } + }, + { + "id": 10818, + "properties": { + "rotation": "11" + } + }, + { + "id": 10819, + "properties": { + "rotation": "12" + } + }, + { + "id": 10820, + "properties": { + "rotation": "13" + } + }, + { + "id": 10821, + "properties": { + "rotation": "14" + } + }, + { + "id": 10822, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1736, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1737, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1738, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1739, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1740, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1741, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1742, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1743, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1744, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1745, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1746, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1747, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1748, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1749, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1750, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1751, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20789, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20790, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20791, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20792, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20793, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20794, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20795, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20796, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20797, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20798, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20799, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20800, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20801, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20802, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20803, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20804, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_blue_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21005, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21006, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10731 + } + ] + }, + "minecraft:light_blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12731 + } + ] + }, + "minecraft:light_blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_blue_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12747 + } + ] + }, + "minecraft:light_blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12676, + "properties": { + "facing": "north" + } + }, + { + "id": 12677, + "properties": { + "facing": "south" + } + }, + { + "id": 12678, + "properties": { + "facing": "west" + } + }, + { + "id": 12679, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12586, + "properties": { + "facing": "north" + } + }, + { + "id": 12587, + "properties": { + "facing": "east" + } + }, + { + "id": 12588, + "properties": { + "facing": "south" + } + }, + { + "id": 12589, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12590, + "properties": { + "facing": "up" + } + }, + { + "id": 12591, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5948 + } + ] + }, + "minecraft:light_blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_blue", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9468, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9469, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9470, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9471, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9472, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9473, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9474, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9475, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9476, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9477, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9478, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9479, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9480, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9481, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9482, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9483, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9484, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9485, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9486, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9487, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9488, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9489, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9490, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9491, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9492, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9493, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9494, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9495, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9496, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9497, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9498, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9499, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9359 + } + ] + }, + "minecraft:light_blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11027, + "properties": { + "facing": "north" + } + }, + { + "id": 11028, + "properties": { + "facing": "south" + } + }, + { + "id": 11029, + "properties": { + "facing": "west" + } + }, + { + "id": 11030, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2050 + } + ] + }, + "minecraft:light_gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_gray", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10887, + "properties": { + "rotation": "0" + } + }, + { + "id": 10888, + "properties": { + "rotation": "1" + } + }, + { + "id": 10889, + "properties": { + "rotation": "2" + } + }, + { + "id": 10890, + "properties": { + "rotation": "3" + } + }, + { + "id": 10891, + "properties": { + "rotation": "4" + } + }, + { + "id": 10892, + "properties": { + "rotation": "5" + } + }, + { + "id": 10893, + "properties": { + "rotation": "6" + } + }, + { + "id": 10894, + "properties": { + "rotation": "7" + } + }, + { + "id": 10895, + "properties": { + "rotation": "8" + } + }, + { + "id": 10896, + "properties": { + "rotation": "9" + } + }, + { + "id": 10897, + "properties": { + "rotation": "10" + } + }, + { + "id": 10898, + "properties": { + "rotation": "11" + } + }, + { + "id": 10899, + "properties": { + "rotation": "12" + } + }, + { + "id": 10900, + "properties": { + "rotation": "13" + } + }, + { + "id": 10901, + "properties": { + "rotation": "14" + } + }, + { + "id": 10902, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1816, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1817, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1818, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1819, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1820, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1821, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1822, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1823, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1824, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1825, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1826, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1827, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1828, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1829, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1830, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1831, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20869, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20870, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20871, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20872, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20873, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20874, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20875, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20876, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20877, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20878, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20879, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20880, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20881, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20882, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20883, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20884, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_gray_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21015, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21016, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10736 + } + ] + }, + "minecraft:light_gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12736 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_gray_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12752 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12696, + "properties": { + "facing": "north" + } + }, + { + "id": 12697, + "properties": { + "facing": "south" + } + }, + { + "id": 12698, + "properties": { + "facing": "west" + } + }, + { + "id": 12699, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12616, + "properties": { + "facing": "north" + } + }, + { + "id": 12617, + "properties": { + "facing": "east" + } + }, + { + "id": 12618, + "properties": { + "facing": "south" + } + }, + { + "id": 12619, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12620, + "properties": { + "facing": "up" + } + }, + { + "id": 12621, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5953 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_gray", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9628, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9629, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9630, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9631, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9632, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9633, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9634, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9635, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9636, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9637, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9638, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9639, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9640, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9641, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9642, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9643, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9644, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9645, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9646, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9647, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9648, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9649, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9650, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9651, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9652, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9653, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9654, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9655, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9656, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9657, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9658, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9659, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9364 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11047, + "properties": { + "facing": "north" + } + }, + { + "id": 11048, + "properties": { + "facing": "south" + } + }, + { + "id": 11049, + "properties": { + "facing": "west" + } + }, + { + "id": 11050, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2055 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "gold", + "max_weight": 15, + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 9143, + "properties": { + "power": "0" + } + }, + { + "id": 9144, + "properties": { + "power": "1" + } + }, + { + "id": 9145, + "properties": { + "power": "2" + } + }, + { + "id": 9146, + "properties": { + "power": "3" + } + }, + { + "id": 9147, + "properties": { + "power": "4" + } + }, + { + "id": 9148, + "properties": { + "power": "5" + } + }, + { + "id": 9149, + "properties": { + "power": "6" + } + }, + { + "id": 9150, + "properties": { + "power": "7" + } + }, + { + "id": 9151, + "properties": { + "power": "8" + } + }, + { + "id": 9152, + "properties": { + "power": "9" + } + }, + { + "id": 9153, + "properties": { + "power": "10" + } + }, + { + "id": 9154, + "properties": { + "power": "11" + } + }, + { + "id": 9155, + "properties": { + "power": "12" + } + }, + { + "id": 9156, + "properties": { + "power": "13" + } + }, + { + "id": 9157, + "properties": { + "power": "14" + } + }, + { + "id": 9158, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24724, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24725, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24726, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24727, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24728, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24729, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24730, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24731, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24732, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24733, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24734, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24735, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24736, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24737, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24738, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24739, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24740, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24741, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24742, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24743, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24744, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24745, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24746, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24747, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lilac": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10749, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10750, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lily_of_the_valley": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 240, + "id": "minecraft:poison" + } + ] + }, + "states": [ + { + "default": true, + "id": 2088 + } + ] + }, + "minecraft:lily_pad": { + "definition": { + "type": "minecraft:waterlily", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7271 + } + ] + }, + "minecraft:lime_banner": { + "definition": { + "type": "minecraft:banner", + "color": "lime", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10839, + "properties": { + "rotation": "0" + } + }, + { + "id": 10840, + "properties": { + "rotation": "1" + } + }, + { + "id": 10841, + "properties": { + "rotation": "2" + } + }, + { + "id": 10842, + "properties": { + "rotation": "3" + } + }, + { + "id": 10843, + "properties": { + "rotation": "4" + } + }, + { + "id": 10844, + "properties": { + "rotation": "5" + } + }, + { + "id": 10845, + "properties": { + "rotation": "6" + } + }, + { + "id": 10846, + "properties": { + "rotation": "7" + } + }, + { + "id": 10847, + "properties": { + "rotation": "8" + } + }, + { + "id": 10848, + "properties": { + "rotation": "9" + } + }, + { + "id": 10849, + "properties": { + "rotation": "10" + } + }, + { + "id": 10850, + "properties": { + "rotation": "11" + } + }, + { + "id": 10851, + "properties": { + "rotation": "12" + } + }, + { + "id": 10852, + "properties": { + "rotation": "13" + } + }, + { + "id": 10853, + "properties": { + "rotation": "14" + } + }, + { + "id": 10854, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:lime_bed": { + "definition": { + "type": "minecraft:bed", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1768, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1769, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1770, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1771, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1772, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1773, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1774, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1775, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1776, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1777, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1778, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1779, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1780, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1781, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1782, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1783, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:lime_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20821, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20822, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20823, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20824, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20825, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20826, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20827, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20828, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20829, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20830, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20831, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20832, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20833, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20834, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20835, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20836, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lime_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:lime_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21009, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21010, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:lime_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "lime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10733 + } + ] + }, + "minecraft:lime_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12733 + } + ] + }, + "minecraft:lime_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:lime_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12749 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12684, + "properties": { + "facing": "north" + } + }, + { + "id": 12685, + "properties": { + "facing": "south" + } + }, + { + "id": 12686, + "properties": { + "facing": "west" + } + }, + { + "id": 12687, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12598, + "properties": { + "facing": "north" + } + }, + { + "id": 12599, + "properties": { + "facing": "east" + } + }, + { + "id": 12600, + "properties": { + "facing": "south" + } + }, + { + "id": 12601, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12602, + "properties": { + "facing": "up" + } + }, + { + "id": 12603, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:lime_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "lime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5950 + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "lime", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9532, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9533, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9534, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9535, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9536, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9537, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9538, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9539, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9540, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9541, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9542, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9543, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9544, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9545, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9546, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9547, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9548, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9549, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9550, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9551, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9552, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9553, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9554, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9555, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9556, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9557, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9558, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9559, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9560, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9561, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9562, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9563, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:lime_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9361 + } + ] + }, + "minecraft:lime_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11035, + "properties": { + "facing": "north" + } + }, + { + "id": 11036, + "properties": { + "facing": "south" + } + }, + { + "id": 11037, + "properties": { + "facing": "west" + } + }, + { + "id": 11038, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2052 + } + ] + }, + "minecraft:lodestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19459 + } + ] + }, + "minecraft:loom": { + "definition": { + "type": "minecraft:loom", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 18404, + "properties": { + "facing": "north" + } + }, + { + "id": 18405, + "properties": { + "facing": "south" + } + }, + { + "id": 18406, + "properties": { + "facing": "west" + } + }, + { + "id": 18407, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_banner": { + "definition": { + "type": "minecraft:banner", + "color": "magenta", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10791, + "properties": { + "rotation": "0" + } + }, + { + "id": 10792, + "properties": { + "rotation": "1" + } + }, + { + "id": 10793, + "properties": { + "rotation": "2" + } + }, + { + "id": 10794, + "properties": { + "rotation": "3" + } + }, + { + "id": 10795, + "properties": { + "rotation": "4" + } + }, + { + "id": 10796, + "properties": { + "rotation": "5" + } + }, + { + "id": 10797, + "properties": { + "rotation": "6" + } + }, + { + "id": 10798, + "properties": { + "rotation": "7" + } + }, + { + "id": 10799, + "properties": { + "rotation": "8" + } + }, + { + "id": 10800, + "properties": { + "rotation": "9" + } + }, + { + "id": 10801, + "properties": { + "rotation": "10" + } + }, + { + "id": 10802, + "properties": { + "rotation": "11" + } + }, + { + "id": 10803, + "properties": { + "rotation": "12" + } + }, + { + "id": 10804, + "properties": { + "rotation": "13" + } + }, + { + "id": 10805, + "properties": { + "rotation": "14" + } + }, + { + "id": 10806, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:magenta_bed": { + "definition": { + "type": "minecraft:bed", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1720, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1721, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1722, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1723, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1724, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1725, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1726, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1727, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1728, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1729, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1730, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1731, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1732, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1733, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1734, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1735, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:magenta_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20773, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20774, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20775, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20776, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20777, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20778, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20779, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20780, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20781, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20782, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20783, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20784, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20785, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20786, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20787, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20788, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:magenta_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:magenta_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21003, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21004, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:magenta_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "magenta", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10730 + } + ] + }, + "minecraft:magenta_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12730 + } + ] + }, + "minecraft:magenta_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:magenta_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12746 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12672, + "properties": { + "facing": "north" + } + }, + { + "id": 12673, + "properties": { + "facing": "south" + } + }, + { + "id": 12674, + "properties": { + "facing": "west" + } + }, + { + "id": 12675, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12580, + "properties": { + "facing": "north" + } + }, + { + "id": 12581, + "properties": { + "facing": "east" + } + }, + { + "id": 12582, + "properties": { + "facing": "south" + } + }, + { + "id": 12583, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12584, + "properties": { + "facing": "up" + } + }, + { + "id": 12585, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:magenta_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "magenta", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5947 + } + ] + }, + "minecraft:magenta_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "magenta", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9436, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9437, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9438, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9439, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9440, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9441, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9442, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9443, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9444, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9445, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9446, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9447, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9448, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9449, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9450, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9451, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9452, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9453, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9454, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9455, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9456, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9457, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9458, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9459, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9460, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9461, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9462, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9463, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9464, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9465, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9466, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9467, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:magenta_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9358 + } + ] + }, + "minecraft:magenta_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11023, + "properties": { + "facing": "north" + } + }, + { + "id": 11024, + "properties": { + "facing": "south" + } + }, + { + "id": 11025, + "properties": { + "facing": "west" + } + }, + { + "id": 11026, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2049 + } + ] + }, + "minecraft:magma_block": { + "definition": { + "type": "minecraft:magma", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12543 + } + ] + }, + "minecraft:mangrove_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "mangrove", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8779, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8780, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8781, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8782, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8783, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8784, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8785, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8786, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8787, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8788, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8789, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8790, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8791, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8792, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8793, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8794, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8795, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8796, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8797, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8798, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8799, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8800, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8801, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8802, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12206, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12207, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12208, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12209, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12210, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12211, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12212, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12213, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12214, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12215, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12216, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 12217, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12218, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12219, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12220, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12221, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12222, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12223, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12224, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12225, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12226, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12227, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12228, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12229, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12230, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12231, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12232, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12233, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12234, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12235, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12236, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12237, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12238, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12239, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12240, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12241, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12242, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12243, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12244, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12245, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12246, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12247, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12248, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12249, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12250, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12251, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12252, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12253, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12254, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12255, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12256, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12257, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12258, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12259, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12260, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12261, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 12262, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 12263, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 12264, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 12265, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 12266, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 12267, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 12268, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 12269, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11758, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11759, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11760, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11761, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11762, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11763, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11764, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11765, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11766, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11767, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11768, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11769, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11770, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11771, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11772, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11773, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11774, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11775, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11776, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11777, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11778, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11779, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11780, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11781, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11782, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11783, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11784, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11785, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11786, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11787, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11788, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11789, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:mangrove_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11502, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11503, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11504, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11505, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11506, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11507, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11508, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11509, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11510, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11511, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11512, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11513, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11514, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11515, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11516, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11517, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11518, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11519, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11520, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11521, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11522, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11523, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11524, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11525, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11526, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11527, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11528, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11529, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11530, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11531, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11532, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11533, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5410, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5411, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5412, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5413, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5414, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5415, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5416, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5417, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5418, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5419, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5420, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5421, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5422, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5423, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5424, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5425, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5426, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5427, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5428, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5429, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5430, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5431, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5432, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5433, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5434, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5435, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5436, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5437, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5438, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5439, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5440, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5441, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5442, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5443, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5444, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5445, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5446, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5447, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5448, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5449, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5450, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5451, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5452, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5453, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5454, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5455, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5456, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5457, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5458, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5459, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5460, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5461, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5462, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5463, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5464, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5465, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5466, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5467, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5468, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5469, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5470, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5471, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5472, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5473, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_leaves": { + "definition": { + "type": "minecraft:mangrove_leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 433, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 434, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 435, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 436, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 437, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 438, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 439, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 440, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 441, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 442, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 443, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 444, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 445, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 446, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 447, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 448, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 449, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 450, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 451, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 452, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 453, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 454, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 455, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 456, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 457, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 458, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 459, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 460, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 151, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 152, + "properties": { + "axis": "y" + } + }, + { + "id": 153, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mangrove_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22 + } + ] + }, + "minecraft:mangrove_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5730, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5731, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_propagule": { + "definition": { + "type": "minecraft:mangrove_propagule", + "properties": {}, + "tree": "mangrove" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "hanging": [ + "true", + "false" + ], + "stage": [ + "0", + "1" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 39, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 40, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 41, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 42, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 43, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 44, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 45, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 46, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 47, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 48, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 49, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 50, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 51, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 52, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 53, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 54, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 55, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 56, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 57, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 58, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 59, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 60, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 61, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 62, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 63, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 64, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 65, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 66, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 67, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 68, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 69, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 70, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 71, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 72, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 73, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 74, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 75, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 76, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 77, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 78, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_roots": { + "definition": { + "type": "minecraft:mangrove_roots", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 154, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 155, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4526, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4527, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4528, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4529, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4530, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4531, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4532, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4533, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4534, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4535, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4536, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4537, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4538, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4539, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4540, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4541, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4542, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4543, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4544, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4545, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4546, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4547, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4548, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4549, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4550, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4551, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4552, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4553, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4554, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4555, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4556, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4557, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11204, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11205, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11206, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11207, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11208, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11209, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mangrove_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10124, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10125, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10126, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10127, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10128, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10129, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10130, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10131, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10132, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10133, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10134, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10135, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10136, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10137, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10138, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10139, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10140, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10141, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10142, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10143, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10144, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10145, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10146, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10147, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10148, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10149, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10150, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10151, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10152, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10153, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10154, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10155, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10156, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10157, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10158, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10159, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10160, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10161, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10162, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10163, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10164, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10165, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10166, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10167, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10168, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10169, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10170, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10171, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10172, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10173, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10174, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10175, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10176, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10177, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10178, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10179, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10180, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10181, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10182, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10183, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10184, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10185, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10186, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10187, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10188, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10189, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10190, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10191, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10192, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10193, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10194, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10195, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10196, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10197, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10198, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10199, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10200, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10201, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10202, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10203, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6409, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6410, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6411, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6412, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6413, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6414, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6415, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6416, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6417, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6418, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6419, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6420, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6421, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6422, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6423, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6424, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6425, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6426, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6427, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6428, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6429, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6430, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6431, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6432, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6433, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6434, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6435, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6436, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6437, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6438, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6439, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6440, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6441, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6442, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6443, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6444, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6445, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6446, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6447, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6448, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6449, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6450, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6451, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6452, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6453, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6454, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6455, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6456, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6457, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6458, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6459, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6460, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6461, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6462, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6463, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6464, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6465, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6466, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6467, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6468, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6469, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6470, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6471, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6472, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5594, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5595, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5596, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5597, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5598, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5599, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5600, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5601, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4818, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4819, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4820, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4821, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4822, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4823, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4824, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4825, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 210, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 211, + "properties": { + "axis": "y" + } + }, + { + "id": 212, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:medium_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 3.0, + "height": 4.0, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21057, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21058, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21059, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21060, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21061, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21062, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21063, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21064, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21065, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21066, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21067, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21068, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:melon": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6812 + } + ] + }, + "minecraft:melon_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_melon_stem", + "fruit": "minecraft:melon", + "properties": {}, + "seed": "minecraft:melon_seeds" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6829, + "properties": { + "age": "0" + } + }, + { + "id": 6830, + "properties": { + "age": "1" + } + }, + { + "id": 6831, + "properties": { + "age": "2" + } + }, + { + "id": 6832, + "properties": { + "age": "3" + } + }, + { + "id": 6833, + "properties": { + "age": "4" + } + }, + { + "id": 6834, + "properties": { + "age": "5" + } + }, + { + "id": 6835, + "properties": { + "age": "6" + } + }, + { + "id": 6836, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:moss_block": { + "definition": { + "type": "minecraft:moss", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24843 + } + ] + }, + "minecraft:moss_carpet": { + "definition": { + "type": "minecraft:carpet", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24826 + } + ] + }, + "minecraft:mossy_cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2353 + } + ] + }, + "minecraft:mossy_cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14106, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14107, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14108, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14109, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14110, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14111, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_cobblestone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13282, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13283, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13284, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13285, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13286, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13287, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13288, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13289, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13290, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13291, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13292, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13293, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13294, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13295, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13302, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13303, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13304, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13305, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13306, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13307, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13308, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13309, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13310, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13311, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13312, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13313, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13314, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13315, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13322, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13323, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13324, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13325, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13326, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13327, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13328, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13329, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13330, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13331, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13332, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13333, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13334, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13335, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13342, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13343, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13344, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13345, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13346, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13347, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13348, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13349, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13350, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13351, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13352, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13353, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13354, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13355, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 8243, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8244, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8245, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 8246, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8247, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8248, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8249, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8250, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8251, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8252, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8253, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8254, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8255, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8256, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8257, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8258, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8259, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8260, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8261, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8262, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8263, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8264, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8265, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8266, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8267, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8268, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8269, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8270, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8271, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8272, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8273, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8274, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8275, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8276, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8277, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8278, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8279, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8280, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8281, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8282, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8283, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8284, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8285, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8286, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8287, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8288, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8289, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8290, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8291, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8292, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8293, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8294, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8295, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8296, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8297, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8298, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8299, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8300, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8301, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8302, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8303, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8304, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8305, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8306, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8307, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8308, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8309, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8310, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8311, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8312, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8313, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8314, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8315, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8316, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8317, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8318, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8319, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8320, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8321, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8322, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8323, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8324, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8325, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8326, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8327, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8328, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8329, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8330, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8331, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8332, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8333, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8334, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8335, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8336, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8337, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8338, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8339, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8340, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8341, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8342, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8343, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8344, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8345, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8346, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8347, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8348, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8349, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8350, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8351, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8352, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8353, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8354, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8355, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8356, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8357, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8358, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8359, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8360, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8361, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8362, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8363, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8364, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8365, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8366, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8367, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8368, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8369, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8370, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8371, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8372, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8373, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8374, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8375, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8376, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8377, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8378, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8379, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8380, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8381, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8382, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8383, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8384, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8385, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8386, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8387, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8388, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8389, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8390, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8391, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8392, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8393, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8394, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8395, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8396, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8397, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8398, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8399, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8400, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8401, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8402, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8403, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8404, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8405, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8406, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8407, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8408, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8409, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8410, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8411, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8412, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8413, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8414, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8415, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8416, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8417, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8418, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8419, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8420, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8421, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8422, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8423, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8424, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8425, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8426, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8427, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8428, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8429, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8430, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8431, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8432, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8433, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8434, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8435, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8436, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8437, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8438, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8439, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8440, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8441, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8442, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8443, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8444, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8445, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8446, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8447, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8448, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8449, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8450, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8451, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8452, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8453, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8454, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8455, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8456, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8457, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8458, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8459, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8460, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8461, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8462, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8463, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8464, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8465, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8466, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8467, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8468, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8469, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8470, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8471, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8472, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8473, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8474, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8475, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8476, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8477, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8478, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8479, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8480, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8481, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8482, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8483, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8484, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8485, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8486, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8487, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8488, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8489, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8490, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8491, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8492, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8493, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8494, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8495, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8496, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8497, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8498, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8499, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8500, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8501, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8502, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8503, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8504, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8505, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8506, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8507, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8508, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8509, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8510, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8511, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8512, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8513, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8514, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8515, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8516, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8517, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8518, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8519, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8520, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8521, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8522, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8523, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8524, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8525, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8526, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8527, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8528, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8529, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8530, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8531, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8532, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8533, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8534, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8535, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8536, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8537, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8538, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8539, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8540, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8541, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8542, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8543, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8544, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8545, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8546, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8547, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8548, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8549, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8550, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8551, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8552, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8553, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8554, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8555, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8556, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8557, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8558, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8559, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8560, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 8561, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 8562, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 8563, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 8564, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 8565, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 8566, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14094, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14095, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14096, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14097, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14098, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14099, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13122, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13123, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13124, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13125, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13126, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13127, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13128, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13129, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13130, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13131, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13132, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13133, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13134, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13135, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13136, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13137, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13138, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13139, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13140, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13141, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13142, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13143, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13144, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13145, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13146, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13147, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13148, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13149, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13150, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13151, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13152, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13153, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13154, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13155, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13156, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13157, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13158, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13159, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13160, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13161, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13162, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13163, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13164, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13165, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13166, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13167, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13168, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13169, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13170, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13171, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13172, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13173, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13174, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13175, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13176, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13177, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13178, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13179, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13180, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13181, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13182, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13183, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13184, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13185, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13186, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13187, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13188, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13189, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13190, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13191, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13192, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13193, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13194, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13195, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13196, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13197, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13198, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13199, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13200, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13201, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15132, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15133, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15134, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15135, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15136, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15137, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15138, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15139, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15140, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15141, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15142, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15143, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15144, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15145, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15146, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15147, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15148, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15149, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15150, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15151, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15152, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15153, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15154, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15155, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15156, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15157, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15158, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15159, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15160, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15161, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15162, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15163, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15164, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15165, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15166, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15167, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15168, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15169, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15170, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15171, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15172, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15173, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15174, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15175, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15176, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15177, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15178, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15179, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15180, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15181, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15182, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15183, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15184, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15185, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15186, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15187, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15188, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15189, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15190, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15191, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15192, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15193, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15194, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15195, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15196, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15197, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15198, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15199, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15200, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15201, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15202, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15203, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15204, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15205, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15348, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15349, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15350, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15351, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15352, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15353, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15354, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15355, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15356, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15357, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15358, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15359, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15360, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15361, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15362, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15363, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15364, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15365, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15366, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15367, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15368, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15369, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15370, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15371, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15372, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15373, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15374, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15375, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15376, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15377, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15378, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15379, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15380, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15381, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15382, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15383, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15384, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15385, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15386, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15387, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15388, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15389, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15390, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15391, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15392, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15393, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15394, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15395, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15396, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15397, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15398, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15399, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15400, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15401, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15402, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15403, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15404, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15405, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15406, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15407, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15408, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15409, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15410, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15411, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15412, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15413, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15414, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15415, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15416, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15417, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15418, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15419, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15420, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15421, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15422, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15423, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15424, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15425, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15426, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15427, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15428, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15429, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15430, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15431, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15432, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15433, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15434, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15435, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15436, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15437, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15438, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15439, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15440, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15441, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15442, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15443, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15444, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15445, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15446, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15447, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15448, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15449, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15450, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15451, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15452, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15453, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15454, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15455, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6538 + } + ] + }, + "minecraft:moving_piston": { + "definition": { + "type": "minecraft:moving_piston", + "properties": {} + }, + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "default": true, + "id": 2063, + "properties": { + "type": "normal", + "facing": "north" + } + }, + { + "id": 2064, + "properties": { + "type": "sticky", + "facing": "north" + } + }, + { + "id": 2065, + "properties": { + "type": "normal", + "facing": "east" + } + }, + { + "id": 2066, + "properties": { + "type": "sticky", + "facing": "east" + } + }, + { + "id": 2067, + "properties": { + "type": "normal", + "facing": "south" + } + }, + { + "id": 2068, + "properties": { + "type": "sticky", + "facing": "south" + } + }, + { + "id": 2069, + "properties": { + "type": "normal", + "facing": "west" + } + }, + { + "id": 2070, + "properties": { + "type": "sticky", + "facing": "west" + } + }, + { + "id": 2071, + "properties": { + "type": "normal", + "facing": "up" + } + }, + { + "id": 2072, + "properties": { + "type": "sticky", + "facing": "up" + } + }, + { + "id": 2073, + "properties": { + "type": "normal", + "facing": "down" + } + }, + { + "id": 2074, + "properties": { + "type": "sticky", + "facing": "down" + } + } + ] + }, + "minecraft:mud": { + "definition": { + "type": "minecraft:mud", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24903 + } + ] + }, + "minecraft:mud_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11270, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11271, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11272, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11273, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11274, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11275, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mud_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7189, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7190, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7191, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7192, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7193, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7194, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7195, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7196, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7197, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7198, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7199, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7200, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7201, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7202, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7203, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7204, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7205, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7206, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7207, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7208, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7209, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7210, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7211, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7212, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7213, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7214, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7215, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7216, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7217, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7218, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7219, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7220, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7221, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7222, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7223, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7224, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7225, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7226, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7227, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7228, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7229, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7230, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7231, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7232, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7233, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7234, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7235, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7236, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7237, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7238, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7239, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7240, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7241, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7242, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7243, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7244, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7245, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7246, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7247, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7248, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7249, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7250, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7251, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7252, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7253, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7254, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7255, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7256, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7257, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7258, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7259, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7260, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7261, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7262, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7263, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7264, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7265, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7266, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7267, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7268, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16104, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16105, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16106, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16107, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16108, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16109, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16110, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16111, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16112, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16113, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16114, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16115, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16116, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16117, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16118, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16119, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16120, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16121, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16122, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16123, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16124, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16125, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16126, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16127, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16128, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16129, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16130, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16131, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16132, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16133, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16134, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16135, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16136, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16137, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16138, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16139, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16140, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16141, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16142, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16143, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16144, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16145, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16146, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16147, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16148, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16149, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16150, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16151, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16152, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16153, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16154, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16155, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16156, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16157, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16158, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16159, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16160, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16161, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16162, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16163, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16164, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16165, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16166, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16167, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16168, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16169, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16170, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16171, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16172, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16173, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16174, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16175, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16176, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16177, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16320, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16321, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16322, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16323, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16324, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16325, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16326, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16327, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16328, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16329, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16330, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16331, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16332, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16333, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16334, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16335, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16336, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16337, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16338, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16339, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16340, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16341, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16342, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16343, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16344, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16345, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16346, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16347, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16348, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16349, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16350, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16351, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16352, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16353, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16354, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16355, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16356, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16357, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16358, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16359, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16360, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16361, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16362, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16363, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16364, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16365, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16366, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16367, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16368, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16369, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16370, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16371, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16372, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16373, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16374, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16375, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16376, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16377, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16378, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16379, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16380, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16381, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16382, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16383, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16384, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16385, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16386, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16387, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16388, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16389, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16390, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16391, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16392, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16393, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16394, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16395, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16396, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16397, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16398, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16399, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16400, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16401, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16402, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16403, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16404, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16405, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16406, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16407, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16408, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16409, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16410, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16411, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16412, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16413, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16414, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16415, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16416, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16417, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16418, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16419, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16420, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16421, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16422, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16423, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16424, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16425, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16426, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16427, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mud_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6542 + } + ] + }, + "minecraft:muddy_mangrove_roots": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 156, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 157, + "properties": { + "axis": "y" + } + }, + { + "id": 158, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mushroom_stem": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6677, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6678, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6679, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6680, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6681, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6682, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6683, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6684, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6685, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6686, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6687, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6688, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6689, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6690, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6691, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6692, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6693, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6694, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6695, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6696, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6697, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6698, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6699, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6700, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6701, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6702, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6703, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6704, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6705, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6706, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6707, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6708, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6709, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6710, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6711, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6712, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6713, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6714, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6715, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6716, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6717, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6718, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6719, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6720, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6721, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6722, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6723, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6724, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6725, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6726, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6727, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6728, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6729, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6730, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6731, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6732, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6733, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6734, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6735, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6736, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6737, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6738, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6739, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6740, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:mycelium": { + "definition": { + "type": "minecraft:mycelium", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7269, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 7270, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:nether_brick_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7273, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7274, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7275, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7276, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7277, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7278, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7279, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7280, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7281, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7282, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7283, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7284, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7285, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7286, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7287, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7288, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7289, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7290, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7291, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7292, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7293, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7294, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7295, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7296, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7297, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7298, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7299, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7300, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7301, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7302, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7303, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7304, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11276, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11277, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11278, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11279, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11280, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11281, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:nether_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7305, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7306, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7307, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7308, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7309, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7310, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7311, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7312, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7313, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7315, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7316, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7317, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7318, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7319, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7320, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7321, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7322, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7323, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7324, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7325, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7326, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7327, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7328, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7329, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7330, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7331, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7332, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7333, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7334, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7335, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7336, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7337, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7339, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7340, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7341, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7342, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7343, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7344, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7345, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7346, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7347, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7348, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7349, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7350, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7351, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7352, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7353, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7354, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7355, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7356, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7357, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7358, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7359, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7360, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7361, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7362, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7363, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7364, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7365, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7366, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7367, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7368, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7369, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7370, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7371, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7372, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7373, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7374, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7375, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7376, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7377, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7379, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7384, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16428, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16429, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16430, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16431, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16432, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16433, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16434, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16435, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16436, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16437, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16438, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16439, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16440, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16441, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16442, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16443, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16444, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16445, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16446, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16447, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16448, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16449, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16450, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16451, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16452, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16453, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16454, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16455, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16456, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16457, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16458, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16459, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16460, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16461, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16462, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16463, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16464, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16465, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16466, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16467, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16468, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16469, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16470, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16471, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16472, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16473, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16474, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16475, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16476, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16477, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16478, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16479, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16480, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16481, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16482, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16483, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16484, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16485, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16486, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16487, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16488, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16489, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16490, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16491, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16492, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16493, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16494, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16495, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16496, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16497, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16498, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16499, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16500, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16501, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16644, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16645, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16646, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16647, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16648, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16649, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16650, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16651, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16652, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16653, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16654, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16655, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16656, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16657, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16658, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16659, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16660, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16661, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16662, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16663, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16664, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16665, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16666, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16667, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16668, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16669, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16670, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16671, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16672, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16673, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16674, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16675, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16676, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16677, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16678, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16679, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16680, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16681, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16682, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16683, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16684, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16685, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16686, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16687, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16688, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16689, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16690, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16691, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16692, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16693, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16694, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16695, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16696, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16697, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16698, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16699, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16700, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16701, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16702, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16703, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16704, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16705, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16706, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16707, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16708, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16709, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16710, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16711, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16712, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16713, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16714, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16715, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16716, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16717, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16718, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16719, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16720, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16721, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16722, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16723, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16724, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16725, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16726, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16727, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16728, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16729, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16730, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16731, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16732, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16733, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16734, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16735, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16736, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16737, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16738, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16739, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16740, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16741, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16742, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16743, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16744, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16745, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16746, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16747, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16748, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16749, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16750, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16751, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7272 + } + ] + }, + "minecraft:nether_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 129 + } + ] + }, + "minecraft:nether_portal": { + "definition": { + "type": "minecraft:nether_portal", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "z" + ] + }, + "states": [ + { + "default": true, + "id": 5864, + "properties": { + "axis": "x" + } + }, + { + "id": 5865, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:nether_quartz_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9224 + } + ] + }, + "minecraft:nether_sprouts": { + "definition": { + "type": "minecraft:nether_sprouts", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18595 + } + ] + }, + "minecraft:nether_wart": { + "definition": { + "type": "minecraft:nether_wart", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 7385, + "properties": { + "age": "0" + } + }, + { + "id": 7386, + "properties": { + "age": "1" + } + }, + { + "id": 7387, + "properties": { + "age": "2" + } + }, + { + "id": 7388, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:nether_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12544 + } + ] + }, + "minecraft:netherite_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19447 + } + ] + }, + "minecraft:netherrack": { + "definition": { + "type": "minecraft:netherrack", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5849 + } + ] + }, + "minecraft:note_block": { + "definition": { + "type": "minecraft:note", + "properties": {} + }, + "properties": { + "instrument": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone", + "iron_xylophone", + "cow_bell", + "didgeridoo", + "bit", + "banjo", + "pling", + "zombie", + "skeleton", + "creeper", + "dragon", + "wither_skeleton", + "piglin", + "custom_head" + ], + "note": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 538, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "true" + } + }, + { + "default": true, + "id": 539, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "false" + } + }, + { + "id": 540, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "true" + } + }, + { + "id": 541, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "false" + } + }, + { + "id": 542, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "true" + } + }, + { + "id": 543, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "false" + } + }, + { + "id": 544, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "true" + } + }, + { + "id": 545, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "false" + } + }, + { + "id": 546, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "true" + } + }, + { + "id": 547, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "false" + } + }, + { + "id": 548, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "true" + } + }, + { + "id": 549, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "false" + } + }, + { + "id": 550, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "true" + } + }, + { + "id": 551, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "false" + } + }, + { + "id": 552, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "true" + } + }, + { + "id": 553, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "false" + } + }, + { + "id": 554, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "true" + } + }, + { + "id": 555, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "false" + } + }, + { + "id": 556, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "true" + } + }, + { + "id": 557, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "false" + } + }, + { + "id": 558, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "true" + } + }, + { + "id": 559, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "false" + } + }, + { + "id": 560, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "true" + } + }, + { + "id": 561, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "false" + } + }, + { + "id": 562, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "true" + } + }, + { + "id": 563, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "false" + } + }, + { + "id": 564, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "true" + } + }, + { + "id": 565, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "false" + } + }, + { + "id": 566, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "true" + } + }, + { + "id": 567, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "false" + } + }, + { + "id": 568, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "true" + } + }, + { + "id": 569, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "false" + } + }, + { + "id": 570, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "true" + } + }, + { + "id": 571, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "false" + } + }, + { + "id": 572, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "true" + } + }, + { + "id": 573, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "false" + } + }, + { + "id": 574, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "true" + } + }, + { + "id": 575, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "false" + } + }, + { + "id": 576, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "true" + } + }, + { + "id": 577, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "false" + } + }, + { + "id": 578, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "true" + } + }, + { + "id": 579, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "false" + } + }, + { + "id": 580, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "true" + } + }, + { + "id": 581, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "false" + } + }, + { + "id": 582, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "true" + } + }, + { + "id": 583, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "false" + } + }, + { + "id": 584, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "true" + } + }, + { + "id": 585, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "false" + } + }, + { + "id": 586, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "true" + } + }, + { + "id": 587, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "false" + } + }, + { + "id": 588, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "true" + } + }, + { + "id": 589, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "false" + } + }, + { + "id": 590, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "true" + } + }, + { + "id": 591, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "false" + } + }, + { + "id": 592, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "true" + } + }, + { + "id": 593, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "false" + } + }, + { + "id": 594, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "true" + } + }, + { + "id": 595, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "false" + } + }, + { + "id": 596, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "true" + } + }, + { + "id": 597, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "false" + } + }, + { + "id": 598, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "true" + } + }, + { + "id": 599, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "false" + } + }, + { + "id": 600, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "true" + } + }, + { + "id": 601, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "false" + } + }, + { + "id": 602, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "true" + } + }, + { + "id": 603, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "false" + } + }, + { + "id": 604, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "true" + } + }, + { + "id": 605, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "false" + } + }, + { + "id": 606, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "true" + } + }, + { + "id": 607, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "false" + } + }, + { + "id": 608, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "true" + } + }, + { + "id": 609, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "false" + } + }, + { + "id": 610, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "true" + } + }, + { + "id": 611, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "false" + } + }, + { + "id": 612, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "true" + } + }, + { + "id": 613, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "false" + } + }, + { + "id": 614, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "true" + } + }, + { + "id": 615, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "false" + } + }, + { + "id": 616, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "true" + } + }, + { + "id": 617, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "false" + } + }, + { + "id": 618, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "true" + } + }, + { + "id": 619, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "false" + } + }, + { + "id": 620, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "true" + } + }, + { + "id": 621, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "false" + } + }, + { + "id": 622, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "true" + } + }, + { + "id": 623, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "false" + } + }, + { + "id": 624, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "true" + } + }, + { + "id": 625, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "false" + } + }, + { + "id": 626, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "true" + } + }, + { + "id": 627, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "false" + } + }, + { + "id": 628, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "true" + } + }, + { + "id": 629, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "false" + } + }, + { + "id": 630, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "true" + } + }, + { + "id": 631, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "false" + } + }, + { + "id": 632, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "true" + } + }, + { + "id": 633, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "false" + } + }, + { + "id": 634, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "true" + } + }, + { + "id": 635, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "false" + } + }, + { + "id": 636, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "true" + } + }, + { + "id": 637, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "false" + } + }, + { + "id": 638, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "true" + } + }, + { + "id": 639, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "false" + } + }, + { + "id": 640, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "true" + } + }, + { + "id": 641, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "false" + } + }, + { + "id": 642, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "true" + } + }, + { + "id": 643, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "false" + } + }, + { + "id": 644, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "true" + } + }, + { + "id": 645, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "false" + } + }, + { + "id": 646, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "true" + } + }, + { + "id": 647, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "false" + } + }, + { + "id": 648, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "true" + } + }, + { + "id": 649, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "false" + } + }, + { + "id": 650, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "true" + } + }, + { + "id": 651, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "false" + } + }, + { + "id": 652, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "true" + } + }, + { + "id": 653, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "false" + } + }, + { + "id": 654, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "true" + } + }, + { + "id": 655, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "false" + } + }, + { + "id": 656, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "true" + } + }, + { + "id": 657, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "false" + } + }, + { + "id": 658, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "true" + } + }, + { + "id": 659, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "false" + } + }, + { + "id": 660, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "true" + } + }, + { + "id": 661, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "false" + } + }, + { + "id": 662, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "true" + } + }, + { + "id": 663, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "false" + } + }, + { + "id": 664, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "true" + } + }, + { + "id": 665, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "false" + } + }, + { + "id": 666, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "true" + } + }, + { + "id": 667, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "false" + } + }, + { + "id": 668, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "true" + } + }, + { + "id": 669, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "false" + } + }, + { + "id": 670, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "true" + } + }, + { + "id": 671, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "false" + } + }, + { + "id": 672, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "true" + } + }, + { + "id": 673, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "false" + } + }, + { + "id": 674, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "true" + } + }, + { + "id": 675, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "false" + } + }, + { + "id": 676, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "true" + } + }, + { + "id": 677, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "false" + } + }, + { + "id": 678, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "true" + } + }, + { + "id": 679, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "false" + } + }, + { + "id": 680, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "true" + } + }, + { + "id": 681, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "false" + } + }, + { + "id": 682, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "true" + } + }, + { + "id": 683, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "false" + } + }, + { + "id": 684, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "true" + } + }, + { + "id": 685, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "false" + } + }, + { + "id": 686, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "true" + } + }, + { + "id": 687, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "false" + } + }, + { + "id": 688, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "true" + } + }, + { + "id": 689, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "false" + } + }, + { + "id": 690, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "true" + } + }, + { + "id": 691, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "false" + } + }, + { + "id": 692, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "true" + } + }, + { + "id": 693, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "false" + } + }, + { + "id": 694, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "true" + } + }, + { + "id": 695, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "false" + } + }, + { + "id": 696, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "true" + } + }, + { + "id": 697, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "false" + } + }, + { + "id": 698, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "true" + } + }, + { + "id": 699, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "false" + } + }, + { + "id": 700, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "true" + } + }, + { + "id": 701, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "false" + } + }, + { + "id": 702, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "true" + } + }, + { + "id": 703, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "false" + } + }, + { + "id": 704, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "true" + } + }, + { + "id": 705, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "false" + } + }, + { + "id": 706, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "true" + } + }, + { + "id": 707, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "false" + } + }, + { + "id": 708, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "true" + } + }, + { + "id": 709, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "false" + } + }, + { + "id": 710, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "true" + } + }, + { + "id": 711, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "false" + } + }, + { + "id": 712, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "true" + } + }, + { + "id": 713, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "false" + } + }, + { + "id": 714, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "true" + } + }, + { + "id": 715, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "false" + } + }, + { + "id": 716, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "true" + } + }, + { + "id": 717, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "false" + } + }, + { + "id": 718, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "true" + } + }, + { + "id": 719, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "false" + } + }, + { + "id": 720, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "true" + } + }, + { + "id": 721, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "false" + } + }, + { + "id": 722, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "true" + } + }, + { + "id": 723, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "false" + } + }, + { + "id": 724, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "true" + } + }, + { + "id": 725, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "false" + } + }, + { + "id": 726, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "true" + } + }, + { + "id": 727, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "false" + } + }, + { + "id": 728, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "true" + } + }, + { + "id": 729, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "false" + } + }, + { + "id": 730, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "true" + } + }, + { + "id": 731, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "false" + } + }, + { + "id": 732, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "true" + } + }, + { + "id": 733, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "false" + } + }, + { + "id": 734, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "true" + } + }, + { + "id": 735, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "false" + } + }, + { + "id": 736, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "true" + } + }, + { + "id": 737, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "false" + } + }, + { + "id": 738, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "true" + } + }, + { + "id": 739, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "false" + } + }, + { + "id": 740, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "true" + } + }, + { + "id": 741, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "false" + } + }, + { + "id": 742, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "true" + } + }, + { + "id": 743, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "false" + } + }, + { + "id": 744, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "true" + } + }, + { + "id": 745, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "false" + } + }, + { + "id": 746, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "true" + } + }, + { + "id": 747, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "false" + } + }, + { + "id": 748, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "true" + } + }, + { + "id": 749, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "false" + } + }, + { + "id": 750, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "true" + } + }, + { + "id": 751, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "false" + } + }, + { + "id": 752, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "true" + } + }, + { + "id": 753, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "false" + } + }, + { + "id": 754, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "true" + } + }, + { + "id": 755, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "false" + } + }, + { + "id": 756, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "true" + } + }, + { + "id": 757, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "false" + } + }, + { + "id": 758, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "true" + } + }, + { + "id": 759, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "false" + } + }, + { + "id": 760, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "true" + } + }, + { + "id": 761, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "false" + } + }, + { + "id": 762, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "true" + } + }, + { + "id": 763, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "false" + } + }, + { + "id": 764, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "true" + } + }, + { + "id": 765, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "false" + } + }, + { + "id": 766, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "true" + } + }, + { + "id": 767, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "false" + } + }, + { + "id": 768, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "true" + } + }, + { + "id": 769, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "false" + } + }, + { + "id": 770, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "true" + } + }, + { + "id": 771, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "false" + } + }, + { + "id": 772, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "true" + } + }, + { + "id": 773, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "false" + } + }, + { + "id": 774, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "true" + } + }, + { + "id": 775, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "false" + } + }, + { + "id": 776, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "true" + } + }, + { + "id": 777, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "false" + } + }, + { + "id": 778, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "true" + } + }, + { + "id": 779, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "false" + } + }, + { + "id": 780, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "true" + } + }, + { + "id": 781, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "false" + } + }, + { + "id": 782, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "true" + } + }, + { + "id": 783, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "false" + } + }, + { + "id": 784, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "true" + } + }, + { + "id": 785, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "false" + } + }, + { + "id": 786, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "true" + } + }, + { + "id": 787, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "false" + } + }, + { + "id": 788, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "true" + } + }, + { + "id": 789, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "false" + } + }, + { + "id": 790, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "true" + } + }, + { + "id": 791, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "false" + } + }, + { + "id": 792, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "true" + } + }, + { + "id": 793, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "false" + } + }, + { + "id": 794, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "true" + } + }, + { + "id": 795, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "false" + } + }, + { + "id": 796, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "true" + } + }, + { + "id": 797, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "false" + } + }, + { + "id": 798, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "true" + } + }, + { + "id": 799, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "false" + } + }, + { + "id": 800, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "true" + } + }, + { + "id": 801, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "false" + } + }, + { + "id": 802, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "true" + } + }, + { + "id": 803, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "false" + } + }, + { + "id": 804, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "true" + } + }, + { + "id": 805, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "false" + } + }, + { + "id": 806, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "true" + } + }, + { + "id": 807, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "false" + } + }, + { + "id": 808, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "true" + } + }, + { + "id": 809, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "false" + } + }, + { + "id": 810, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "true" + } + }, + { + "id": 811, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "false" + } + }, + { + "id": 812, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "true" + } + }, + { + "id": 813, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "false" + } + }, + { + "id": 814, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "true" + } + }, + { + "id": 815, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "false" + } + }, + { + "id": 816, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "true" + } + }, + { + "id": 817, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "false" + } + }, + { + "id": 818, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "true" + } + }, + { + "id": 819, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "false" + } + }, + { + "id": 820, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "true" + } + }, + { + "id": 821, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "false" + } + }, + { + "id": 822, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "true" + } + }, + { + "id": 823, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "false" + } + }, + { + "id": 824, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "true" + } + }, + { + "id": 825, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "false" + } + }, + { + "id": 826, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "true" + } + }, + { + "id": 827, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "false" + } + }, + { + "id": 828, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "true" + } + }, + { + "id": 829, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "false" + } + }, + { + "id": 830, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "true" + } + }, + { + "id": 831, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "false" + } + }, + { + "id": 832, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "true" + } + }, + { + "id": 833, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "false" + } + }, + { + "id": 834, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "true" + } + }, + { + "id": 835, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "false" + } + }, + { + "id": 836, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "true" + } + }, + { + "id": 837, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "false" + } + }, + { + "id": 838, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 839, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 840, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 841, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 842, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 843, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 844, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 845, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 846, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 847, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 848, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 849, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 850, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 851, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 852, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 853, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 854, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 855, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 856, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 857, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 858, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 859, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 860, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 861, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 862, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 863, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 864, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 865, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 866, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 867, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 868, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 869, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 870, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 871, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 872, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 873, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 874, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 875, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 876, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 877, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 878, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 879, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 880, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 881, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 882, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 883, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 884, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 885, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 886, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 887, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 888, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "true" + } + }, + { + "id": 889, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "false" + } + }, + { + "id": 890, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "true" + } + }, + { + "id": 891, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "false" + } + }, + { + "id": 892, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "true" + } + }, + { + "id": 893, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "false" + } + }, + { + "id": 894, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "true" + } + }, + { + "id": 895, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "false" + } + }, + { + "id": 896, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "true" + } + }, + { + "id": 897, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "false" + } + }, + { + "id": 898, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "true" + } + }, + { + "id": 899, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "false" + } + }, + { + "id": 900, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "true" + } + }, + { + "id": 901, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "false" + } + }, + { + "id": 902, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "true" + } + }, + { + "id": 903, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "false" + } + }, + { + "id": 904, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "true" + } + }, + { + "id": 905, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "false" + } + }, + { + "id": 906, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "true" + } + }, + { + "id": 907, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "false" + } + }, + { + "id": 908, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "true" + } + }, + { + "id": 909, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "false" + } + }, + { + "id": 910, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "true" + } + }, + { + "id": 911, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "false" + } + }, + { + "id": 912, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "true" + } + }, + { + "id": 913, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "false" + } + }, + { + "id": 914, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "true" + } + }, + { + "id": 915, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "false" + } + }, + { + "id": 916, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "true" + } + }, + { + "id": 917, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "false" + } + }, + { + "id": 918, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "true" + } + }, + { + "id": 919, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "false" + } + }, + { + "id": 920, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "true" + } + }, + { + "id": 921, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "false" + } + }, + { + "id": 922, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "true" + } + }, + { + "id": 923, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "false" + } + }, + { + "id": 924, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "true" + } + }, + { + "id": 925, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "false" + } + }, + { + "id": 926, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "true" + } + }, + { + "id": 927, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "false" + } + }, + { + "id": 928, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "true" + } + }, + { + "id": 929, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "false" + } + }, + { + "id": 930, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "true" + } + }, + { + "id": 931, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "false" + } + }, + { + "id": 932, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "true" + } + }, + { + "id": 933, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "false" + } + }, + { + "id": 934, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "true" + } + }, + { + "id": 935, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "false" + } + }, + { + "id": 936, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "true" + } + }, + { + "id": 937, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "false" + } + }, + { + "id": 938, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "true" + } + }, + { + "id": 939, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "false" + } + }, + { + "id": 940, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "true" + } + }, + { + "id": 941, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "false" + } + }, + { + "id": 942, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "true" + } + }, + { + "id": 943, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "false" + } + }, + { + "id": 944, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "true" + } + }, + { + "id": 945, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "false" + } + }, + { + "id": 946, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "true" + } + }, + { + "id": 947, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "false" + } + }, + { + "id": 948, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "true" + } + }, + { + "id": 949, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "false" + } + }, + { + "id": 950, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "true" + } + }, + { + "id": 951, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "false" + } + }, + { + "id": 952, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "true" + } + }, + { + "id": 953, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "false" + } + }, + { + "id": 954, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "true" + } + }, + { + "id": 955, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "false" + } + }, + { + "id": 956, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "true" + } + }, + { + "id": 957, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "false" + } + }, + { + "id": 958, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "true" + } + }, + { + "id": 959, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "false" + } + }, + { + "id": 960, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "true" + } + }, + { + "id": 961, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "false" + } + }, + { + "id": 962, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "true" + } + }, + { + "id": 963, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "false" + } + }, + { + "id": 964, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "true" + } + }, + { + "id": 965, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "false" + } + }, + { + "id": 966, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "true" + } + }, + { + "id": 967, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "false" + } + }, + { + "id": 968, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "true" + } + }, + { + "id": 969, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "false" + } + }, + { + "id": 970, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "true" + } + }, + { + "id": 971, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "false" + } + }, + { + "id": 972, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "true" + } + }, + { + "id": 973, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "false" + } + }, + { + "id": 974, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "true" + } + }, + { + "id": 975, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "false" + } + }, + { + "id": 976, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "true" + } + }, + { + "id": 977, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "false" + } + }, + { + "id": 978, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "true" + } + }, + { + "id": 979, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "false" + } + }, + { + "id": 980, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "true" + } + }, + { + "id": 981, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "false" + } + }, + { + "id": 982, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "true" + } + }, + { + "id": 983, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "false" + } + }, + { + "id": 984, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "true" + } + }, + { + "id": 985, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "false" + } + }, + { + "id": 986, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "true" + } + }, + { + "id": 987, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "false" + } + }, + { + "id": 988, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 989, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 990, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 991, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 992, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 993, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 994, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 995, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 996, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 997, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 998, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 999, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1000, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1001, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1002, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1003, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1004, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1005, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1006, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1007, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1008, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1009, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1010, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1011, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1012, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1013, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1014, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1015, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1016, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1017, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1018, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1019, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1020, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1021, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1022, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1023, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1024, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1025, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1026, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1027, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1028, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1029, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1030, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1031, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1032, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1033, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1034, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1035, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1036, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1037, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1038, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 1039, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 1040, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 1041, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 1042, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 1043, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 1044, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 1045, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 1046, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 1047, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 1048, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 1049, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1050, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1051, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1052, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1053, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1054, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1055, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1056, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1057, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1058, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1059, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1060, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1061, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1062, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1063, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1064, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1065, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1066, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1067, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1068, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1069, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1070, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1071, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1072, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1073, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1074, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1075, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1076, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1077, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1078, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1079, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1080, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1081, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1082, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1083, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1084, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1085, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1086, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1087, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1088, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 1089, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 1090, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 1091, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 1092, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 1093, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 1094, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 1095, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 1096, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 1097, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 1098, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 1099, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 1100, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 1101, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 1102, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 1103, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 1104, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 1105, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 1106, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 1107, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 1108, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 1109, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 1110, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 1111, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 1112, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 1113, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 1114, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 1115, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 1116, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 1117, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 1118, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 1119, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 1120, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 1121, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 1122, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 1123, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 1124, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 1125, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 1126, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 1127, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 1128, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 1129, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 1130, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 1131, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 1132, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 1133, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 1134, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 1135, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 1136, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 1137, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 1138, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1139, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1140, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1141, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1142, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1143, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1144, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1145, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1146, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1147, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1148, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1149, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1150, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1151, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1152, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1153, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1154, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1155, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1156, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1157, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1158, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1159, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1160, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1161, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1162, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1163, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1164, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1165, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1166, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1167, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1168, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1169, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1170, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1171, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1172, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1173, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1174, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1175, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1176, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1177, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1178, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1179, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1180, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1181, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1182, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1183, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1184, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1185, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1186, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1187, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1188, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "true" + } + }, + { + "id": 1189, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "false" + } + }, + { + "id": 1190, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "true" + } + }, + { + "id": 1191, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "false" + } + }, + { + "id": 1192, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "true" + } + }, + { + "id": 1193, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "false" + } + }, + { + "id": 1194, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "true" + } + }, + { + "id": 1195, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "false" + } + }, + { + "id": 1196, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "true" + } + }, + { + "id": 1197, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "false" + } + }, + { + "id": 1198, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "true" + } + }, + { + "id": 1199, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "false" + } + }, + { + "id": 1200, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "true" + } + }, + { + "id": 1201, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "false" + } + }, + { + "id": 1202, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "true" + } + }, + { + "id": 1203, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "false" + } + }, + { + "id": 1204, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "true" + } + }, + { + "id": 1205, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "false" + } + }, + { + "id": 1206, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "true" + } + }, + { + "id": 1207, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "false" + } + }, + { + "id": 1208, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "true" + } + }, + { + "id": 1209, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "false" + } + }, + { + "id": 1210, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "true" + } + }, + { + "id": 1211, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "false" + } + }, + { + "id": 1212, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "true" + } + }, + { + "id": 1213, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "false" + } + }, + { + "id": 1214, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "true" + } + }, + { + "id": 1215, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "false" + } + }, + { + "id": 1216, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "true" + } + }, + { + "id": 1217, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "false" + } + }, + { + "id": 1218, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "true" + } + }, + { + "id": 1219, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "false" + } + }, + { + "id": 1220, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "true" + } + }, + { + "id": 1221, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "false" + } + }, + { + "id": 1222, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "true" + } + }, + { + "id": 1223, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "false" + } + }, + { + "id": 1224, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "true" + } + }, + { + "id": 1225, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "false" + } + }, + { + "id": 1226, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "true" + } + }, + { + "id": 1227, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "false" + } + }, + { + "id": 1228, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "true" + } + }, + { + "id": 1229, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "false" + } + }, + { + "id": 1230, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "true" + } + }, + { + "id": 1231, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "false" + } + }, + { + "id": 1232, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "true" + } + }, + { + "id": 1233, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "false" + } + }, + { + "id": 1234, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "true" + } + }, + { + "id": 1235, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "false" + } + }, + { + "id": 1236, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "true" + } + }, + { + "id": 1237, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "false" + } + }, + { + "id": 1238, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1239, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1240, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1241, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1242, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1243, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1244, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1245, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1246, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1247, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1248, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1249, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1250, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1251, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1252, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1253, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1254, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1255, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1256, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1257, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1258, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1259, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1260, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1261, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1262, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1263, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1264, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1265, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1266, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1267, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1268, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1269, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1270, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1271, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1272, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1273, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1274, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1275, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1276, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1277, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1278, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1279, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1280, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1281, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1282, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1283, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1284, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1285, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1286, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1287, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1288, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "true" + } + }, + { + "id": 1289, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "false" + } + }, + { + "id": 1290, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "true" + } + }, + { + "id": 1291, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "false" + } + }, + { + "id": 1292, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "true" + } + }, + { + "id": 1293, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "false" + } + }, + { + "id": 1294, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "true" + } + }, + { + "id": 1295, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "false" + } + }, + { + "id": 1296, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "true" + } + }, + { + "id": 1297, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "false" + } + }, + { + "id": 1298, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "true" + } + }, + { + "id": 1299, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "false" + } + }, + { + "id": 1300, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "true" + } + }, + { + "id": 1301, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "false" + } + }, + { + "id": 1302, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "true" + } + }, + { + "id": 1303, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "false" + } + }, + { + "id": 1304, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "true" + } + }, + { + "id": 1305, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "false" + } + }, + { + "id": 1306, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "true" + } + }, + { + "id": 1307, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "false" + } + }, + { + "id": 1308, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "true" + } + }, + { + "id": 1309, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "false" + } + }, + { + "id": 1310, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "true" + } + }, + { + "id": 1311, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "false" + } + }, + { + "id": 1312, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "true" + } + }, + { + "id": 1313, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "false" + } + }, + { + "id": 1314, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "true" + } + }, + { + "id": 1315, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "false" + } + }, + { + "id": 1316, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "true" + } + }, + { + "id": 1317, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "false" + } + }, + { + "id": 1318, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "true" + } + }, + { + "id": 1319, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "false" + } + }, + { + "id": 1320, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "true" + } + }, + { + "id": 1321, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "false" + } + }, + { + "id": 1322, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "true" + } + }, + { + "id": 1323, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "false" + } + }, + { + "id": 1324, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "true" + } + }, + { + "id": 1325, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "false" + } + }, + { + "id": 1326, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "true" + } + }, + { + "id": 1327, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "false" + } + }, + { + "id": 1328, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "true" + } + }, + { + "id": 1329, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "false" + } + }, + { + "id": 1330, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "true" + } + }, + { + "id": 1331, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "false" + } + }, + { + "id": 1332, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "true" + } + }, + { + "id": 1333, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "false" + } + }, + { + "id": 1334, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "true" + } + }, + { + "id": 1335, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "false" + } + }, + { + "id": 1336, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "true" + } + }, + { + "id": 1337, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "false" + } + }, + { + "id": 1338, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "true" + } + }, + { + "id": 1339, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "false" + } + }, + { + "id": 1340, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "true" + } + }, + { + "id": 1341, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "false" + } + }, + { + "id": 1342, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "true" + } + }, + { + "id": 1343, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "false" + } + }, + { + "id": 1344, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "true" + } + }, + { + "id": 1345, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "false" + } + }, + { + "id": 1346, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "true" + } + }, + { + "id": 1347, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "false" + } + }, + { + "id": 1348, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "true" + } + }, + { + "id": 1349, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "false" + } + }, + { + "id": 1350, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "true" + } + }, + { + "id": 1351, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "false" + } + }, + { + "id": 1352, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "true" + } + }, + { + "id": 1353, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "false" + } + }, + { + "id": 1354, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "true" + } + }, + { + "id": 1355, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "false" + } + }, + { + "id": 1356, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "true" + } + }, + { + "id": 1357, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "false" + } + }, + { + "id": 1358, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "true" + } + }, + { + "id": 1359, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "false" + } + }, + { + "id": 1360, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "true" + } + }, + { + "id": 1361, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "false" + } + }, + { + "id": 1362, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "true" + } + }, + { + "id": 1363, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "false" + } + }, + { + "id": 1364, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "true" + } + }, + { + "id": 1365, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "false" + } + }, + { + "id": 1366, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "true" + } + }, + { + "id": 1367, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "false" + } + }, + { + "id": 1368, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "true" + } + }, + { + "id": 1369, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "false" + } + }, + { + "id": 1370, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "true" + } + }, + { + "id": 1371, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "false" + } + }, + { + "id": 1372, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "true" + } + }, + { + "id": 1373, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "false" + } + }, + { + "id": 1374, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "true" + } + }, + { + "id": 1375, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "false" + } + }, + { + "id": 1376, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "true" + } + }, + { + "id": 1377, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "false" + } + }, + { + "id": 1378, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "true" + } + }, + { + "id": 1379, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "false" + } + }, + { + "id": 1380, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "true" + } + }, + { + "id": 1381, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "false" + } + }, + { + "id": 1382, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "true" + } + }, + { + "id": 1383, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "false" + } + }, + { + "id": 1384, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "true" + } + }, + { + "id": 1385, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "false" + } + }, + { + "id": 1386, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "true" + } + }, + { + "id": 1387, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "false" + } + }, + { + "id": 1388, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1389, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1390, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1391, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1392, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1393, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1394, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1395, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1396, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1397, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1398, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1399, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1400, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1401, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1402, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1403, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1404, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1405, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1406, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1407, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1408, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1409, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1410, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1411, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1412, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1413, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1414, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1415, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1416, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1417, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1418, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1419, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1420, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1421, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1422, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1423, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1424, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1425, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1426, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1427, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1428, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1429, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1430, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1431, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1432, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1433, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1434, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1435, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1436, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1437, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1438, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "true" + } + }, + { + "id": 1439, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "false" + } + }, + { + "id": 1440, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "true" + } + }, + { + "id": 1441, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "false" + } + }, + { + "id": 1442, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "true" + } + }, + { + "id": 1443, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "false" + } + }, + { + "id": 1444, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "true" + } + }, + { + "id": 1445, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "false" + } + }, + { + "id": 1446, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "true" + } + }, + { + "id": 1447, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "false" + } + }, + { + "id": 1448, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "true" + } + }, + { + "id": 1449, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "false" + } + }, + { + "id": 1450, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "true" + } + }, + { + "id": 1451, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "false" + } + }, + { + "id": 1452, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "true" + } + }, + { + "id": 1453, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "false" + } + }, + { + "id": 1454, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "true" + } + }, + { + "id": 1455, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "false" + } + }, + { + "id": 1456, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "true" + } + }, + { + "id": 1457, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "false" + } + }, + { + "id": 1458, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "true" + } + }, + { + "id": 1459, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "false" + } + }, + { + "id": 1460, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "true" + } + }, + { + "id": 1461, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "false" + } + }, + { + "id": 1462, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "true" + } + }, + { + "id": 1463, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "false" + } + }, + { + "id": 1464, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "true" + } + }, + { + "id": 1465, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "false" + } + }, + { + "id": 1466, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "true" + } + }, + { + "id": 1467, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "false" + } + }, + { + "id": 1468, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "true" + } + }, + { + "id": 1469, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "false" + } + }, + { + "id": 1470, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "true" + } + }, + { + "id": 1471, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "false" + } + }, + { + "id": 1472, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "true" + } + }, + { + "id": 1473, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "false" + } + }, + { + "id": 1474, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "true" + } + }, + { + "id": 1475, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "false" + } + }, + { + "id": 1476, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "true" + } + }, + { + "id": 1477, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "false" + } + }, + { + "id": 1478, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "true" + } + }, + { + "id": 1479, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "false" + } + }, + { + "id": 1480, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "true" + } + }, + { + "id": 1481, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "false" + } + }, + { + "id": 1482, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "true" + } + }, + { + "id": 1483, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "false" + } + }, + { + "id": 1484, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "true" + } + }, + { + "id": 1485, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "false" + } + }, + { + "id": 1486, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "true" + } + }, + { + "id": 1487, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "false" + } + }, + { + "id": 1488, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "true" + } + }, + { + "id": 1489, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "false" + } + }, + { + "id": 1490, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "true" + } + }, + { + "id": 1491, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "false" + } + }, + { + "id": 1492, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "true" + } + }, + { + "id": 1493, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "false" + } + }, + { + "id": 1494, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "true" + } + }, + { + "id": 1495, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "false" + } + }, + { + "id": 1496, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "true" + } + }, + { + "id": 1497, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "false" + } + }, + { + "id": 1498, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "true" + } + }, + { + "id": 1499, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "false" + } + }, + { + "id": 1500, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "true" + } + }, + { + "id": 1501, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "false" + } + }, + { + "id": 1502, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "true" + } + }, + { + "id": 1503, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "false" + } + }, + { + "id": 1504, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "true" + } + }, + { + "id": 1505, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "false" + } + }, + { + "id": 1506, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "true" + } + }, + { + "id": 1507, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "false" + } + }, + { + "id": 1508, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "true" + } + }, + { + "id": 1509, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "false" + } + }, + { + "id": 1510, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "true" + } + }, + { + "id": 1511, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "false" + } + }, + { + "id": 1512, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "true" + } + }, + { + "id": 1513, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "false" + } + }, + { + "id": 1514, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "true" + } + }, + { + "id": 1515, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "false" + } + }, + { + "id": 1516, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "true" + } + }, + { + "id": 1517, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "false" + } + }, + { + "id": 1518, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "true" + } + }, + { + "id": 1519, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "false" + } + }, + { + "id": 1520, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "true" + } + }, + { + "id": 1521, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "false" + } + }, + { + "id": 1522, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "true" + } + }, + { + "id": 1523, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "false" + } + }, + { + "id": 1524, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "true" + } + }, + { + "id": 1525, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "false" + } + }, + { + "id": 1526, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "true" + } + }, + { + "id": 1527, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "false" + } + }, + { + "id": 1528, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "true" + } + }, + { + "id": 1529, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "false" + } + }, + { + "id": 1530, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "true" + } + }, + { + "id": 1531, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "false" + } + }, + { + "id": 1532, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "true" + } + }, + { + "id": 1533, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "false" + } + }, + { + "id": 1534, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "true" + } + }, + { + "id": 1535, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "false" + } + }, + { + "id": 1536, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "true" + } + }, + { + "id": 1537, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "false" + } + }, + { + "id": 1538, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1539, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1540, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1541, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1542, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1543, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1544, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1545, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1546, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1547, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1548, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1549, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1550, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1551, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1552, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1553, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1554, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1555, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1556, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1557, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1558, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1559, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1560, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1561, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1562, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1563, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1564, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1565, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1566, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1567, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1568, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1569, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1570, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1571, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1572, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1573, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1574, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1575, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1576, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1577, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1578, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1579, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1580, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1581, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1582, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1583, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1584, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1585, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1586, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1587, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1588, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "true" + } + }, + { + "id": 1589, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "false" + } + }, + { + "id": 1590, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "true" + } + }, + { + "id": 1591, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "false" + } + }, + { + "id": 1592, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "true" + } + }, + { + "id": 1593, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "false" + } + }, + { + "id": 1594, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "true" + } + }, + { + "id": 1595, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "false" + } + }, + { + "id": 1596, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "true" + } + }, + { + "id": 1597, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "false" + } + }, + { + "id": 1598, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "true" + } + }, + { + "id": 1599, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "false" + } + }, + { + "id": 1600, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "true" + } + }, + { + "id": 1601, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "false" + } + }, + { + "id": 1602, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "true" + } + }, + { + "id": 1603, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "false" + } + }, + { + "id": 1604, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "true" + } + }, + { + "id": 1605, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "false" + } + }, + { + "id": 1606, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "true" + } + }, + { + "id": 1607, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "false" + } + }, + { + "id": 1608, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "true" + } + }, + { + "id": 1609, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "false" + } + }, + { + "id": 1610, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "true" + } + }, + { + "id": 1611, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "false" + } + }, + { + "id": 1612, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "true" + } + }, + { + "id": 1613, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "false" + } + }, + { + "id": 1614, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "true" + } + }, + { + "id": 1615, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "false" + } + }, + { + "id": 1616, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "true" + } + }, + { + "id": 1617, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "false" + } + }, + { + "id": 1618, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "true" + } + }, + { + "id": 1619, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "false" + } + }, + { + "id": 1620, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "true" + } + }, + { + "id": 1621, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "false" + } + }, + { + "id": 1622, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "true" + } + }, + { + "id": 1623, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "false" + } + }, + { + "id": 1624, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "true" + } + }, + { + "id": 1625, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "false" + } + }, + { + "id": 1626, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "true" + } + }, + { + "id": 1627, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "false" + } + }, + { + "id": 1628, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "true" + } + }, + { + "id": 1629, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "false" + } + }, + { + "id": 1630, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "true" + } + }, + { + "id": 1631, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "false" + } + }, + { + "id": 1632, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "true" + } + }, + { + "id": 1633, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "false" + } + }, + { + "id": 1634, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "true" + } + }, + { + "id": 1635, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "false" + } + }, + { + "id": 1636, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "true" + } + }, + { + "id": 1637, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "false" + } + }, + { + "id": 1638, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "true" + } + }, + { + "id": 1639, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "false" + } + }, + { + "id": 1640, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "true" + } + }, + { + "id": 1641, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "false" + } + }, + { + "id": 1642, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "true" + } + }, + { + "id": 1643, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "false" + } + }, + { + "id": 1644, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "true" + } + }, + { + "id": 1645, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "false" + } + }, + { + "id": 1646, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "true" + } + }, + { + "id": 1647, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "false" + } + }, + { + "id": 1648, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "true" + } + }, + { + "id": 1649, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "false" + } + }, + { + "id": 1650, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "true" + } + }, + { + "id": 1651, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "false" + } + }, + { + "id": 1652, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "true" + } + }, + { + "id": 1653, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "false" + } + }, + { + "id": 1654, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "true" + } + }, + { + "id": 1655, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "false" + } + }, + { + "id": 1656, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "true" + } + }, + { + "id": 1657, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "false" + } + }, + { + "id": 1658, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "true" + } + }, + { + "id": 1659, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "false" + } + }, + { + "id": 1660, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "true" + } + }, + { + "id": 1661, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "false" + } + }, + { + "id": 1662, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "true" + } + }, + { + "id": 1663, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "false" + } + }, + { + "id": 1664, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "true" + } + }, + { + "id": 1665, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "false" + } + }, + { + "id": 1666, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "true" + } + }, + { + "id": 1667, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "false" + } + }, + { + "id": 1668, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "true" + } + }, + { + "id": 1669, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "false" + } + }, + { + "id": 1670, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "true" + } + }, + { + "id": 1671, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "false" + } + }, + { + "id": 1672, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "true" + } + }, + { + "id": 1673, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "false" + } + }, + { + "id": 1674, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "true" + } + }, + { + "id": 1675, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "false" + } + }, + { + "id": 1676, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "true" + } + }, + { + "id": 1677, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "false" + } + }, + { + "id": 1678, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "true" + } + }, + { + "id": 1679, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "false" + } + }, + { + "id": 1680, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "true" + } + }, + { + "id": 1681, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "false" + } + }, + { + "id": 1682, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "true" + } + }, + { + "id": 1683, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "false" + } + }, + { + "id": 1684, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "true" + } + }, + { + "id": 1685, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "false" + } + }, + { + "id": 1686, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "true" + } + }, + { + "id": 1687, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "false" + } + } + ] + }, + "minecraft:oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8611, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8612, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8613, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8614, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8615, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8616, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8617, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8618, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8619, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8620, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8621, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8622, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8623, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8624, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8625, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8626, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8627, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8628, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8629, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8630, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8631, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8632, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8633, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8634, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4590, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4591, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4592, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4593, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4594, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4595, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4596, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4597, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4598, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4599, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4600, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 4601, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4602, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4603, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4604, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4605, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4606, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4607, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4608, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4609, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4610, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4611, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4612, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4613, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4614, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4615, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4616, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4617, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4618, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4619, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4620, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4621, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4622, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4623, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4624, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4625, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4626, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4627, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4628, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4629, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4630, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4631, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4632, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4633, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4634, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4635, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4636, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4637, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4638, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4639, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4640, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4641, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4642, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4643, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4644, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4645, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 4646, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 4647, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 4648, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 4649, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 4650, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 4651, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 4652, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 4653, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5817, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5818, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5819, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5820, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5821, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5822, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5823, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5824, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5825, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5826, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5827, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5828, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5829, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5830, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5831, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5832, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5833, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5834, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5835, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5836, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5837, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5838, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5839, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5840, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5841, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5842, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5843, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 5844, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 5845, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 5846, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 5847, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 5848, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6997, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 6998, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 6999, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7000, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7001, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7002, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7003, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 7004, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 7005, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 7006, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 7007, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7008, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7009, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7010, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7011, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7012, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 7013, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 7014, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 7015, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7016, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7017, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7018, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7019, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7020, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 7021, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 7022, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 7023, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 7024, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 7025, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 7026, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 7027, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 7028, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4834, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4835, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4836, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4837, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4838, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4839, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4840, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4841, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4842, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4843, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4844, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4845, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4846, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4847, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4848, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4849, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4850, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4851, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4852, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4853, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4854, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4855, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4856, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4857, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4858, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4859, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4860, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4861, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4862, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4863, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4864, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4865, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4866, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4867, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4868, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4869, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4870, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4871, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4872, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4873, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4874, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4875, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4876, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4877, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4878, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4879, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4880, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4881, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4882, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4883, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4884, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4885, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4886, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4887, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4888, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4889, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4890, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4891, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4892, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4893, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4894, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4895, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4896, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4897, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 237, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 238, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 239, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 240, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 241, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 242, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 243, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 244, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 245, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 246, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 247, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 248, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 249, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 250, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 251, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 252, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 253, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 254, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 255, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 256, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 257, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 258, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 259, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 260, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 261, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 262, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 263, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 264, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 130, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 131, + "properties": { + "axis": "y" + } + }, + { + "id": 132, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15 + } + ] + }, + "minecraft:oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5716, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5717, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 25, + "properties": { + "stage": "0" + } + }, + { + "id": 26, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4302, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4303, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4304, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4305, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4306, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4307, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4308, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4309, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4310, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4311, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4312, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4313, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4314, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4315, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4316, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4317, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4318, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4319, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4320, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4321, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4322, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4323, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4324, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4325, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4326, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4327, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4328, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4329, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4330, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4331, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4332, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4333, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11162, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11163, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11164, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11165, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11166, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11167, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2874, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2875, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2876, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2877, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2878, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2879, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2880, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2881, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2882, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2883, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2884, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2885, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2886, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2887, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2888, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2889, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2890, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2891, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2892, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2893, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2894, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2895, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2896, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2897, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2898, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2899, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2900, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2901, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2902, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2903, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2904, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2905, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2906, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2907, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2908, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2910, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2914, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2915, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2916, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2917, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2918, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2919, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2920, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2921, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2922, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2923, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2924, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2925, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2926, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2927, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2928, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2929, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2930, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2931, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2932, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2933, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2934, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2935, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2936, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2937, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2938, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2939, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2940, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2941, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2942, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2943, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 2944, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 2945, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 2946, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 2947, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 2948, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 2949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 2950, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 2951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 2952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 2953, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5961, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5962, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5963, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5964, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5965, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5966, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5967, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5968, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5969, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5970, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5971, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5972, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5973, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5974, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5975, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5976, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5977, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5978, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5979, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5980, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5981, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5982, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5983, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5984, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5985, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5986, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5987, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5988, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5989, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5990, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5991, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5992, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5993, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5994, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5995, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 5996, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 5997, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 5998, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 5999, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6000, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6001, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6002, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6003, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6004, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6005, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6006, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6007, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6008, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6009, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6010, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6011, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6012, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6013, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6014, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6015, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6016, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6017, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6018, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6019, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6020, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6021, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6022, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6023, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6024, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5538, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5539, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5540, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5541, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5542, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5543, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5544, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5545, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4762, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4763, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4764, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4765, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4766, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4767, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4768, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4769, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 189, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 190, + "properties": { + "axis": "y" + } + }, + { + "id": 191, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:observer": { + "definition": { + "type": "minecraft:observer", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12550, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "id": 12551, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 12552, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 12553, + "properties": { + "facing": "east", + "powered": "false" + } + }, + { + "id": 12554, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "default": true, + "id": 12555, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 12556, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 12557, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 12558, + "properties": { + "facing": "up", + "powered": "true" + } + }, + { + "id": 12559, + "properties": { + "facing": "up", + "powered": "false" + } + }, + { + "id": 12560, + "properties": { + "facing": "down", + "powered": "true" + } + }, + { + "id": 12561, + "properties": { + "facing": "down", + "powered": "false" + } + } + ] + }, + "minecraft:obsidian": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2354 + } + ] + }, + "minecraft:ochre_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26563, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26564, + "properties": { + "axis": "y" + } + }, + { + "id": 26565, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:orange_banner": { + "definition": { + "type": "minecraft:banner", + "color": "orange", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10775, + "properties": { + "rotation": "0" + } + }, + { + "id": 10776, + "properties": { + "rotation": "1" + } + }, + { + "id": 10777, + "properties": { + "rotation": "2" + } + }, + { + "id": 10778, + "properties": { + "rotation": "3" + } + }, + { + "id": 10779, + "properties": { + "rotation": "4" + } + }, + { + "id": 10780, + "properties": { + "rotation": "5" + } + }, + { + "id": 10781, + "properties": { + "rotation": "6" + } + }, + { + "id": 10782, + "properties": { + "rotation": "7" + } + }, + { + "id": 10783, + "properties": { + "rotation": "8" + } + }, + { + "id": 10784, + "properties": { + "rotation": "9" + } + }, + { + "id": 10785, + "properties": { + "rotation": "10" + } + }, + { + "id": 10786, + "properties": { + "rotation": "11" + } + }, + { + "id": 10787, + "properties": { + "rotation": "12" + } + }, + { + "id": 10788, + "properties": { + "rotation": "13" + } + }, + { + "id": 10789, + "properties": { + "rotation": "14" + } + }, + { + "id": 10790, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:orange_bed": { + "definition": { + "type": "minecraft:bed", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1704, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1705, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1706, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1707, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1708, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1709, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1710, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1711, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1712, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1713, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1714, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1715, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1716, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1717, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1718, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1719, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:orange_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20757, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20758, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20759, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20760, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20761, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20762, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20763, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20764, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20765, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20766, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20767, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20768, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20769, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20770, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20771, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20772, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:orange_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:orange_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21001, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21002, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:orange_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "orange", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10729 + } + ] + }, + "minecraft:orange_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12729 + } + ] + }, + "minecraft:orange_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:orange_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12745 + } + ] + }, + "minecraft:orange_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12668, + "properties": { + "facing": "north" + } + }, + { + "id": 12669, + "properties": { + "facing": "south" + } + }, + { + "id": 12670, + "properties": { + "facing": "west" + } + }, + { + "id": 12671, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12574, + "properties": { + "facing": "north" + } + }, + { + "id": 12575, + "properties": { + "facing": "east" + } + }, + { + "id": 12576, + "properties": { + "facing": "south" + } + }, + { + "id": 12577, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12578, + "properties": { + "facing": "up" + } + }, + { + "id": 12579, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:orange_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "orange", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5946 + } + ] + }, + "minecraft:orange_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "orange", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9404, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9405, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9406, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9407, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9408, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9409, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9410, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9411, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9412, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9413, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9414, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9415, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9416, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9417, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9418, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9419, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9420, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9421, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9422, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9423, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9424, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9425, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9426, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9427, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9428, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9429, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9430, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9431, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9432, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9433, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9434, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9435, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:orange_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9357 + } + ] + }, + "minecraft:orange_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2082 + } + ] + }, + "minecraft:orange_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11019, + "properties": { + "facing": "north" + } + }, + { + "id": 11020, + "properties": { + "facing": "south" + } + }, + { + "id": 11021, + "properties": { + "facing": "west" + } + }, + { + "id": 11022, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2048 + } + ] + }, + "minecraft:oxeye_daisy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "id": "minecraft:regeneration" + } + ] + }, + "states": [ + { + "default": true, + "id": 2085 + } + ] + }, + "minecraft:oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 22948 + } + ] + }, + "minecraft:oxidized_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 22941 + } + ] + }, + "minecraft:oxidized_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24704, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24705, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24706, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24707, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23780, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23781, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23782, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23783, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23784, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23785, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23786, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23787, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23788, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23789, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23790, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23791, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23792, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23793, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23794, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23795, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23796, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23797, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23798, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23799, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23800, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23801, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23802, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23803, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23804, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23805, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23806, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23807, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23808, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23809, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23810, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23811, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23812, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23813, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23814, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23815, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23816, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23817, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23818, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23819, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23820, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23821, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23822, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23823, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23824, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23825, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23826, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23827, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23828, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23829, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23830, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23831, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23832, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23833, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23834, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23835, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23836, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23837, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23838, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23839, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23840, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23841, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23842, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23843, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24682, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24683, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24292, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24293, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24294, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24295, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24296, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24297, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24298, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24299, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24300, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24301, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24302, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24303, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24304, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24305, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24306, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24307, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24308, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24309, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24310, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24311, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24312, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24313, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24314, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24315, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24316, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24317, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24318, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24319, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24320, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24321, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24322, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24323, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24324, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24325, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24326, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24327, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24328, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24329, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24330, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24331, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24332, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24333, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24334, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24335, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24336, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24337, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24338, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24339, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24340, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24341, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24342, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24343, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24344, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24345, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24346, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24347, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24348, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24349, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24350, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24351, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24352, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24353, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24354, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24355, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 22944 + } + ] + }, + "minecraft:oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23276, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23277, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23278, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23279, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23280, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23281, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:oxidized_cut_copper" + }, + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22956, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22957, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22958, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22959, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22960, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22961, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22962, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22963, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22964, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22965, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22966, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22967, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22968, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22969, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22970, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22971, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22972, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22973, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22974, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22975, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22976, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22977, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22978, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22979, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22980, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22981, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22982, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22983, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22984, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22985, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22986, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22987, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22988, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22989, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22990, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22991, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22992, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22993, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22994, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22995, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22996, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22997, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22998, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22999, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23000, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23001, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23002, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23003, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23004, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23005, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23006, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23007, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23008, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23009, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23010, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23011, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23012, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23013, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23014, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23015, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23016, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23017, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23018, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23019, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23020, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23021, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23022, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23023, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23024, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23025, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23026, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23027, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23028, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23029, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23030, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23031, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23032, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23033, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:packed_ice": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10746 + } + ] + }, + "minecraft:packed_mud": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6541 + } + ] + }, + "minecraft:pearlescent_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26569, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26570, + "properties": { + "axis": "y" + } + }, + { + "id": 26571, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:peony": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10753, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10754, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:petrified_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11246, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11247, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11248, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11249, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11250, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11251, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:piglin_head": { + "definition": { + "type": "minecraft:skull", + "kind": "piglin", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 9067, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 9068, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 9069, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 9070, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 9071, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 9072, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 9073, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 9074, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 9075, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 9076, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 9077, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 9078, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 9079, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 9080, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 9081, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "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" + } + } + ] + }, + "minecraft:piglin_wall_head": { + "definition": { + "type": "minecraft:piglinwallskull", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9099, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9100, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 9101, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 9102, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 9103, + "properties": { + "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" + } + } + ] + }, + "minecraft:pink_banner": { + "definition": { + "type": "minecraft:banner", + "color": "pink", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10855, + "properties": { + "rotation": "0" + } + }, + { + "id": 10856, + "properties": { + "rotation": "1" + } + }, + { + "id": 10857, + "properties": { + "rotation": "2" + } + }, + { + "id": 10858, + "properties": { + "rotation": "3" + } + }, + { + "id": 10859, + "properties": { + "rotation": "4" + } + }, + { + "id": 10860, + "properties": { + "rotation": "5" + } + }, + { + "id": 10861, + "properties": { + "rotation": "6" + } + }, + { + "id": 10862, + "properties": { + "rotation": "7" + } + }, + { + "id": 10863, + "properties": { + "rotation": "8" + } + }, + { + "id": 10864, + "properties": { + "rotation": "9" + } + }, + { + "id": 10865, + "properties": { + "rotation": "10" + } + }, + { + "id": 10866, + "properties": { + "rotation": "11" + } + }, + { + "id": 10867, + "properties": { + "rotation": "12" + } + }, + { + "id": 10868, + "properties": { + "rotation": "13" + } + }, + { + "id": 10869, + "properties": { + "rotation": "14" + } + }, + { + "id": 10870, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:pink_bed": { + "definition": { + "type": "minecraft:bed", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1784, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1785, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1786, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1787, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1788, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1789, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1790, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1791, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1792, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1793, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1794, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1795, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1796, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1797, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1798, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1799, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:pink_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20837, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20838, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20839, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20840, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20841, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20842, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20843, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20844, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20845, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20846, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20847, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20848, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20849, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20850, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20851, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20852, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:pink_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21011, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21012, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:pink_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "pink", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10734 + } + ] + }, + "minecraft:pink_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12734 + } + ] + }, + "minecraft:pink_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:pink_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12750 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12688, + "properties": { + "facing": "north" + } + }, + { + "id": 12689, + "properties": { + "facing": "south" + } + }, + { + "id": 12690, + "properties": { + "facing": "west" + } + }, + { + "id": 12691, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_petals": { + "definition": { + "type": "minecraft:pink_petals", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 24827, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 24828, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 24829, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 24830, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 24831, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 24832, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 24833, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 24834, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 24835, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 24836, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 24837, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 24838, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 24839, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 24840, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 24841, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 24842, + "properties": { + "facing": "east", + "flower_amount": "4" + } + } + ] + }, + "minecraft:pink_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12604, + "properties": { + "facing": "north" + } + }, + { + "id": 12605, + "properties": { + "facing": "east" + } + }, + { + "id": 12606, + "properties": { + "facing": "south" + } + }, + { + "id": 12607, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12608, + "properties": { + "facing": "up" + } + }, + { + "id": 12609, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:pink_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "pink", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5951 + } + ] + }, + "minecraft:pink_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "pink", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9564, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9565, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9566, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9567, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9568, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9569, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9570, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9571, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9572, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9573, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9574, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9575, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9576, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9577, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9578, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9579, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9580, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9581, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9582, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9583, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9584, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9585, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9586, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9587, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9588, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9589, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9590, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9591, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9592, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9593, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9594, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9595, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:pink_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9362 + } + ] + }, + "minecraft:pink_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2084 + } + ] + }, + "minecraft:pink_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11039, + "properties": { + "facing": "north" + } + }, + { + "id": 11040, + "properties": { + "facing": "south" + } + }, + { + "id": 11041, + "properties": { + "facing": "west" + } + }, + { + "id": 11042, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2053 + } + ] + }, + "minecraft:piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": false + }, + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 2011, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 2012, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 2013, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 2014, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 2015, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 2016, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 2017, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 2018, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2019, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2020, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2021, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2022, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:piston_head": { + "definition": { + "type": "minecraft:piston_head", + "properties": {} + }, + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2023, + "properties": { + "type": "normal", + "facing": "north", + "short": "true" + } + }, + { + "id": 2024, + "properties": { + "type": "sticky", + "facing": "north", + "short": "true" + } + }, + { + "default": true, + "id": 2025, + "properties": { + "type": "normal", + "facing": "north", + "short": "false" + } + }, + { + "id": 2026, + "properties": { + "type": "sticky", + "facing": "north", + "short": "false" + } + }, + { + "id": 2027, + "properties": { + "type": "normal", + "facing": "east", + "short": "true" + } + }, + { + "id": 2028, + "properties": { + "type": "sticky", + "facing": "east", + "short": "true" + } + }, + { + "id": 2029, + "properties": { + "type": "normal", + "facing": "east", + "short": "false" + } + }, + { + "id": 2030, + "properties": { + "type": "sticky", + "facing": "east", + "short": "false" + } + }, + { + "id": 2031, + "properties": { + "type": "normal", + "facing": "south", + "short": "true" + } + }, + { + "id": 2032, + "properties": { + "type": "sticky", + "facing": "south", + "short": "true" + } + }, + { + "id": 2033, + "properties": { + "type": "normal", + "facing": "south", + "short": "false" + } + }, + { + "id": 2034, + "properties": { + "type": "sticky", + "facing": "south", + "short": "false" + } + }, + { + "id": 2035, + "properties": { + "type": "normal", + "facing": "west", + "short": "true" + } + }, + { + "id": 2036, + "properties": { + "type": "sticky", + "facing": "west", + "short": "true" + } + }, + { + "id": 2037, + "properties": { + "type": "normal", + "facing": "west", + "short": "false" + } + }, + { + "id": 2038, + "properties": { + "type": "sticky", + "facing": "west", + "short": "false" + } + }, + { + "id": 2039, + "properties": { + "type": "normal", + "facing": "up", + "short": "true" + } + }, + { + "id": 2040, + "properties": { + "type": "sticky", + "facing": "up", + "short": "true" + } + }, + { + "id": 2041, + "properties": { + "type": "normal", + "facing": "up", + "short": "false" + } + }, + { + "id": 2042, + "properties": { + "type": "sticky", + "facing": "up", + "short": "false" + } + }, + { + "id": 2043, + "properties": { + "type": "normal", + "facing": "down", + "short": "true" + } + }, + { + "id": 2044, + "properties": { + "type": "sticky", + "facing": "down", + "short": "true" + } + }, + { + "id": 2045, + "properties": { + "type": "normal", + "facing": "down", + "short": "false" + } + }, + { + "id": 2046, + "properties": { + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:pitcher_crop": { + "definition": { + "type": "minecraft:pitcher_crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12497, + "properties": { + "age": "0", + "half": "upper" + } + }, + { + "default": true, + "id": 12498, + "properties": { + "age": "0", + "half": "lower" + } + }, + { + "id": 12499, + "properties": { + "age": "1", + "half": "upper" + } + }, + { + "id": 12500, + "properties": { + "age": "1", + "half": "lower" + } + }, + { + "id": 12501, + "properties": { + "age": "2", + "half": "upper" + } + }, + { + "id": 12502, + "properties": { + "age": "2", + "half": "lower" + } + }, + { + "id": 12503, + "properties": { + "age": "3", + "half": "upper" + } + }, + { + "id": 12504, + "properties": { + "age": "3", + "half": "lower" + } + }, + { + "id": 12505, + "properties": { + "age": "4", + "half": "upper" + } + }, + { + "id": 12506, + "properties": { + "age": "4", + "half": "lower" + } + } + ] + }, + "minecraft:pitcher_plant": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12507, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12508, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:player_head": { + "definition": { + "type": "minecraft:player_head", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8947, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8948, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8949, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8950, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8951, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8952, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8953, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8954, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8955, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8956, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8957, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8958, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8959, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8960, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8961, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "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" + } + } + ] + }, + "minecraft:player_wall_head": { + "definition": { + "type": "minecraft:player_wall_head", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8979, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8980, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8981, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8982, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8983, + "properties": { + "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" + } + } + ] + }, + "minecraft:podzol": { + "definition": { + "type": "minecraft:snowy_dirt", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 13, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:pointed_dripstone": { + "definition": { + "type": "minecraft:pointed_dripstone", + "properties": {} + }, + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24748, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24749, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24750, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24751, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24752, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24753, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24754, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24755, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24756, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24757, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24758, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24759, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24760, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24761, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24762, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24763, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 24764, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 24765, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 24766, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 24767, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7 + } + ] + }, + "minecraft:polished_andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14148, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14149, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14150, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14151, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14152, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14153, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_andesite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13922, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13923, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13924, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13925, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13926, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13927, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13928, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13929, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13930, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13931, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13932, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13933, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13934, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13935, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13936, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13937, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13938, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13939, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13940, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13941, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13942, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13943, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13944, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13945, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13946, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13947, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13948, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13949, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13950, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13951, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13952, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13953, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13954, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13955, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13956, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13957, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13958, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13959, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13960, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13961, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13962, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13963, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13964, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13965, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13966, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13967, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13968, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13969, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13970, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13971, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13972, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13973, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13974, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13975, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13976, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13977, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13978, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13979, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13980, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13981, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13982, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13983, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13984, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13985, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13986, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13987, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13988, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13989, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13990, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13991, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13992, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13993, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13994, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13995, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13996, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13998, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13999, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14000, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14001, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 5855, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 5856, + "properties": { + "axis": "y" + } + }, + { + "id": 5857, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19871 + } + ] + }, + "minecraft:polished_blackstone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19875, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 19876, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 19877, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19878, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 19879, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 19880, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19881, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19882, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19883, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19884, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19885, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19886, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19887, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19888, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19889, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19890, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19891, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19892, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19893, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19894, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19895, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19896, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19897, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19901, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19902, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19903, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19904, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19905, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19906, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19907, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19908, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19909, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19910, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19911, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19912, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19913, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19914, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19915, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19916, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19917, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19921, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19922, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19923, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19924, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19925, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19926, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19927, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19928, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19929, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19930, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19931, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19932, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19933, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19934, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19935, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19936, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19937, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19941, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19942, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19943, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19944, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19945, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19946, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19947, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19948, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19949, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19950, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19951, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19952, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19953, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19954, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19955, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19956, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19957, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19958, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19959, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19960, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19961, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19962, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19963, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19964, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19965, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19966, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19967, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19968, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19969, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19970, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19971, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19972, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19973, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19974, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19975, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19976, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19977, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19978, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19979, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19980, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19981, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19982, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19983, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19984, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19985, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19986, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19987, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19988, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19989, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19990, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19991, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19992, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19993, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19994, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19995, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19996, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19997, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19998, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19999, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20000, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20001, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20002, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20003, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20004, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20005, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20006, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20007, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20008, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20009, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20010, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20011, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20012, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20013, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20014, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20015, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20016, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20017, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20018, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20019, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20020, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20021, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20022, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20023, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20024, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20025, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20026, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20027, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20028, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20029, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20030, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20031, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20032, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20033, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20034, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20177, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20178, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20179, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20180, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20181, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20182, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20183, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20184, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20185, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20186, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20187, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20188, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20189, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20190, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20191, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20192, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20193, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20194, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20195, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20196, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20197, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20198, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20199, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20200, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20201, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20202, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20203, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20204, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20205, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20206, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20207, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20208, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20209, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20210, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20211, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20212, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20213, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20214, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20215, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20216, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20217, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20218, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20219, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20220, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20221, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20222, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20223, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20224, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20225, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20226, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20227, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20228, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20229, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20230, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20231, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20232, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20233, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20234, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20235, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20236, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20237, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20238, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20239, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20240, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20241, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20242, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20243, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20244, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20245, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20246, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20247, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20248, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20249, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20250, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20251, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20252, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20253, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20254, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20255, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20256, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20257, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20258, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20259, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20260, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20261, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20262, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20263, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20264, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20265, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20266, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20267, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20268, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20269, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20270, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20271, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20272, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20273, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20274, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20275, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20276, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20277, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20278, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20279, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20280, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20281, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20282, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20283, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20284, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19872 + } + ] + }, + "minecraft:polished_blackstone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20374, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20375, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20376, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20377, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20378, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20379, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20380, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20381, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20382, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 20383, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20384, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20385, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20386, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20387, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20388, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20389, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20390, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20391, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20392, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20393, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20394, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20395, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20396, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20397, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "polished_blackstone", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20372, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 20373, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20366, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 20367, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 20368, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20369, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 20370, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 20371, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20286, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20287, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20288, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20289, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20290, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20291, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20292, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20293, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20294, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20295, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20302, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20303, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20304, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20305, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20306, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20307, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20308, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20309, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20310, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20311, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20312, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20313, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20314, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20315, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20322, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20323, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20324, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20325, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20326, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20327, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20328, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20329, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20330, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20331, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20332, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20333, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20334, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20335, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20342, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20343, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20344, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20345, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20346, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20347, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20348, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20349, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20350, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20351, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20352, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20353, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20354, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20355, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 20356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 20357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 20358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 20359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 20360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 20361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 20362, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 20363, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 20364, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 20365, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20398, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20399, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20400, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20401, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20402, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20403, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20404, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20410, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20411, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20412, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20413, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20414, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20415, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20416, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20422, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20423, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20424, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20425, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20426, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20427, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20428, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20434, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20435, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20436, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20437, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20438, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20439, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20440, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20446, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20447, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20449, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20450, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20451, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20452, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20458, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20459, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20460, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20470, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20471, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20614, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20615, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20616, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20617, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20618, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20619, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20620, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20626, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20627, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20628, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20629, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20630, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20631, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20632, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20638, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20639, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20640, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20641, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20642, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20643, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20644, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20650, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20651, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20652, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20653, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20654, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20655, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20656, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20662, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20663, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20664, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20665, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20666, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20667, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20668, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20674, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20675, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20676, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20677, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20678, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20679, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20680, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20686, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20687, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20688, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20689, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20690, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20691, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20692, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20698, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20699, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20700, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20701, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20702, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20703, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20704, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20710, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20711, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20712, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20713, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20714, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20715, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20716, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25318 + } + ] + }, + "minecraft:polished_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25399, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25400, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25401, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25402, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25403, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25404, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_deepslate" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25319, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25320, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25321, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25322, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25323, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25324, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25325, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25326, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25327, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25328, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25329, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25330, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25331, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25332, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25333, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25334, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25335, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25336, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25337, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25338, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25339, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25340, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25341, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25342, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25343, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25344, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25345, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25346, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25347, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25348, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25349, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25350, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25351, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25352, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25353, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25354, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25355, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25356, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25357, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25358, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25359, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25360, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25361, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25362, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25363, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25364, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25365, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25366, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25367, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25368, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25369, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25370, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25371, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25372, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25373, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25374, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25375, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25376, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25377, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25378, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25379, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25380, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25381, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25382, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25383, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25384, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25385, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25386, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25387, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25388, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25389, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25390, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25391, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25392, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25393, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25394, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25395, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25396, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25397, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25398, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25412, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25413, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25414, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25415, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25416, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25424, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25425, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25426, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25427, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25428, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25436, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25437, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25438, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25439, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25440, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25448, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25449, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25450, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25451, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25452, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25460, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25461, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25462, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25463, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25464, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25472, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25473, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25474, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25475, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25476, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25477, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25478, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25479, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25480, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25481, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25482, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25483, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25484, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25485, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25486, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25487, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25488, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25489, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25490, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25491, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25492, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25493, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25494, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25495, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25496, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25497, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25498, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25499, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25500, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25501, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25502, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25503, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25504, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25505, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25506, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25507, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25508, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25509, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25510, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25511, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25512, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25513, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25514, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25515, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25516, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25517, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25518, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25519, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25520, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25521, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25522, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25523, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25524, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25525, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25526, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25527, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25528, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25529, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25530, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25531, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25532, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25533, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25534, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25535, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25536, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25537, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25538, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25539, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25540, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25541, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25542, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25543, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25544, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25545, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25546, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25547, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25548, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25549, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25550, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25551, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25552, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25553, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25554, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25555, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25556, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25557, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25558, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25559, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25560, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25561, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25562, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25563, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25564, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25565, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25566, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25567, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25568, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25569, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25570, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25571, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25572, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25573, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25574, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25575, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25576, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25577, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25578, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25579, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25580, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25581, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25582, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25583, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25584, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25585, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25586, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25587, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25588, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25589, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25590, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25591, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25592, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25593, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25594, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25595, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25596, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25597, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25598, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25599, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25600, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25601, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25602, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25603, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25604, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25605, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25606, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25607, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25608, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25609, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25610, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25611, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25612, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25613, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25614, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25615, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25616, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25617, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25618, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25619, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25620, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25628, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25629, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25630, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25631, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25632, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25640, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25641, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25642, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25643, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25644, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25652, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25653, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25654, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25655, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25656, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25664, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25665, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25666, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25667, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25668, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25676, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25677, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25678, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25679, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25680, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25688, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25689, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25690, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25691, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25692, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25700, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25701, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25702, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25703, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25704, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25712, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25713, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25714, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25715, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25716, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25724, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25725, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25726, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25727, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25728, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5 + } + ] + }, + "minecraft:polished_diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14100, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14101, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14102, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14103, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14104, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14105, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_diorite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13202, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13203, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13204, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13205, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13206, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13207, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13208, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13209, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13210, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13211, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13212, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13213, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13214, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13215, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13216, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13217, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13218, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13219, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13220, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13221, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13222, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13223, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13224, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13225, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13226, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13227, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13228, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13229, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13230, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13231, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13232, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13233, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13234, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13235, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13236, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13237, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13238, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13239, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13240, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13241, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13242, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13243, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13244, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13245, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13246, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13247, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13248, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13249, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13250, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13251, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13252, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13253, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13254, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13255, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13256, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13257, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13258, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13259, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13260, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13261, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13262, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13263, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13264, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13265, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13266, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13267, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13268, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13269, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13270, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13271, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13272, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13273, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13274, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13275, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13276, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13277, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13278, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13279, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13280, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13281, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3 + } + ] + }, + "minecraft:polished_granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14082, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14083, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14084, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14085, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14086, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14087, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_granite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12962, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12963, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12964, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12965, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12966, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12967, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12968, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12969, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12970, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12971, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12972, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12973, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12974, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12975, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12976, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12977, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12978, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12979, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12980, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12981, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12982, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12983, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12984, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12985, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12986, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12987, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12988, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12989, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12990, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12991, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12992, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12993, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12994, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12995, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12996, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12997, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12998, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12999, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13000, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13001, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13002, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13003, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13004, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13005, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13006, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13007, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13008, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13009, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13010, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13011, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13012, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13013, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13014, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13015, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13016, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13017, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13018, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13019, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13020, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13021, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13022, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13023, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13024, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13025, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13026, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13027, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13028, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13029, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13030, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13031, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13032, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13033, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13034, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13035, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13036, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13037, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13038, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13039, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13040, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13041, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21492 + } + ] + }, + "minecraft:polished_tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21493, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21494, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21495, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21496, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21497, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21498, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_tuff" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21499, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21500, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21501, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21502, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21503, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21504, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21505, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21506, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21507, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21508, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21509, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21510, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21511, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21512, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21513, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21514, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21515, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21516, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21517, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21518, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21519, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21520, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21521, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21522, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21523, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21524, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21525, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21526, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21527, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21528, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21529, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21530, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21531, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21532, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21533, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21534, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21535, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21536, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21537, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21538, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21539, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21540, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21541, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21542, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21543, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21544, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21545, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21546, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21547, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21548, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21549, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21550, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21551, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21552, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21553, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21554, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21555, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21556, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21557, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21558, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21559, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21560, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21561, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21562, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21563, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21564, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21565, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21566, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21567, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21568, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21569, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21570, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21571, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21572, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21573, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21574, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21575, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21576, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21577, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21578, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21579, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21580, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21581, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21582, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21583, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21584, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21585, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21586, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21587, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21588, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21589, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21590, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21591, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21592, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21593, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21594, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21595, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21596, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21597, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21598, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21599, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21600, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21601, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21602, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21603, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21604, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21605, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21606, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21607, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21608, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21609, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21610, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21611, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21612, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21613, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21614, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21615, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21616, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21617, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21618, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21619, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21620, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21621, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21622, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21623, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21624, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21625, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21626, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21627, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21628, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21629, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21630, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21631, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21632, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21633, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21634, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21635, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21636, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21637, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21638, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21639, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21640, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21641, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21642, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21643, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21644, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21645, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21646, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21647, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21648, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21649, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21650, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21651, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21652, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21653, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21654, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21655, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21656, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21657, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21658, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21659, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21660, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21661, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21662, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21663, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21664, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21665, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21666, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21667, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21668, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21669, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21670, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21671, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21672, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21673, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21674, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21675, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21676, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21677, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21678, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21679, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21680, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21681, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21682, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21683, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21684, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21685, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21686, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21687, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21688, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21689, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21690, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21691, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21692, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21693, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21694, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21695, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21696, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21697, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21698, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21699, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21700, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21701, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21702, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21703, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21704, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21705, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21706, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21707, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21708, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21709, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21710, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21711, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21712, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21713, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21714, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21715, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21716, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21717, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21718, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21719, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21720, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21721, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21722, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21723, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21724, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21725, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21726, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21727, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21728, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21729, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21730, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21731, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21732, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21733, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21734, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21735, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21736, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21737, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21738, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21739, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21740, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21741, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21742, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21743, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21744, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21745, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21746, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21747, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21748, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21749, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21750, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21751, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21752, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21753, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21754, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21755, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21756, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21757, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21758, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21759, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21760, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21761, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21762, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21763, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21764, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21765, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21766, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21767, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21768, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21769, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21770, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21771, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21772, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21773, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21774, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21775, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21776, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21777, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21778, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21779, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21780, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21781, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21782, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21783, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21784, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21785, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21786, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21787, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21788, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21789, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21790, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21791, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21792, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21793, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21794, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21795, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21796, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21797, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21798, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21799, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21800, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21801, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21802, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21803, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21804, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21805, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21806, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21807, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21808, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21809, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21810, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21811, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21812, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21813, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21814, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21815, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21816, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21817, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21818, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21819, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21820, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21821, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21822, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21823, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21824, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21825, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21826, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21827, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21828, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21829, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21830, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21831, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21832, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21833, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21834, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21835, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21836, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21837, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21838, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21839, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21840, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21841, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21842, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21843, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21844, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21845, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21846, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21847, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21848, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21849, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21850, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21851, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21852, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21853, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21854, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21855, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21856, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21857, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21858, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21859, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21860, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21861, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21862, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21863, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21864, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21865, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21866, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21867, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21868, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21869, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21870, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21871, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21872, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21873, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21874, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21875, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21876, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21877, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21878, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21879, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21880, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21881, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21882, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21883, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21884, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21885, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21886, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21887, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21888, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21889, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21890, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21891, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21892, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21893, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21894, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21895, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21896, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21897, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21898, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21899, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21900, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21901, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21902, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:poppy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "states": [ + { + "default": true, + "id": 2077 + } + ] + }, + "minecraft:potatoes": { + "definition": { + "type": "minecraft:potato", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8603, + "properties": { + "age": "0" + } + }, + { + "id": 8604, + "properties": { + "age": "1" + } + }, + { + "id": 8605, + "properties": { + "age": "2" + } + }, + { + "id": 8606, + "properties": { + "age": "3" + } + }, + { + "id": 8607, + "properties": { + "age": "4" + } + }, + { + "id": 8608, + "properties": { + "age": "5" + } + }, + { + "id": 8609, + "properties": { + "age": "6" + } + }, + { + "id": 8610, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:potted_acacia_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:acacia_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8573 + } + ] + }, + "minecraft:potted_allium": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:allium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8581 + } + ] + }, + "minecraft:potted_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26561 + } + ] + }, + "minecraft:potted_azure_bluet": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azure_bluet", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8582 + } + ] + }, + "minecraft:potted_bamboo": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:bamboo", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12957 + } + ] + }, + "minecraft:potted_birch_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:birch_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8571 + } + ] + }, + "minecraft:potted_blue_orchid": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:blue_orchid", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8580 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:brown_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8592 + } + ] + }, + "minecraft:potted_cactus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cactus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8594 + } + ] + }, + "minecraft:potted_cherry_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cherry_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8574 + } + ] + }, + "minecraft:potted_cornflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cornflower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8588 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_fungus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19455 + } + ] + }, + "minecraft:potted_crimson_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19457 + } + ] + }, + "minecraft:potted_dandelion": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dandelion", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8578 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dark_oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8575 + } + ] + }, + "minecraft:potted_dead_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dead_bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8593 + } + ] + }, + "minecraft:potted_fern": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:fern", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8577 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:flowering_azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26562 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:jungle_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8572 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:lily_of_the_valley", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8589 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:mangrove_propagule", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8576 + } + ] + }, + "minecraft:potted_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8569 + } + ] + }, + "minecraft:potted_orange_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:orange_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8584 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oxeye_daisy", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8587 + } + ] + }, + "minecraft:potted_pink_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:pink_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8586 + } + ] + }, + "minecraft:potted_poppy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:poppy", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8579 + } + ] + }, + "minecraft:potted_red_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8591 + } + ] + }, + "minecraft:potted_red_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8583 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:spruce_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8570 + } + ] + }, + "minecraft:potted_torchflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:torchflower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8568 + } + ] + }, + "minecraft:potted_warped_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_fungus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19456 + } + ] + }, + "minecraft:potted_warped_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19458 + } + ] + }, + "minecraft:potted_white_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:white_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8585 + } + ] + }, + "minecraft:potted_wither_rose": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:wither_rose", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8590 + } + ] + }, + "minecraft:powder_snow": { + "definition": { + "type": "minecraft:powder_snow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22318 + } + ] + }, + "minecraft:powder_snow_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "powder_snow", + "precipitation": "snow", + "properties": {} + }, + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 7403, + "properties": { + "level": "1" + } + }, + { + "id": 7404, + "properties": { + "level": "2" + } + }, + { + "id": 7405, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:powered_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 1944, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 1945, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1946, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1947, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1948, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1949, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1950, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1951, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1952, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1953, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1954, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1955, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 1956, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 1957, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 1958, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 1959, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 1960, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 1961, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 1962, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 1963, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 1964, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 1965, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 1966, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 1967, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10463 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10712, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10713, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10714, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10715, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10716, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10717, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10546, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10547, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10548, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10549, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10550, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10551, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10552, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10553, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10554, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10555, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10556, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10557, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10558, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10559, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10560, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10561, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10562, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10563, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10564, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10565, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10566, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10567, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10568, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10569, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10570, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10571, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10572, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10573, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10574, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10575, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10576, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10577, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10578, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10579, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10580, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10581, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10582, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10583, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10584, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10585, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10586, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10587, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10588, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10589, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10590, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10591, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10592, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10593, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10594, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10595, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10596, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10597, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10598, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10599, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10600, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10601, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10602, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10603, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10604, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10605, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10606, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10607, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10608, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10609, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10610, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10611, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10612, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10613, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10614, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10615, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10616, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10617, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10618, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10619, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10620, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10621, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10622, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10623, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10624, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10625, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10464 + } + ] + }, + "minecraft:prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10706, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 10707, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 10708, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10709, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 10710, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 10711, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10466, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10467, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10468, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10469, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10470, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10471, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10472, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10473, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10474, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10475, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10476, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 10477, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10481, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10482, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10483, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10484, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10485, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10486, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10487, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10488, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10489, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10490, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10491, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10492, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10493, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10494, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10495, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10496, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10497, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10501, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10502, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10503, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10504, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10505, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10506, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10507, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10508, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10509, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10510, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10511, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10512, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10513, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10514, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10515, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10516, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10517, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10521, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10522, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10523, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10524, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10525, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10526, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10527, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10528, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10529, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10530, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10531, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10532, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10533, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10534, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10535, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 10536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 10537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 10538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 10539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 10540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 10541, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 10542, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 10543, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 10544, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 10545, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14484, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14485, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14486, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14487, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14488, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14489, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14490, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14491, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14492, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14493, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14494, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14495, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14496, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14497, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14498, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14499, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14500, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14501, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14502, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14503, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14504, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14505, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14506, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14507, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14508, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14509, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14510, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14511, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14512, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14513, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14514, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14515, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14516, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14517, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14518, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14519, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14520, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14521, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14522, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14523, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14524, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14525, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14526, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14527, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14528, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14529, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14530, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14531, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14532, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14533, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14534, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14535, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14536, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14537, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14538, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14539, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14540, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14541, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14542, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14543, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14544, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14545, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14546, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14547, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14548, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14549, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14550, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14551, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14552, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14553, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14554, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14555, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14556, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14557, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14700, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14701, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14702, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14703, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14704, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14705, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14706, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14707, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14708, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14709, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14710, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14711, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14712, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14713, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14714, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14715, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14716, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14717, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14718, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14719, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14720, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14721, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14722, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14723, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14724, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14725, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14726, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14727, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14728, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14729, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14730, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14731, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14732, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14733, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14734, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14735, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14736, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14737, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14738, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14739, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14740, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14741, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14742, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14743, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14744, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14745, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14746, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14747, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14748, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14749, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14750, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14751, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14752, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14753, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14754, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14755, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14756, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14757, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14758, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14759, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14760, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14761, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14762, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14763, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14764, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14765, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14766, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14767, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14768, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14769, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14770, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14771, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14772, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14773, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14774, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14775, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14776, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14777, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14778, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14779, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14780, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14781, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14782, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14783, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14784, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14785, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14786, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14787, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14788, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14789, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14790, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14791, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14792, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14793, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14794, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14795, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14796, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14797, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14798, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14799, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14800, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14801, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14802, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14803, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14804, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14805, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14806, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14807, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:pumpkin": { + "definition": { + "type": "minecraft:pumpkin", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6811 + } + ] + }, + "minecraft:pumpkin_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_pumpkin_stem", + "fruit": "minecraft:pumpkin", + "properties": {}, + "seed": "minecraft:pumpkin_seeds" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 6821, + "properties": { + "age": "0" + } + }, + { + "id": 6822, + "properties": { + "age": "1" + } + }, + { + "id": 6823, + "properties": { + "age": "2" + } + }, + { + "id": 6824, + "properties": { + "age": "3" + } + }, + { + "id": 6825, + "properties": { + "age": "4" + } + }, + { + "id": 6826, + "properties": { + "age": "5" + } + }, + { + "id": 6827, + "properties": { + "age": "6" + } + }, + { + "id": 6828, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:purple_banner": { + "definition": { + "type": "minecraft:banner", + "color": "purple", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10919, + "properties": { + "rotation": "0" + } + }, + { + "id": 10920, + "properties": { + "rotation": "1" + } + }, + { + "id": 10921, + "properties": { + "rotation": "2" + } + }, + { + "id": 10922, + "properties": { + "rotation": "3" + } + }, + { + "id": 10923, + "properties": { + "rotation": "4" + } + }, + { + "id": 10924, + "properties": { + "rotation": "5" + } + }, + { + "id": 10925, + "properties": { + "rotation": "6" + } + }, + { + "id": 10926, + "properties": { + "rotation": "7" + } + }, + { + "id": 10927, + "properties": { + "rotation": "8" + } + }, + { + "id": 10928, + "properties": { + "rotation": "9" + } + }, + { + "id": 10929, + "properties": { + "rotation": "10" + } + }, + { + "id": 10930, + "properties": { + "rotation": "11" + } + }, + { + "id": 10931, + "properties": { + "rotation": "12" + } + }, + { + "id": 10932, + "properties": { + "rotation": "13" + } + }, + { + "id": 10933, + "properties": { + "rotation": "14" + } + }, + { + "id": 10934, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:purple_bed": { + "definition": { + "type": "minecraft:bed", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1848, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1849, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1850, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1851, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1852, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1853, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1854, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1855, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1856, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1857, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1858, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1859, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1860, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1861, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1862, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1863, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:purple_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20901, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20902, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20903, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20904, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20905, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20906, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20907, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20908, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20909, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20910, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20911, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20912, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20913, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20914, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20915, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20916, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purple_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:purple_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21019, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21020, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:purple_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "purple", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10738 + } + ] + }, + "minecraft:purple_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12738 + } + ] + }, + "minecraft:purple_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:purple_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12754 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12704, + "properties": { + "facing": "north" + } + }, + { + "id": 12705, + "properties": { + "facing": "south" + } + }, + { + "id": 12706, + "properties": { + "facing": "west" + } + }, + { + "id": 12707, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12628, + "properties": { + "facing": "north" + } + }, + { + "id": 12629, + "properties": { + "facing": "east" + } + }, + { + "id": 12630, + "properties": { + "facing": "south" + } + }, + { + "id": 12631, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12632, + "properties": { + "facing": "up" + } + }, + { + "id": 12633, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:purple_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "purple", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5955 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "purple", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9692, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9693, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9694, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9695, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9696, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9697, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9698, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9699, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9700, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9701, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9702, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9703, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9704, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9705, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9706, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9707, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9708, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9709, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9710, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9711, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9712, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9713, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9714, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9715, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9716, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9717, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9718, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9719, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9720, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9721, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9722, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9723, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:purple_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9366 + } + ] + }, + "minecraft:purple_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11055, + "properties": { + "facing": "north" + } + }, + { + "id": 11056, + "properties": { + "facing": "south" + } + }, + { + "id": 11057, + "properties": { + "facing": "west" + } + }, + { + "id": 11058, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2057 + } + ] + }, + "minecraft:purpur_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12410 + } + ] + }, + "minecraft:purpur_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12411, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12412, + "properties": { + "axis": "y" + } + }, + { + "id": 12413, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:purpur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11300, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11301, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11302, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11303, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11304, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11305, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:purpur_block" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12414, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12415, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12416, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12417, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12418, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12419, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12420, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12421, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12422, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12423, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12424, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12425, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12426, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12427, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12428, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12429, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12430, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12431, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12432, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12433, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12434, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12435, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12436, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12437, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12438, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12439, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12440, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12441, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12442, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12443, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12444, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12445, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12446, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12447, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12448, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12449, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12450, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12451, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12452, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12453, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12454, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12455, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12456, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12457, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12458, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12459, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12460, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12461, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12462, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12463, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12464, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12465, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12466, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12467, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12468, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12469, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12470, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12471, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12472, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12473, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12474, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12475, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12476, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12477, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12478, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12479, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12480, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12481, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12482, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12483, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12484, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12485, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12486, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12487, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12488, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12489, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12490, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12491, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12492, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12493, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9235 + } + ] + }, + "minecraft:quartz_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20724 + } + ] + }, + "minecraft:quartz_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 9237, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 9238, + "properties": { + "axis": "y" + } + }, + { + "id": 9239, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11282, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11283, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11284, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11285, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11286, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11287, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:quartz_block" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9240, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9241, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9242, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9243, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9244, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9245, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9246, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9247, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9248, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9249, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9250, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9251, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9252, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9253, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9254, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9255, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9256, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9257, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9258, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9259, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9260, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9261, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9262, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9263, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9264, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9265, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9266, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9267, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9268, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9269, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9270, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9271, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9272, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9273, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9274, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9275, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9276, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9277, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9278, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9279, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9280, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9281, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9282, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9283, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9284, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9285, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9286, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9287, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9288, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9289, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9290, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9291, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9292, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9293, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9294, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9295, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9296, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9297, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9298, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9299, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9300, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9301, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9302, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9303, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9304, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9305, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9306, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9307, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9308, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9309, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9310, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9311, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9312, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9313, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9314, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9315, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9316, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9317, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9318, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9319, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:rail": { + "definition": { + "type": "minecraft:rail", + "properties": {} + }, + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4662, + "properties": { + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4663, + "properties": { + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 4664, + "properties": { + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 4665, + "properties": { + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 4666, + "properties": { + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 4667, + "properties": { + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 4668, + "properties": { + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 4669, + "properties": { + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 4670, + "properties": { + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 4671, + "properties": { + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 4672, + "properties": { + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 4673, + "properties": { + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 4674, + "properties": { + "shape": "south_east", + "waterlogged": "true" + } + }, + { + "id": 4675, + "properties": { + "shape": "south_east", + "waterlogged": "false" + } + }, + { + "id": 4676, + "properties": { + "shape": "south_west", + "waterlogged": "true" + } + }, + { + "id": 4677, + "properties": { + "shape": "south_west", + "waterlogged": "false" + } + }, + { + "id": 4678, + "properties": { + "shape": "north_west", + "waterlogged": "true" + } + }, + { + "id": 4679, + "properties": { + "shape": "north_west", + "waterlogged": "false" + } + }, + { + "id": 4680, + "properties": { + "shape": "north_east", + "waterlogged": "true" + } + }, + { + "id": 4681, + "properties": { + "shape": "north_east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:raw_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26559 + } + ] + }, + "minecraft:raw_gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26560 + } + ] + }, + "minecraft:raw_iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26558 + } + ] + }, + "minecraft:red_banner": { + "definition": { + "type": "minecraft:banner", + "color": "red", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10983, + "properties": { + "rotation": "0" + } + }, + { + "id": 10984, + "properties": { + "rotation": "1" + } + }, + { + "id": 10985, + "properties": { + "rotation": "2" + } + }, + { + "id": 10986, + "properties": { + "rotation": "3" + } + }, + { + "id": 10987, + "properties": { + "rotation": "4" + } + }, + { + "id": 10988, + "properties": { + "rotation": "5" + } + }, + { + "id": 10989, + "properties": { + "rotation": "6" + } + }, + { + "id": 10990, + "properties": { + "rotation": "7" + } + }, + { + "id": 10991, + "properties": { + "rotation": "8" + } + }, + { + "id": 10992, + "properties": { + "rotation": "9" + } + }, + { + "id": 10993, + "properties": { + "rotation": "10" + } + }, + { + "id": 10994, + "properties": { + "rotation": "11" + } + }, + { + "id": 10995, + "properties": { + "rotation": "12" + } + }, + { + "id": 10996, + "properties": { + "rotation": "13" + } + }, + { + "id": 10997, + "properties": { + "rotation": "14" + } + }, + { + "id": 10998, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:red_bed": { + "definition": { + "type": "minecraft:bed", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1912, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1913, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1914, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1915, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1916, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1917, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1918, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1919, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1920, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1921, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1922, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1923, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1924, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1925, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1926, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1927, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:red_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20965, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20966, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20967, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20968, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20969, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20970, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20971, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20972, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20973, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20974, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20975, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20976, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20977, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20978, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20979, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20980, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:red_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21027, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21028, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "red", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10742 + } + ] + }, + "minecraft:red_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12742 + } + ] + }, + "minecraft:red_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:red_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12758 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12720, + "properties": { + "facing": "north" + } + }, + { + "id": 12721, + "properties": { + "facing": "south" + } + }, + { + "id": 12722, + "properties": { + "facing": "west" + } + }, + { + "id": 12723, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_red_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2090 + } + ] + }, + "minecraft:red_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6613, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6614, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6615, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6616, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6617, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6618, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6619, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6620, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6621, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6622, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6623, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6624, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6625, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6626, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6627, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6628, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6629, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6630, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6631, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6632, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6633, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6634, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6635, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6636, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6637, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6638, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6639, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6640, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6641, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6642, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6643, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6644, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6645, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6646, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6647, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6648, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6649, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6650, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6651, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6652, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6653, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6654, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6655, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6656, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6657, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6658, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6659, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6660, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6661, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6662, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6663, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6664, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6665, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6666, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6667, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6668, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6669, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6670, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6671, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6672, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6673, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6674, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6675, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6676, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14142, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14143, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14144, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14145, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14146, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14147, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_nether_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13842, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13843, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13844, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13845, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13846, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13847, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13848, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13849, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13850, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13851, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13852, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13853, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13854, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13855, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13856, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13857, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13858, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13859, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13860, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13861, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13862, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13863, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13864, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13865, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13866, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13867, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13868, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13869, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13870, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13871, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13872, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13873, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13874, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13875, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13876, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13877, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13878, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13879, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13880, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13881, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13882, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13883, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13884, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13885, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13886, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13887, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13888, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13889, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13890, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13891, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13892, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13893, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13894, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13895, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13896, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13897, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13898, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13899, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13900, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13901, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13902, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13903, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13904, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13905, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13906, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13907, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13908, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13909, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13910, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13911, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13912, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13913, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13914, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13915, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13916, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13917, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13918, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13919, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13920, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13921, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17076, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17077, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17078, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17079, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17080, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17081, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17082, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17083, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17084, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17085, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17086, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17087, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17088, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17089, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17090, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17091, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17092, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17093, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17094, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17095, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17096, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17097, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17098, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17099, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17100, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17101, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17102, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17103, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17104, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17105, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17106, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17107, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17108, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17109, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17110, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17111, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17112, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17113, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17114, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17115, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17116, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17117, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17118, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17119, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17120, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17121, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17122, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17123, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17124, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17125, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17126, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17127, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17128, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17129, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17130, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17131, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17132, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17133, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17134, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17135, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17136, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17137, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17138, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17139, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17140, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17141, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17142, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17143, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17144, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17145, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17146, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17147, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17148, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17149, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17292, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17293, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17294, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17295, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17296, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17297, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17298, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17299, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17300, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17301, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17302, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17303, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17304, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17305, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17306, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17307, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17308, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17309, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17310, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17311, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17312, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17313, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17314, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17315, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17316, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17317, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17318, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17319, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17320, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17321, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17322, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17323, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17324, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17325, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17326, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17327, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17328, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17329, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17330, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17331, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17332, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17333, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17334, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17335, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17336, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17337, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17338, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17339, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17340, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17341, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17342, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17343, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17344, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17345, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17346, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17347, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17348, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17349, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17350, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17351, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17352, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17353, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17354, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17355, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17356, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17357, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17358, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17359, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17360, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17361, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17362, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17363, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17364, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17365, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17366, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17367, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17368, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17369, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17370, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17371, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17372, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17373, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17374, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17375, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17376, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17377, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17378, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17379, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17380, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17381, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17382, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17383, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17384, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17385, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17386, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17387, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17388, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17389, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17390, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17391, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17392, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17393, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17394, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17395, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17396, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17397, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17398, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17399, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12545 + } + ] + }, + "minecraft:red_sand": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#00A95821", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 117 + } + ] + }, + "minecraft:red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11079 + } + ] + }, + "minecraft:red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11288, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11289, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11290, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11291, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11292, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11293, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11082, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11083, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11084, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11085, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11086, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11087, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11088, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11089, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11090, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11091, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11092, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11093, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11094, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11095, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11096, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11097, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11098, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11099, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11100, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11101, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11102, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11103, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11104, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11105, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11106, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11107, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11108, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11109, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11110, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11111, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11112, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11113, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11114, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11115, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11116, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11117, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11118, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11119, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11120, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11121, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11122, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11123, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11124, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11125, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11126, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11127, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11128, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11129, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11130, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11131, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11132, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11133, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11134, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11135, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11136, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11137, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11138, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11139, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11140, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11141, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11142, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11143, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11144, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11145, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11146, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11147, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11148, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11149, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11150, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11151, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11152, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11153, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11154, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11155, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11156, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11157, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11158, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11159, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11160, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11161, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 14808, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14809, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14810, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 14811, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14812, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14813, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14814, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14815, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14816, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14817, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14818, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14819, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14820, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14821, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14822, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14823, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14824, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14825, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14826, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14827, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14828, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14829, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14830, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14831, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14832, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14833, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14834, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14835, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14836, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14837, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14838, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14839, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14840, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14841, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14842, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14843, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14844, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14845, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14846, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14847, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14848, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14849, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14850, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14851, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14852, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14853, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14854, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14855, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14856, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14857, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14858, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14859, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14860, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14861, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14862, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14863, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14864, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14865, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14866, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14867, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14868, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14869, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14870, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14871, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14872, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14873, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14874, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14875, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 14876, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 14877, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 14878, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 14879, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 14880, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 14881, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15024, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15025, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15026, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15027, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15028, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15029, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15030, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15031, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15032, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15033, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15034, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15035, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15036, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15037, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15038, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15039, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15040, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15041, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15042, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15043, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15044, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15045, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15046, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15047, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15048, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15049, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15050, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15051, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15052, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15053, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15054, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15055, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15056, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15057, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15058, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15059, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15060, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15061, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15062, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15063, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15064, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15065, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15066, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15067, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15068, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15069, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15070, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15071, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15072, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15073, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15074, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15075, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15076, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15077, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15078, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15079, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15080, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15081, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15082, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15083, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15084, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15085, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15086, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15087, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15088, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15089, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15090, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15091, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15092, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15093, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15094, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15095, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15096, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15097, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15098, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15099, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15100, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15101, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15102, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15103, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15104, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15105, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15106, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15107, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15108, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15109, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15110, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15111, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15112, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15113, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15114, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15115, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15116, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15117, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15118, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15119, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15120, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15121, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15122, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15123, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15124, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15125, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15126, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15127, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15128, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15129, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15130, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15131, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12652, + "properties": { + "facing": "north" + } + }, + { + "id": 12653, + "properties": { + "facing": "east" + } + }, + { + "id": 12654, + "properties": { + "facing": "south" + } + }, + { + "id": 12655, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12656, + "properties": { + "facing": "up" + } + }, + { + "id": 12657, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "red", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5959 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "red", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9820, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9821, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9822, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9823, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9824, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9825, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9826, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9827, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9828, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9829, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9830, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9831, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9832, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9833, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9834, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9835, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9836, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9837, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9838, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9839, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9840, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9841, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9842, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9843, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9844, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9845, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9846, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9847, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9848, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9849, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9850, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9851, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9370 + } + ] + }, + "minecraft:red_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2081 + } + ] + }, + "minecraft:red_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11071, + "properties": { + "facing": "north" + } + }, + { + "id": 11072, + "properties": { + "facing": "south" + } + }, + { + "id": 11073, + "properties": { + "facing": "west" + } + }, + { + "id": 11074, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2061 + } + ] + }, + "minecraft:redstone_block": { + "definition": { + "type": "minecraft:powered", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9223 + } + ] + }, + "minecraft:redstone_lamp": { + "definition": { + "type": "minecraft:redstone_lamp", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7417, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 7418, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5734, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 5735, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "definition": { + "type": "minecraft:redstone_torch", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5738, + "properties": { + "lit": "true" + } + }, + { + "id": 5739, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "definition": { + "type": "minecraft:redstone_wall_torch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 5740, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "id": 5741, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 5742, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 5743, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 5744, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 5745, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 5746, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 5747, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wire": { + "definition": { + "type": "minecraft:redstone_wire", + "properties": {} + }, + "properties": { + "east": [ + "up", + "side", + "none" + ], + "north": [ + "up", + "side", + "none" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "south": [ + "up", + "side", + "none" + ], + "west": [ + "up", + "side", + "none" + ] + }, + "states": [ + { + "id": 2978, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 2979, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 2980, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 2981, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 2982, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 2983, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 2984, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 2985, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 2986, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 2987, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 2988, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 2989, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 2990, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 2991, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 2992, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 2993, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 2994, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 2995, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 2996, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 2997, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 2998, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 2999, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3000, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3001, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3002, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3003, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3004, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3005, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3006, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3007, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3008, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3009, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3010, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3011, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3012, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3013, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3014, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3015, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3016, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3017, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3018, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3019, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3020, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3021, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3022, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3023, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3024, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3025, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3026, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3027, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3028, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3029, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3030, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3031, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3032, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3033, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3034, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3035, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3036, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3037, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3038, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3039, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3040, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3041, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3042, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3043, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3044, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3045, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3046, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3047, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3048, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3049, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3050, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3051, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3052, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3053, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3054, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3055, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3056, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3057, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3058, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3059, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3060, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3061, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3062, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3063, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3064, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3065, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3066, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3067, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3068, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3069, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3070, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3071, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3072, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3073, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3074, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3075, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3076, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3077, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3078, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3079, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3080, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3081, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3082, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3083, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3084, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3085, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3086, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3087, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3088, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3089, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3090, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3091, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3092, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3093, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3094, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3095, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3096, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3097, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3098, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3099, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3100, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3101, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3102, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3103, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3104, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3105, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3106, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3107, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3108, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3109, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3110, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3111, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3112, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3113, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3114, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3115, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3116, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3117, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3118, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3119, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3120, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3121, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3122, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3123, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3124, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3125, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3126, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3127, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3128, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3129, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3130, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3131, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3132, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3133, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3134, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3135, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3136, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3137, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3138, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3139, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3140, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3141, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3142, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3143, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3144, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3145, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3146, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3147, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3148, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3149, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3150, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3151, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3152, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3153, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3154, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3155, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3156, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3157, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3158, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3159, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3160, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3161, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3162, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3163, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3164, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3165, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3166, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3167, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3168, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3169, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3170, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3171, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3172, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3173, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3174, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3175, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3176, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3177, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3178, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3179, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3180, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3181, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3182, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3183, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3184, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3185, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3186, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3187, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3188, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3189, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3190, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3191, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3192, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3193, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3194, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3195, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3196, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3197, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3198, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3199, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3200, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3201, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3202, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3203, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3204, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3205, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3206, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3207, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3208, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3209, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3210, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3211, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3212, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3213, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3214, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3215, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3216, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3217, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3218, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3219, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3220, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3221, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3222, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3223, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3224, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3225, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3226, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3227, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3228, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3229, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3230, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3231, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3232, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3233, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3234, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3235, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3236, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3237, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3238, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3239, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3240, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3241, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3242, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3243, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3244, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3245, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3246, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3247, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3248, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3249, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3250, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3251, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3252, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3253, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3254, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3255, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3256, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3257, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3258, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3259, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3260, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3261, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3262, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3263, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3264, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3265, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3266, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3267, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3268, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3269, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3270, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3271, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3272, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3273, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3274, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3275, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3276, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3277, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3278, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3279, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3280, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3281, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3282, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3283, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3284, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3285, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3286, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3287, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3288, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3289, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3290, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3291, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3292, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3293, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3294, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3295, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3296, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3297, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3298, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3299, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3300, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3301, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3302, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3303, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3304, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3305, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3306, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3307, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3308, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3309, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3310, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3311, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3312, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3313, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3314, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3315, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3316, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3317, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3318, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3319, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3320, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3321, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3322, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3323, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3324, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3325, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3326, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3327, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3328, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3329, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3330, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3331, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3332, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3333, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3334, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3335, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3336, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3337, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3338, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3339, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3340, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3341, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3342, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3343, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3344, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3345, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3346, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3347, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3348, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3349, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3350, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3351, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3352, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3353, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3354, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3355, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3356, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3357, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3358, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3359, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3360, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3361, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3362, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3363, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3364, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3365, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3366, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3367, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3368, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3369, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3370, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3371, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3372, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3373, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3374, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3375, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3376, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3377, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3378, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3379, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3380, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3381, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3382, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3383, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3384, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3385, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3386, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3387, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3388, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3389, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3390, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3391, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3392, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3393, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3394, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3395, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3396, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3397, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3398, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3399, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3400, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3401, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3402, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3403, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3404, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3405, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3406, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3407, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3408, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3409, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3410, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3411, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3412, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3413, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3414, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3415, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3416, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3417, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3418, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3419, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3420, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3421, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3422, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3423, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3424, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3425, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3426, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3427, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3428, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3429, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3430, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3431, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3432, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3433, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3434, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3435, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3436, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3437, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3438, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3439, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3440, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3441, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3442, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3443, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3444, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3445, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3446, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3447, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3448, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3449, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3450, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3451, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3452, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3453, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3454, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3455, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3456, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3457, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3458, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3459, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3460, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3461, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3462, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3463, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3464, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3465, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3466, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3467, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3468, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3469, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3470, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3471, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3472, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3473, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3474, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3475, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3476, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3477, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3478, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3479, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3480, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3481, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3482, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3483, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3484, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3485, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3486, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3487, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3488, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3489, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3490, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3491, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3492, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3493, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3494, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3495, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3496, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3497, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3498, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3499, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3500, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3501, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3502, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3503, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3504, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3505, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3506, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3507, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3508, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3509, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3510, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3511, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3512, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3513, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3514, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3515, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3516, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3517, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3518, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3519, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3520, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3521, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3522, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3523, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3524, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3525, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3526, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3527, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3528, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3529, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3530, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3531, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3532, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3533, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3534, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3535, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3536, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3537, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3538, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3539, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3540, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3541, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3542, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3543, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3544, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3545, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3546, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3547, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3548, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3549, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3550, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3551, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3552, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3553, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3554, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3555, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3556, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3557, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3558, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3559, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3560, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3561, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3562, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3563, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3564, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3565, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3566, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3567, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3568, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3569, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3570, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3571, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3572, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3573, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3574, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3575, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3576, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3577, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3578, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3579, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3580, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3581, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3582, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3583, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3584, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3585, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3586, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3587, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3588, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3589, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3590, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3591, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3592, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3593, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3594, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3595, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3596, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3597, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3598, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3599, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3600, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3601, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3602, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3603, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3604, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3605, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3606, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3607, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3608, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3609, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3610, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3611, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3612, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3613, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3614, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3615, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3616, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3617, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3618, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3619, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3620, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3621, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3622, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3623, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3624, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3625, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3626, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3627, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3628, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3629, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3630, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3631, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3632, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3633, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3634, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3635, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3636, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3637, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3638, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3639, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3640, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3641, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3642, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3643, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3644, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3645, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3646, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3647, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3648, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3649, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3650, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3651, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3652, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3653, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3654, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3655, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3656, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3657, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3658, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3659, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3660, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3661, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3662, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3663, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3664, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3665, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3666, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3667, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3668, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3669, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3670, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3671, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3672, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3673, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3674, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3675, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3676, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3677, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3678, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3679, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3680, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3681, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3682, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3683, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3684, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3685, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3686, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3687, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3688, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3689, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3690, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3691, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3692, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3693, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3694, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3695, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3696, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3697, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3698, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3699, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3700, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3701, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3702, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3703, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3704, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3705, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3706, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3707, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3708, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3709, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3710, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3711, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3712, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3713, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3714, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3715, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3716, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3717, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3718, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3719, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3720, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3721, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3722, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3723, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3724, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3725, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3726, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3727, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3728, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3729, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3730, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3731, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3732, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3733, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3734, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3735, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3736, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3737, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3738, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3739, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3740, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3741, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3742, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3743, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3744, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3745, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3746, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3747, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3748, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3749, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3750, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3751, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3752, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3753, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3754, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3755, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3756, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3757, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3758, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3759, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3760, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3761, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3762, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3763, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3764, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3765, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3766, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3767, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3768, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3769, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3770, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3771, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3772, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3773, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3774, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3775, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3776, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3777, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3778, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3779, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3780, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3781, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3782, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3783, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3784, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3785, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3786, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3787, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3788, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3789, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3790, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3791, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3792, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3793, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3794, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3795, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3796, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3797, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3798, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3799, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3800, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3801, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3802, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3803, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3804, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3805, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3806, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3807, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3808, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3809, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3810, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3811, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3812, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3813, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3814, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3815, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3816, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3817, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3818, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3819, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3820, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3821, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3822, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3823, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3824, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3825, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3826, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3827, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3828, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3829, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3830, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3831, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3832, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3833, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3834, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3835, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3836, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3837, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3838, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3839, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3840, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3841, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3842, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3843, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3844, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3845, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3846, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3847, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3848, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3849, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3850, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3851, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3852, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3853, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3854, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3855, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 3856, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 3857, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 3858, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 3859, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 3860, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 3861, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 3862, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 3863, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 3864, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 3865, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 3866, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 3867, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 3868, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 3869, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 3870, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 3871, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 3872, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 3873, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 3874, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 3875, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 3876, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 3877, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 3878, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 3879, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 3880, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 3881, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 3882, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 3883, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 3884, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 3885, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 3886, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 3887, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 3888, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 3889, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 3890, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 3891, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 3892, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 3893, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 3894, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 3895, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 3896, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 3897, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 3898, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 3899, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 3900, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 3901, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 3902, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 3903, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 3904, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 3905, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 3906, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 3907, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 3908, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 3909, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 3910, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 3911, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 3912, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 3913, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 3914, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 3915, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 3916, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 3917, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 3918, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 3919, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 3920, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 3921, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 3922, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 3923, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 3924, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 3925, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 3926, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 3927, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 3928, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 3929, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 3930, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 3931, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 3932, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 3933, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 3934, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 3935, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 3936, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 3937, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 3938, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 3939, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 3940, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 3941, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 3942, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 3943, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 3944, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 3945, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 3946, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 3947, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 3948, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 3949, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 3950, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 3951, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 3952, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 3953, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 3954, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 3955, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 3956, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 3957, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 3958, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 3959, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 3960, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 3961, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 3962, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 3963, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 3964, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 3965, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 3966, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 3967, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 3968, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 3969, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 3970, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 3971, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 3972, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 3973, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 3974, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 3975, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 3976, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 3977, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 3978, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 3979, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 3980, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 3981, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 3982, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 3983, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 3984, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 3985, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 3986, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 3987, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 3988, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 3989, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 3990, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 3991, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 3992, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 3993, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 3994, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 3995, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 3996, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 3997, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 3998, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 3999, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4000, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4001, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4002, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4003, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4004, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4005, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4006, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4007, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4008, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4009, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4010, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4011, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4012, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4013, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4014, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4015, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4016, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4017, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4018, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4019, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4020, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4021, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4022, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4023, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4024, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4025, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4026, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4027, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4028, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4029, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4030, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4031, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4032, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4033, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4034, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4035, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4036, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4037, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4038, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4039, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4040, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4041, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4042, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4043, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4044, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4045, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4046, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4047, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4048, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4049, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4050, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4051, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4052, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4053, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4054, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4055, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4056, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4057, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4058, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4059, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4060, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4061, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4062, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4063, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4064, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4065, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4066, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4067, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4068, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4069, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4070, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4071, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4072, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4073, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4074, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4075, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4076, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4077, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4078, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4079, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4080, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4081, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4082, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4083, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4084, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4085, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4086, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4087, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4088, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4089, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4090, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4091, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4092, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4093, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4094, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4095, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4096, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4097, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4098, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4099, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4100, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4101, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4102, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4103, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4104, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4105, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4106, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4107, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4108, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4109, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4110, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4111, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4112, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4113, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4114, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4115, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4116, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4117, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4118, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4119, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4120, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4121, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4122, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4123, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4124, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4125, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4126, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4127, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4128, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4129, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4130, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4131, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4132, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4133, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4134, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4135, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4136, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4137, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "default": true, + "id": 4138, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4139, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4140, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4141, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4142, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4143, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4144, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4145, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4146, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4147, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4148, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4149, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4150, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4151, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4152, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4153, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4154, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4155, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4156, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4157, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4158, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4159, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4160, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4161, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4162, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4163, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4164, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4165, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4166, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4167, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4168, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4169, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4170, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4171, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4172, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4173, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4174, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4175, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4176, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4177, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4178, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4179, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4180, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4181, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4182, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4183, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4184, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4185, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4186, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4187, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4188, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4189, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4190, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4191, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4192, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4193, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4194, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4195, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4196, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4197, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4198, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4199, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4200, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4201, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4202, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4203, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4204, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4205, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4206, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4207, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4208, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4209, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4210, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4211, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4212, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4213, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4214, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4215, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4216, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4217, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4218, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4219, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4220, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4221, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4222, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4223, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4224, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4225, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4226, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4227, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4228, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4229, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4230, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4231, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4232, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4233, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4234, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4235, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4236, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4237, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4238, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4239, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4240, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4241, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4242, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4243, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4244, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4245, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4246, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4247, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4248, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4249, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4250, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4251, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4252, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4253, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4254, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4255, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4256, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4257, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4258, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4259, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4260, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4261, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4262, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4263, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4264, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4265, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4266, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4267, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4268, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4269, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4270, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4271, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4272, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4273, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + } + ] + }, + "minecraft:reinforced_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26573 + } + ] + }, + "minecraft:repeater": { + "definition": { + "type": "minecraft:repeater", + "properties": {} + }, + "properties": { + "delay": [ + "1", + "2", + "3", + "4" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5881, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5882, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5883, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5884, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5885, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5886, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5887, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5888, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5889, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5890, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5891, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5892, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5893, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5894, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5895, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5896, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5897, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5898, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5899, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5900, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5901, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5902, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5903, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5904, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5905, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5906, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5907, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5908, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5909, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5910, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5911, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5912, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5913, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5914, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5915, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5916, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5917, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5918, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5919, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5920, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5921, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5922, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5923, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5924, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5925, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5926, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5927, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5928, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5929, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5930, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5931, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5932, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5933, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5934, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5935, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5936, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5937, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5938, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5939, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5940, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 5941, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 5942, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 5943, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 5944, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + } + } + ] + }, + "minecraft:repeating_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12515, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 12516, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 12517, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 12518, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 12519, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 12520, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 12521, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 12522, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 12523, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 12524, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 12525, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 12526, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:respawn_anchor": { + "definition": { + "type": "minecraft:respawn_anchor", + "properties": {} + }, + "properties": { + "charges": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 19450, + "properties": { + "charges": "0" + } + }, + { + "id": 19451, + "properties": { + "charges": "1" + } + }, + { + "id": 19452, + "properties": { + "charges": "2" + } + }, + { + "id": 19453, + "properties": { + "charges": "3" + } + }, + { + "id": 19454, + "properties": { + "charges": "4" + } + } + ] + }, + "minecraft:rooted_dirt": { + "definition": { + "type": "minecraft:rooted_dirt", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24902 + } + ] + }, + "minecraft:rose_bush": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10751, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10752, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sand": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#00DBD3A0", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 112 + } + ] + }, + "minecraft:sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 535 + } + ] + }, + "minecraft:sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11234, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11235, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11236, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11237, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11238, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11239, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7431, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7432, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7433, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7434, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7435, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7436, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7437, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7438, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7439, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7440, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7441, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7442, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7443, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7444, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7445, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7446, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7447, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7448, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7449, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7450, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7451, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7452, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7453, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7454, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7455, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7456, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7457, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7458, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7459, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7460, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7461, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7462, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7463, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7464, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7465, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7466, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7467, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7468, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7469, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7470, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7471, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7472, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7473, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7474, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7475, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7476, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7477, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7478, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7479, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7480, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7481, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7482, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7483, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7484, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7485, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7486, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7487, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7488, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7489, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7490, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7491, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7492, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7493, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7494, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7495, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7496, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7497, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7498, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7499, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7500, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7501, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7502, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7503, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7504, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7505, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7506, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7507, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7508, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7509, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7510, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17400, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17401, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17402, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17403, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17404, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17405, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17406, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17407, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17408, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17409, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17412, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17413, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17414, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17415, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17416, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17417, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17418, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17419, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17420, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17421, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17424, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17425, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17426, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17427, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17428, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17429, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17430, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17431, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17432, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17433, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17436, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17437, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17438, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17439, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17440, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17441, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17442, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17443, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17444, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17445, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17448, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17449, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17450, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17451, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17452, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17453, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17454, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17455, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17456, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17457, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17460, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17461, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17462, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17463, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17464, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17465, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17466, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17467, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17468, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17469, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17472, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17473, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17616, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17617, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17618, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17619, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17620, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17621, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17622, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17623, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17624, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17625, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17628, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17629, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17630, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17631, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17632, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17633, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17634, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17635, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17636, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17637, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17640, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17641, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17642, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17643, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17644, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17645, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17646, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17647, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17648, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17649, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17652, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17653, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17654, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17655, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17656, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17657, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17658, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17659, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17660, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17661, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17664, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17665, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17666, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17667, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17668, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17669, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17670, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17671, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17672, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17673, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17676, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17677, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17678, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17679, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17680, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17681, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17682, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17683, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17684, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17685, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17688, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17689, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17690, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17691, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17692, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17693, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17694, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17695, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17696, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17697, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17700, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17701, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17702, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17703, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17704, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17705, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17706, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17707, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17708, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17709, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17712, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17713, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17714, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17715, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17716, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17717, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17718, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17719, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17720, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17721, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:scaffolding": { + "definition": { + "type": "minecraft:scaffolding", + "properties": {} + }, + "properties": { + "bottom": [ + "true", + "false" + ], + "distance": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18372, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18373, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18374, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18375, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18376, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18377, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18378, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18379, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18380, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18381, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18382, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18383, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18384, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18385, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18386, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "true" + } + }, + { + "id": 18387, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "false" + } + }, + { + "id": 18388, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 18389, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 18390, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 18391, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 18392, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 18393, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 18394, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 18395, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 18396, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 18397, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 18398, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 18399, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 18400, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 18401, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 18402, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18403, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk": { + "definition": { + "type": "minecraft:sculk", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22799 + } + ] + }, + "minecraft:sculk_catalyst": { + "definition": { + "type": "minecraft:sculk_catalyst", + "properties": {} + }, + "properties": { + "bloom": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22928, + "properties": { + "bloom": "true" + } + }, + { + "default": true, + "id": 22929, + "properties": { + "bloom": "false" + } + } + ] + }, + "minecraft:sculk_sensor": { + "definition": { + "type": "minecraft:sculk_sensor", + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22319, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22320, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22321, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22322, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22323, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22324, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22325, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22326, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22327, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22328, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22329, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22330, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22331, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22332, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22333, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22334, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22335, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22336, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22337, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22338, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22339, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22340, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22341, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22342, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22343, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22344, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22345, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22346, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22347, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22348, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22349, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22350, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22351, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22352, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22353, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22354, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22355, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22356, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22357, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22358, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22359, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22360, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22361, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22362, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22363, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22364, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22365, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22366, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22367, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22368, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22369, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22370, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22371, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22372, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22373, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22374, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22375, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22376, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22377, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22378, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22379, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22380, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22381, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22382, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22383, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22384, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22385, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22386, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22387, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22388, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22389, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22390, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22391, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22392, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22393, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22394, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22395, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22396, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22397, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22398, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22399, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22400, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22401, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22402, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22403, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22404, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22405, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22406, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22407, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22408, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 22409, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 22410, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 22411, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 22412, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 22413, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 22414, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_shrieker": { + "definition": { + "type": "minecraft:sculk_shrieker", + "properties": {} + }, + "properties": { + "can_summon": [ + "true", + "false" + ], + "shrieking": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22930, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 22931, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 22932, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "id": 22933, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "false" + } + }, + { + "id": 22934, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 22935, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 22936, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22937, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_vein": { + "definition": { + "type": "minecraft:sculk_vein", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22800, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22801, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22802, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22803, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22804, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22805, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22806, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22807, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22808, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22809, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22810, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22811, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22812, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22813, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22814, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22815, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22816, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22817, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22818, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22819, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22820, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22821, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22822, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22823, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22824, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22825, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22826, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22827, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22828, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22829, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22830, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22831, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22832, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22833, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22834, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22835, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22836, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22837, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22838, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22839, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22840, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22841, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22842, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22843, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22844, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22845, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22846, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22847, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22848, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22849, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22850, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22851, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22852, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22853, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22854, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22855, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22856, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22857, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22858, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22859, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22860, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22861, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22862, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22863, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22864, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22865, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22866, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22867, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22868, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22869, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22870, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22871, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22872, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22873, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22874, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22875, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22876, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22877, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22878, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22879, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22880, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22881, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22882, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22883, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22884, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22885, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22886, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22887, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22888, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22889, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22890, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22891, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22892, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22893, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22894, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22895, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22896, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22897, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22898, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22899, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22900, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22901, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22902, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22903, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22904, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22905, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22906, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22907, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22908, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22909, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22910, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22911, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22912, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22913, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22914, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22915, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22916, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22917, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22918, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22919, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22920, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22921, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22922, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 22923, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 22924, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 22925, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 22926, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 22927, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:sea_lantern": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10724 + } + ] + }, + "minecraft:sea_pickle": { + "definition": { + "type": "minecraft:sea_pickle", + "properties": {} + }, + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12933, + "properties": { + "pickles": "1", + "waterlogged": "true" + } + }, + { + "id": 12934, + "properties": { + "pickles": "1", + "waterlogged": "false" + } + }, + { + "id": 12935, + "properties": { + "pickles": "2", + "waterlogged": "true" + } + }, + { + "id": 12936, + "properties": { + "pickles": "2", + "waterlogged": "false" + } + }, + { + "id": 12937, + "properties": { + "pickles": "3", + "waterlogged": "true" + } + }, + { + "id": 12938, + "properties": { + "pickles": "3", + "waterlogged": "false" + } + }, + { + "id": 12939, + "properties": { + "pickles": "4", + "waterlogged": "true" + } + }, + { + "id": 12940, + "properties": { + "pickles": "4", + "waterlogged": "false" + } + } + ] + }, + "minecraft:seagrass": { + "definition": { + "type": "minecraft:seagrass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2008 + } + ] + }, + "minecraft:short_grass": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2005 + } + ] + }, + "minecraft:shroomlight": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18610 + } + ] + }, + "minecraft:shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12562, + "properties": { + "facing": "north" + } + }, + { + "id": 12563, + "properties": { + "facing": "east" + } + }, + { + "id": 12564, + "properties": { + "facing": "south" + } + }, + { + "id": 12565, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12566, + "properties": { + "facing": "up" + } + }, + { + "id": 12567, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:skeleton_skull": { + "definition": { + "type": "minecraft:skull", + "kind": "skeleton", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "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" + } + } + ] + }, + "minecraft:skeleton_wall_skull": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "skeleton", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8859, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8860, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8861, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8862, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8863, + "properties": { + "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" + } + } + ] + }, + "minecraft:slime_block": { + "definition": { + "type": "minecraft:slime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10364 + } + ] + }, + "minecraft:small_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "aabb_offset": 4.0, + "height": 3.0, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21069, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 21070, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21071, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21072, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 21073, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21074, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21075, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21076, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21077, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21078, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 21079, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 21080, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:small_dripleaf": { + "definition": { + "type": "minecraft:small_dripleaf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24884, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24885, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24886, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24887, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24888, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24889, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24890, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24891, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24892, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24893, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24894, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24895, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 24896, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 24897, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 24898, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 24899, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smithing_table": { + "definition": { + "type": "minecraft:smithing_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18466 + } + ] + }, + "minecraft:smoker": { + "definition": { + "type": "minecraft:smoker", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18420, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 18421, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 18422, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 18423, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 18424, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 18425, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 18426, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 18427, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:smooth_basalt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26557 + } + ] + }, + "minecraft:smooth_quartz": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11308 + } + ] + }, + "minecraft:smooth_quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14124, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14125, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14126, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14127, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14128, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14129, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_quartz" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13602, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13603, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13604, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13605, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13606, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13607, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13608, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13609, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13610, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13611, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13612, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13613, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13614, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13615, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13616, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13617, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13618, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13619, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13620, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13621, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13622, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13623, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13624, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13625, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13626, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13627, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13628, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13629, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13630, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13631, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13632, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13633, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13634, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13635, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13636, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13637, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13638, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13639, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13640, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13641, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13642, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13643, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13644, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13645, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13646, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13647, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13648, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13649, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13650, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13651, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13652, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13653, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13654, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13655, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13656, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13657, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13658, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13659, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13660, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13661, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13662, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13663, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13664, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13665, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13666, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13667, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13668, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13669, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13670, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13671, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13672, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13673, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13674, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13675, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13676, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13677, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13678, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13679, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13680, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13681, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11309 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14088, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14089, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14090, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14091, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14092, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14093, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_red_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13042, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13043, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13044, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13045, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13046, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13047, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13048, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13049, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13050, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13051, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13052, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13053, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13054, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13055, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13056, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13057, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13058, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13059, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13060, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13061, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13062, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13063, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13064, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13065, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13066, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13067, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13068, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13069, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13070, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13071, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13072, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13073, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13074, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13075, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13076, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13077, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13078, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13079, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13080, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13081, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13082, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13083, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13084, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13085, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13086, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13087, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13088, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13089, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13090, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13091, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13092, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13093, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13094, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13095, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13096, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13097, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13098, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13099, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13100, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13101, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13102, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13103, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13104, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13105, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13106, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13107, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13108, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13109, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13110, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13111, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13112, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13113, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13116, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13117, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13118, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11307 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14118, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 14119, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 14120, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14121, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 14122, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 14123, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13522, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13523, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13524, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13525, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13526, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13527, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13528, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13529, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13530, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13531, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13532, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13533, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13534, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13535, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13536, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13537, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13538, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13539, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13540, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13541, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13542, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13543, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13544, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13545, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13546, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13547, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13548, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13549, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13550, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13551, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13552, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13553, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13554, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13555, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13556, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13557, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13559, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13561, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13562, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13563, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13564, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13565, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13566, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13567, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13568, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13569, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13570, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13571, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13572, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13573, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13574, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13575, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13576, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13577, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13579, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13580, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13581, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13582, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13583, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13584, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13585, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13586, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13587, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13588, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13589, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13590, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13591, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13592, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13593, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13594, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13595, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13596, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13597, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13599, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13601, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11306 + } + ] + }, + "minecraft:smooth_stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11228, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11229, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11230, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11231, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11232, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11233, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sniffer_egg": { + "definition": { + "type": "minecraft:sniffer_egg", + "properties": {} + }, + "properties": { + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 12800, + "properties": { + "hatch": "0" + } + }, + { + "id": 12801, + "properties": { + "hatch": "1" + } + }, + { + "id": 12802, + "properties": { + "hatch": "2" + } + } + ] + }, + "minecraft:snow": { + "definition": { + "type": "minecraft:snow_layer", + "properties": {} + }, + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 5772, + "properties": { + "layers": "1" + } + }, + { + "id": 5773, + "properties": { + "layers": "2" + } + }, + { + "id": 5774, + "properties": { + "layers": "3" + } + }, + { + "id": 5775, + "properties": { + "layers": "4" + } + }, + { + "id": 5776, + "properties": { + "layers": "5" + } + }, + { + "id": 5777, + "properties": { + "layers": "6" + } + }, + { + "id": 5778, + "properties": { + "layers": "7" + } + }, + { + "id": 5779, + "properties": { + "layers": "8" + } + } + ] + }, + "minecraft:snow_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5781 + } + ] + }, + "minecraft:soul_campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 2, + "properties": {}, + "spawn_particles": false + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18543, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18544, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18545, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18546, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18547, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18548, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18549, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18550, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18551, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18552, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18553, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18554, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18555, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18556, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18557, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18558, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18559, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18560, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18561, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18562, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18563, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18564, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18565, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18566, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18567, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18568, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18569, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18570, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 18571, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 18572, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 18573, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 18574, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_fire": { + "definition": { + "type": "minecraft:soul_fire", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2872 + } + ] + }, + "minecraft:soul_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18507, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 18508, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 18509, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18510, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_sand": { + "definition": { + "type": "minecraft:soul_sand", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5850 + } + ] + }, + "minecraft:soul_soil": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5851 + } + ] + }, + "minecraft:soul_torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5858 + } + ] + }, + "minecraft:soul_wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 5859, + "properties": { + "facing": "north" + } + }, + { + "id": 5860, + "properties": { + "facing": "south" + } + }, + { + "id": 5861, + "properties": { + "facing": "west" + } + }, + { + "id": 5862, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:spawner": { + "definition": { + "type": "minecraft:spawner", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2873 + } + ] + }, + "minecraft:sponge": { + "definition": { + "type": "minecraft:sponge", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 517 + } + ] + }, + "minecraft:spore_blossom": { + "definition": { + "type": "minecraft:spore_blossom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24823 + } + ] + }, + "minecraft:spruce_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "spruce", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8635, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8636, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8637, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8638, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8639, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8640, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8641, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8642, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8643, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8644, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8645, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8646, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8647, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8648, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8649, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8650, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 8651, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 8652, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 8653, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 8654, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 8655, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 8656, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 8657, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 8658, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11822, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11823, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11824, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11825, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11826, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11827, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11828, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11829, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11830, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11831, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11832, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11833, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11834, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11835, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11836, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11837, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11838, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11839, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11840, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11841, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11842, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11843, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11844, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11845, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11846, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11847, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11848, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11849, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11850, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11851, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11852, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11853, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11854, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11855, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11856, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11857, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11858, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11859, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11860, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11861, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11862, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11863, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11864, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11865, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11866, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11867, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11868, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11869, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11870, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11871, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11872, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11873, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11874, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11875, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11876, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11877, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 11878, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 11879, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 11880, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 11881, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 11882, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 11883, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 11884, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 11885, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11566, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11567, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11568, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11569, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11570, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11571, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11572, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11573, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11574, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11575, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11576, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11577, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11578, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11579, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11580, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11581, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11582, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11583, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11584, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11585, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11586, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11587, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11588, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11589, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11590, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11591, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11592, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11593, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11594, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11595, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11596, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11597, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:spruce_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11310, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11311, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11312, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11313, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11314, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11315, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11316, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 11317, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11318, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11319, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11320, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11321, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11322, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11323, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11324, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11325, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11326, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11327, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11328, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11329, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11330, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11331, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11332, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11333, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 11334, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 11335, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 11336, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 11337, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 11338, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 11339, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 11340, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 11341, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4898, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 4899, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4900, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4901, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4902, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4903, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4904, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4905, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4906, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4907, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4908, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4909, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4910, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4911, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4912, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4913, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4914, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4915, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4916, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4917, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4918, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4919, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4920, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4921, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4922, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4923, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4924, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4925, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4926, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4927, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4928, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4929, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 4930, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4931, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4932, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4933, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4934, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4935, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4936, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4937, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4938, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4939, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4940, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4941, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4942, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4943, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4944, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4945, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4946, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4947, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4948, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4949, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4950, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4951, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4952, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4953, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4954, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4955, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4956, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4957, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4958, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4959, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4960, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4961, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_leaves": { + "definition": { + "type": "minecraft:leaves", + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 265, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 266, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 267, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 268, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 269, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 270, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 271, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 272, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 273, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 274, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 275, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 276, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 277, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 278, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 279, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 280, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 281, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 282, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 283, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 284, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 285, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 286, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 287, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 288, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 289, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 290, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 291, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 292, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 133, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 134, + "properties": { + "axis": "y" + } + }, + { + "id": 135, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:spruce_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 16 + } + ] + }, + "minecraft:spruce_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5718, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5719, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:spruce_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "spruce" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 27, + "properties": { + "stage": "0" + } + }, + { + "id": 28, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:spruce_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4334, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4335, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 4336, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 4337, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 4338, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 4339, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 4340, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 4341, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 4342, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 4343, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 4344, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 4345, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 4346, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 4347, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 4348, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 4349, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 4350, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 4351, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 4352, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 4353, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 4354, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 4355, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 4356, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 4357, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 4358, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 4359, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 4360, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 4361, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 4362, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 4363, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 4364, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 4365, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11168, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11169, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11170, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11171, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11172, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11173, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:spruce_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7666, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7667, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7668, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7669, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7670, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7671, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7672, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7673, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7674, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7675, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7676, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7677, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7678, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7679, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7680, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7681, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7682, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7683, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7684, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7685, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7686, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7687, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7688, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7689, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7690, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7691, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7692, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7693, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7694, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7695, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7696, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7697, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7698, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7699, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7700, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7701, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7702, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7703, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7704, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7705, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7706, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7707, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7708, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7709, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7710, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7711, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7712, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7713, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7714, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7715, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7716, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7717, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7718, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7719, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7720, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7721, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7722, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7723, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7724, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7725, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7726, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7727, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7728, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7729, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7730, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7731, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7732, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7733, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7734, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7735, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7736, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7737, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7738, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7739, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7740, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7741, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7742, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7743, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7744, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7745, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6025, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6026, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6027, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6028, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6029, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6030, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6031, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6032, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6033, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6034, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6035, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6036, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6037, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6038, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6039, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6040, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6041, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6042, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6043, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6044, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6045, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6046, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6047, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6048, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6049, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6050, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6051, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6052, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6053, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6054, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6055, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6056, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6057, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6058, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6059, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6060, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6061, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6062, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6063, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6064, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6065, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6066, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6067, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6068, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6069, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6070, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6071, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6072, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6073, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6074, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6075, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6076, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6077, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6078, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6079, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6080, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6081, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6082, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6083, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6084, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 6085, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 6086, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 6087, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 6088, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5546, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5547, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5548, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5549, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5550, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5551, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5552, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5553, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 4770, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 4771, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 4772, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 4773, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 4774, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4775, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4776, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4777, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 192, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 193, + "properties": { + "axis": "y" + } + }, + { + "id": 194, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:sticky_piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": true + }, + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 1992, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 1993, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 1994, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 1995, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 1996, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 1997, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 1998, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 1999, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2000, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2001, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2002, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2003, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 1 + } + ] + }, + "minecraft:stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11264, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11265, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11266, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11267, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11268, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11269, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7109, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7110, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7111, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7112, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7113, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7114, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7115, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7116, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7117, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7118, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7119, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7120, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7121, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7122, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7123, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7124, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7125, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7129, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7130, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7131, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7132, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7133, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7134, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7135, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7136, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7137, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7138, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7139, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7140, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7141, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7142, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7143, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7144, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7145, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7149, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7150, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7151, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7152, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7153, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7154, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7155, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7156, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7157, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7158, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7159, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7160, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7161, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7162, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7163, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7164, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7165, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7169, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7170, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7171, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7172, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7173, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7174, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7175, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7176, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7177, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7178, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 7179, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 7180, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 7181, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 7182, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 7183, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 7184, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 7185, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 7186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 7187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 7188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 15780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15781, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15782, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 15783, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15784, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15785, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15786, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15787, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15788, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15789, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15790, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15791, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15793, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15794, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15795, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15796, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15797, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15798, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15799, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15800, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15801, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15802, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15803, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15805, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15806, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15807, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15808, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15809, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15810, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15811, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15812, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15813, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15814, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15815, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15817, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15818, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15819, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15820, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15821, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15822, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15823, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15824, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15825, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15826, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15827, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15829, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15830, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15831, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15832, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15833, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15834, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15835, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15836, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15837, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15838, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15839, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15841, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15842, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15843, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15844, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15845, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15846, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15847, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15848, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15849, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 15850, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 15851, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15853, + "properties": { + "east": "none", + "north": "tall", + "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", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 15996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 15997, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 15998, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 15999, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16000, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16001, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16002, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16003, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16004, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16005, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16006, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16007, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16009, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16010, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16011, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16012, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16013, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16014, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16015, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16016, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16017, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16018, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16019, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16021, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16022, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16023, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16024, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16025, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16026, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16027, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16028, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16029, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16030, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16031, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16033, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16034, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16035, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16036, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16037, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16038, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16039, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16040, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16041, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16042, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16043, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16045, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16046, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16047, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16048, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16049, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16050, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16051, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16052, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16053, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16054, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16055, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16057, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16058, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16059, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16060, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16061, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16062, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16063, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16064, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16065, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16066, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16067, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16069, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16070, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16071, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16072, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16073, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16074, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16075, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16076, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16077, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16078, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16079, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16081, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16082, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16083, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16084, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16085, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16086, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16087, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16088, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16089, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16090, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16091, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16093, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16094, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16095, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16096, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16097, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16098, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16099, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16100, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16101, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16102, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16103, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6537 + } + ] + }, + "minecraft:stone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5748, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5749, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5750, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5751, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5752, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5753, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5754, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5755, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5756, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 5757, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5758, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5759, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5760, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5761, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5762, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5763, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 5764, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 5765, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 5766, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 5767, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 5768, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 5769, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 5770, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 5771, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:stone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "stone", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5650, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 5651, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11222, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 11223, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 11224, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11225, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 11226, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 11227, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13442, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13443, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13444, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13445, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13446, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13447, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13448, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13449, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13450, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13451, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13452, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13453, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13454, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13455, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13456, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13457, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13458, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13459, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13460, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13461, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13462, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13463, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13464, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13465, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13466, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13467, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13468, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13469, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13470, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13471, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13472, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13473, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13474, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13475, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13476, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13477, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13478, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13479, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13480, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13481, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13482, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13483, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13484, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13485, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13486, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13487, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13488, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13489, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13490, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13491, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13492, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13493, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13494, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13495, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13496, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13497, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13498, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13499, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13500, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13501, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13502, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13503, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13504, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13505, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13506, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13507, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13508, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13509, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13510, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13511, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13512, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13513, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13514, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13515, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13516, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13517, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13518, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13519, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13520, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13521, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stonecutter": { + "definition": { + "type": "minecraft:stonecutter", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 18467, + "properties": { + "facing": "north" + } + }, + { + "id": 18468, + "properties": { + "facing": "south" + } + }, + { + "id": 18469, + "properties": { + "facing": "west" + } + }, + { + "id": 18470, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:stripped_acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 171, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 172, + "properties": { + "axis": "y" + } + }, + { + "id": 173, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 225, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 226, + "properties": { + "axis": "y" + } + }, + { + "id": 227, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 186, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 187, + "properties": { + "axis": "y" + } + }, + { + "id": 188, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 165, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 166, + "properties": { + "axis": "y" + } + }, + { + "id": 167, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 219, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 220, + "properties": { + "axis": "y" + } + }, + { + "id": 221, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 174, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 175, + "properties": { + "axis": "y" + } + }, + { + "id": 176, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 228, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 229, + "properties": { + "axis": "y" + } + }, + { + "id": 230, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18605, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18606, + "properties": { + "axis": "y" + } + }, + { + "id": 18607, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18599, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18600, + "properties": { + "axis": "y" + } + }, + { + "id": 18601, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 177, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 178, + "properties": { + "axis": "y" + } + }, + { + "id": 179, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 231, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 232, + "properties": { + "axis": "y" + } + }, + { + "id": 233, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 168, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 169, + "properties": { + "axis": "y" + } + }, + { + "id": 170, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 222, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 223, + "properties": { + "axis": "y" + } + }, + { + "id": 224, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 183, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 184, + "properties": { + "axis": "y" + } + }, + { + "id": 185, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 234, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 235, + "properties": { + "axis": "y" + } + }, + { + "id": 236, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 180, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 181, + "properties": { + "axis": "y" + } + }, + { + "id": 182, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 213, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 214, + "properties": { + "axis": "y" + } + }, + { + "id": 215, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 162, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 163, + "properties": { + "axis": "y" + } + }, + { + "id": 164, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 216, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 217, + "properties": { + "axis": "y" + } + }, + { + "id": 218, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18588, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18589, + "properties": { + "axis": "y" + } + }, + { + "id": 18590, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18582, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18583, + "properties": { + "axis": "y" + } + }, + { + "id": 18584, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:structure_block": { + "definition": { + "type": "minecraft:structure", + "properties": {} + }, + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ + { + "id": 19356, + "properties": { + "mode": "save" + } + }, + { + "default": true, + "id": 19357, + "properties": { + "mode": "load" + } + }, + { + "id": 19358, + "properties": { + "mode": "corner" + } + }, + { + "id": 19359, + "properties": { + "mode": "data" + } + } + ] + }, + "minecraft:structure_void": { + "definition": { + "type": "minecraft:structure_void", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12549 + } + ] + }, + "minecraft:sugar_cane": { + "definition": { + "type": "minecraft:sugar_cane", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 5799, + "properties": { + "age": "0" + } + }, + { + "id": 5800, + "properties": { + "age": "1" + } + }, + { + "id": 5801, + "properties": { + "age": "2" + } + }, + { + "id": 5802, + "properties": { + "age": "3" + } + }, + { + "id": 5803, + "properties": { + "age": "4" + } + }, + { + "id": 5804, + "properties": { + "age": "5" + } + }, + { + "id": 5805, + "properties": { + "age": "6" + } + }, + { + "id": 5806, + "properties": { + "age": "7" + } + }, + { + "id": 5807, + "properties": { + "age": "8" + } + }, + { + "id": 5808, + "properties": { + "age": "9" + } + }, + { + "id": 5809, + "properties": { + "age": "10" + } + }, + { + "id": 5810, + "properties": { + "age": "11" + } + }, + { + "id": 5811, + "properties": { + "age": "12" + } + }, + { + "id": 5812, + "properties": { + "age": "13" + } + }, + { + "id": 5813, + "properties": { + "age": "14" + } + }, + { + "id": 5814, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:sunflower": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10747, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10748, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:suspicious_gravel": { + "definition": { + "type": "minecraft:brushable", + "brush_comleted_sound": "minecraft:item.brush.brushing.gravel.complete", + "brush_sound": "minecraft:item.brush.brushing.gravel", + "properties": {}, + "turns_into": "minecraft:gravel" + }, + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 119, + "properties": { + "dusted": "0" + } + }, + { + "id": 120, + "properties": { + "dusted": "1" + } + }, + { + "id": 121, + "properties": { + "dusted": "2" + } + }, + { + "id": 122, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:suspicious_sand": { + "definition": { + "type": "minecraft:brushable", + "brush_comleted_sound": "minecraft:item.brush.brushing.sand.complete", + "brush_sound": "minecraft:item.brush.brushing.sand", + "properties": {}, + "turns_into": "minecraft:sand" + }, + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 113, + "properties": { + "dusted": "0" + } + }, + { + "id": 114, + "properties": { + "dusted": "1" + } + }, + { + "id": 115, + "properties": { + "dusted": "2" + } + }, + { + "id": 116, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:sweet_berry_bush": { + "definition": { + "type": "minecraft:sweet_berry_bush", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 18575, + "properties": { + "age": "0" + } + }, + { + "id": 18576, + "properties": { + "age": "1" + } + }, + { + "id": 18577, + "properties": { + "age": "2" + } + }, + { + "id": 18578, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:tall_grass": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 10755, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 10756, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:tall_seagrass": { + "definition": { + "type": "minecraft:tall_seagrass", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 2009, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 2010, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:target": { + "definition": { + "type": "minecraft:target", + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 19381, + "properties": { + "power": "0" + } + }, + { + "id": 19382, + "properties": { + "power": "1" + } + }, + { + "id": 19383, + "properties": { + "power": "2" + } + }, + { + "id": 19384, + "properties": { + "power": "3" + } + }, + { + "id": 19385, + "properties": { + "power": "4" + } + }, + { + "id": 19386, + "properties": { + "power": "5" + } + }, + { + "id": 19387, + "properties": { + "power": "6" + } + }, + { + "id": 19388, + "properties": { + "power": "7" + } + }, + { + "id": 19389, + "properties": { + "power": "8" + } + }, + { + "id": 19390, + "properties": { + "power": "9" + } + }, + { + "id": 19391, + "properties": { + "power": "10" + } + }, + { + "id": 19392, + "properties": { + "power": "11" + } + }, + { + "id": 19393, + "properties": { + "power": "12" + } + }, + { + "id": 19394, + "properties": { + "power": "13" + } + }, + { + "id": 19395, + "properties": { + "power": "14" + } + }, + { + "id": 19396, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10744 + } + ] + }, + "minecraft:tinted_glass": { + "definition": { + "type": "minecraft:tinted_glass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22317 + } + ] + }, + "minecraft:tnt": { + "definition": { + "type": "minecraft:tnt", + "properties": {} + }, + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2094, + "properties": { + "unstable": "true" + } + }, + { + "default": true, + "id": 2095, + "properties": { + "unstable": "false" + } + } + ] + }, + "minecraft:torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2355 + } + ] + }, + "minecraft:torchflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "states": [ + { + "default": true, + "id": 2076 + } + ] + }, + "minecraft:torchflower_crop": { + "definition": { + "type": "minecraft:torchflower_crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 12495, + "properties": { + "age": "0" + } + }, + { + "id": 12496, + "properties": { + "age": "1" + } + } + ] + }, + "minecraft:trapped_chest": { + "definition": { + "type": "minecraft:trapped_chest", + "properties": {} + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9119, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9120, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9121, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 9122, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9123, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 9124, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9125, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9126, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9127, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9128, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9129, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9130, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9131, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9132, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9133, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9134, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9135, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9136, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9137, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9138, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 9139, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9140, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 9141, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9142, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:trial_spawner": { + "definition": { + "type": "minecraft:trial_spawner", + "properties": {} + }, + "properties": { + "ominous": [ + "true", + "false" + ], + "trial_spawner_state": [ + "inactive", + "waiting_for_players", + "active", + "waiting_for_reward_ejection", + "ejecting_reward", + "cooldown" + ] + }, + "states": [ + { + "id": 26638, + "properties": { + "ominous": "true", + "trial_spawner_state": "inactive" + } + }, + { + "id": 26639, + "properties": { + "ominous": "true", + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 26640, + "properties": { + "ominous": "true", + "trial_spawner_state": "active" + } + }, + { + "id": 26641, + "properties": { + "ominous": "true", + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 26642, + "properties": { + "ominous": "true", + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 26643, + "properties": { + "ominous": "true", + "trial_spawner_state": "cooldown" + } + }, + { + "default": true, + "id": 26644, + "properties": { + "ominous": "false", + "trial_spawner_state": "inactive" + } + }, + { + "id": 26645, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 26646, + "properties": { + "ominous": "false", + "trial_spawner_state": "active" + } + }, + { + "id": 26647, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 26648, + "properties": { + "ominous": "false", + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 26649, + "properties": { + "ominous": "false", + "trial_spawner_state": "cooldown" + } + } + ] + }, + "minecraft:tripwire": { + "definition": { + "type": "minecraft:tripwire", + "hook": "minecraft:tripwire_hook", + "properties": {} + }, + "properties": { + "attached": [ + "true", + "false" + ], + "disarmed": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7537, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7538, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7539, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7540, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7541, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7542, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7543, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7544, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7545, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7546, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7547, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7548, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7549, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7550, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7551, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7552, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7553, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7554, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7555, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7556, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7557, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7558, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7559, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7560, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7561, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7562, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7563, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7564, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7565, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7566, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7567, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7568, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7569, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7570, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7571, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7572, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7573, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7574, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7575, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7576, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7577, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7578, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7579, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7580, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7581, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7582, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7583, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7584, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7585, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7586, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7587, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7588, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7589, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7590, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7591, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7592, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7593, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7594, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7595, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7596, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7597, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7598, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7599, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7600, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7601, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7602, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7603, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7604, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7605, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7606, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7607, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7608, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7609, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7610, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7611, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7612, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7613, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7614, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7615, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7616, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7617, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7618, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7619, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7620, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7621, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7622, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7623, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7624, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7625, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7626, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7627, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7628, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7629, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7630, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7631, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7632, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7633, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7634, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7635, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7636, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7637, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7638, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7639, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7640, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7641, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7642, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7643, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7644, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7645, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7646, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7647, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7648, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7649, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7650, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7651, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7652, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7653, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7654, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7655, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 7656, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 7657, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 7658, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 7659, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 7660, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 7661, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 7662, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 7663, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7664, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + } + ] + }, + "minecraft:tripwire_hook": { + "definition": { + "type": "minecraft:trip_wire_hook", + "properties": {} + }, + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7521, + "properties": { + "attached": "true", + "facing": "north", + "powered": "true" + } + }, + { + "id": 7522, + "properties": { + "attached": "true", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7523, + "properties": { + "attached": "true", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7524, + "properties": { + "attached": "true", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7525, + "properties": { + "attached": "true", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7526, + "properties": { + "attached": "true", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7527, + "properties": { + "attached": "true", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7528, + "properties": { + "attached": "true", + "facing": "east", + "powered": "false" + } + }, + { + "id": 7529, + "properties": { + "attached": "false", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 7530, + "properties": { + "attached": "false", + "facing": "north", + "powered": "false" + } + }, + { + "id": 7531, + "properties": { + "attached": "false", + "facing": "south", + "powered": "true" + } + }, + { + "id": 7532, + "properties": { + "attached": "false", + "facing": "south", + "powered": "false" + } + }, + { + "id": 7533, + "properties": { + "attached": "false", + "facing": "west", + "powered": "true" + } + }, + { + "id": 7534, + "properties": { + "attached": "false", + "facing": "west", + "powered": "false" + } + }, + { + "id": 7535, + "properties": { + "attached": "false", + "facing": "east", + "powered": "true" + } + }, + { + "id": 7536, + "properties": { + "attached": "false", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:tube_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_tube_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12823, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12824, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_tube_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12808 + } + ] + }, + "minecraft:tube_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_tube_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12843, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 12844, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_tube_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 12893, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 12894, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 12895, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 12896, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 12897, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 12898, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 12899, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 12900, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21081 + } + ] + }, + "minecraft:tuff_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21905, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21906, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21907, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21908, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21909, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21910, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21911, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21912, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21913, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21914, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21915, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21916, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21917, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21918, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21919, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21920, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21924, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21925, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21926, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21927, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21928, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21929, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21930, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21931, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21932, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21933, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21934, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21935, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21936, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21937, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21938, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21939, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21940, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21947, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21948, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21949, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21950, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21951, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21952, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21953, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21954, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21955, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21956, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21957, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21958, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21959, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21960, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21967, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21968, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21969, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21970, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21971, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21972, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21973, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21974, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21975, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21976, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21977, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21978, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21979, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21980, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21985, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21986, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21987, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21988, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21989, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21990, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21991, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21992, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21993, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21994, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21995, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21996, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21997, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21998, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21999, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22000, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22001, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22002, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22003, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22004, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22005, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22006, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22007, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22008, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22009, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22010, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22011, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22012, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22013, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22014, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22015, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22016, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22017, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22018, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22019, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22020, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22021, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22022, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22023, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22024, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22025, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22026, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22027, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22028, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22029, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22030, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22031, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22032, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22033, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22034, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22035, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22036, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22037, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22038, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22039, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22040, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22041, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22042, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22043, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22044, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22045, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22046, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22047, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22048, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22049, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22050, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22051, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22052, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22053, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22054, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22055, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22056, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22057, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22058, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22059, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22060, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22061, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22062, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22063, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22064, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22065, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22066, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22067, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22068, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22069, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22070, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22071, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22072, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22073, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22074, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22075, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22076, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22077, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22078, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22079, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22080, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22081, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22082, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22083, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22084, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22085, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22086, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22089, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22090, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22091, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22092, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22093, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22094, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22095, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22096, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22097, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22098, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22099, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22100, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22101, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22102, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22103, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22104, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22105, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22106, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22107, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22108, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22109, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22110, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22111, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22112, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22113, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22114, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22115, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22116, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22117, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22118, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22119, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22120, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22121, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22122, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22123, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22124, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22125, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22126, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22127, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22128, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22129, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22130, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22131, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22132, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22133, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22134, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22135, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22136, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22137, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22138, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22139, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22140, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22141, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22142, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22143, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22144, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22145, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22146, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22147, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22148, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22149, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22150, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22151, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22152, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22153, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22154, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22155, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22156, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22157, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22158, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22159, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22160, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22161, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22162, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22163, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22164, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22165, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22166, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22167, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22168, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22169, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22170, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22171, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22172, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22173, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22174, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22175, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22176, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22177, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22178, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22179, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22180, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22181, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22182, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22183, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22184, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22185, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22186, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22187, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22188, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22189, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22190, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22191, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22192, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22193, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22194, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22197, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22198, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22199, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22200, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22201, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22202, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22203, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22204, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22205, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22206, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22207, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22208, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22209, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22210, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22211, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22212, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22213, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22214, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22215, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22216, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22217, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22218, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22219, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22220, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22221, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22222, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22223, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22224, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22225, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22226, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22227, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22228, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22229, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22230, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22233, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22234, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22235, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22236, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22237, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22238, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22239, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22240, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22241, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22242, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22243, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22244, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22245, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22246, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22247, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22248, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22249, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22250, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22251, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22252, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22253, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22254, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22255, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22256, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22257, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22258, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22259, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22260, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22261, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22262, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22263, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22264, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22265, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22266, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22269, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22270, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22271, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22272, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22273, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22274, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22275, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22276, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22277, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22278, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22279, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22280, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22281, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22282, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22283, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22284, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22285, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22286, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22287, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22288, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22289, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22290, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22293, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22294, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22295, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22296, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22297, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22298, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22299, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22300, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22301, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22302, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22305, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22306, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22307, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22308, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22309, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22310, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22311, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22312, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22313, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22314, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21904 + } + ] + }, + "minecraft:tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21082, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21083, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21084, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21085, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21086, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21087, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21088, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21089, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21090, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21091, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21092, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21093, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21094, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21095, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21096, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21097, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21098, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21099, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21100, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21101, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21102, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21103, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21104, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21105, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21106, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21107, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21108, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21109, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21110, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21111, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21112, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21113, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21114, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21115, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21116, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21117, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21118, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21119, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21120, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21121, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21122, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21123, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21124, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21125, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21126, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21127, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21128, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21129, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21130, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21131, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21132, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21133, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21134, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21135, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21136, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21137, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21138, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21139, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21140, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21141, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21142, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21143, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21144, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21145, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21146, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21147, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21148, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21149, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21150, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21151, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21152, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21153, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21154, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21155, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21156, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21157, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21158, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21159, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21160, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21161, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21162, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21163, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21164, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21165, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21166, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21167, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21168, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21169, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21170, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21171, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21172, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21173, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21174, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21175, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21176, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21177, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21178, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21179, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21180, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21181, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21182, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21183, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21184, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21185, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21186, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21187, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21188, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21189, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21190, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21191, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21192, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21193, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21194, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21195, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21196, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21197, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21198, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21199, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21200, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21201, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21202, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21203, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21204, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21205, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21206, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21207, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21208, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21209, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21210, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21211, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21212, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21213, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21214, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21215, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21216, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21217, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21218, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21219, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21220, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21221, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21222, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21223, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21224, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21225, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21226, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21227, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21228, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21229, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21230, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21231, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21232, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21233, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21234, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21235, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21236, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21237, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21238, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21239, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21240, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21241, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21242, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21243, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21244, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21245, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21246, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21247, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21248, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21249, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21250, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21251, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21252, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21253, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21254, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21255, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21256, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21257, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21258, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21259, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21260, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21261, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21262, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21263, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21264, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21265, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21266, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21267, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21268, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21269, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21270, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21271, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21272, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21273, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21274, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21275, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21276, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21277, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21278, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21279, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21280, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21281, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21282, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21283, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21284, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21285, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21286, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21287, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21288, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21289, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21290, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21291, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21292, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21293, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21294, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21295, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21296, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21297, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21298, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21299, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21300, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21301, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21302, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21303, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21304, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21305, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21306, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21307, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21308, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21309, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21310, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21311, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21312, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21313, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21314, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21315, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21316, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21317, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21318, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21319, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21320, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21321, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21322, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21323, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21324, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21325, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21326, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21327, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21328, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21329, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21330, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21331, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21332, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21333, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21334, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21335, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21336, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21337, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21338, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21339, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21340, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21341, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21342, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21343, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21344, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21345, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21346, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21347, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21348, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21349, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21350, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21351, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21352, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21353, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21354, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21355, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21356, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21357, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21358, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21359, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21360, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21361, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21362, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21363, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21364, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21365, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21366, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21367, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21368, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21369, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21370, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21371, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21372, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21373, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21374, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21375, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21376, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21377, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21378, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21379, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21380, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21381, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21382, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21383, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21384, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21385, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21386, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21387, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21388, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21389, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21390, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21391, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21392, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21393, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21394, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21395, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21396, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21397, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21398, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21399, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21400, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21401, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21402, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21403, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21404, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21405, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21406, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21407, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21408, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21409, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21410, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21411, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21412, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21413, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21414, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21415, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21416, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21417, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21418, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21419, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21420, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21421, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21422, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21423, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21424, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21425, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21426, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21427, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21428, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21429, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21430, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21431, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21432, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21433, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21434, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21435, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21436, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21437, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21438, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21439, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21440, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21441, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21442, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21443, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21444, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21445, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21446, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21447, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21448, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21449, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21450, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21451, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21452, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21453, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21454, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21455, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21456, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21457, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21458, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21459, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21460, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21461, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21462, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21463, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21464, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21465, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21466, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21467, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21468, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21469, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21470, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21471, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21472, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21473, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21474, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21475, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21476, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21477, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21478, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21479, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21480, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21481, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21482, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21483, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21484, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21485, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21486, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21487, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21488, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21489, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21490, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21491, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:turtle_egg": { + "definition": { + "type": "minecraft:turtle_egg", + "properties": {} + }, + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 12788, + "properties": { + "eggs": "1", + "hatch": "0" + } + }, + { + "id": 12789, + "properties": { + "eggs": "1", + "hatch": "1" + } + }, + { + "id": 12790, + "properties": { + "eggs": "1", + "hatch": "2" + } + }, + { + "id": 12791, + "properties": { + "eggs": "2", + "hatch": "0" + } + }, + { + "id": 12792, + "properties": { + "eggs": "2", + "hatch": "1" + } + }, + { + "id": 12793, + "properties": { + "eggs": "2", + "hatch": "2" + } + }, + { + "id": 12794, + "properties": { + "eggs": "3", + "hatch": "0" + } + }, + { + "id": 12795, + "properties": { + "eggs": "3", + "hatch": "1" + } + }, + { + "id": 12796, + "properties": { + "eggs": "3", + "hatch": "2" + } + }, + { + "id": 12797, + "properties": { + "eggs": "4", + "hatch": "0" + } + }, + { + "id": 12798, + "properties": { + "eggs": "4", + "hatch": "1" + } + }, + { + "id": 12799, + "properties": { + "eggs": "4", + "hatch": "2" + } + } + ] + }, + "minecraft:twisting_vines": { + "definition": { + "type": "minecraft:twisting_vines", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 18638, + "properties": { + "age": "0" + } + }, + { + "id": 18639, + "properties": { + "age": "1" + } + }, + { + "id": 18640, + "properties": { + "age": "2" + } + }, + { + "id": 18641, + "properties": { + "age": "3" + } + }, + { + "id": 18642, + "properties": { + "age": "4" + } + }, + { + "id": 18643, + "properties": { + "age": "5" + } + }, + { + "id": 18644, + "properties": { + "age": "6" + } + }, + { + "id": 18645, + "properties": { + "age": "7" + } + }, + { + "id": 18646, + "properties": { + "age": "8" + } + }, + { + "id": 18647, + "properties": { + "age": "9" + } + }, + { + "id": 18648, + "properties": { + "age": "10" + } + }, + { + "id": 18649, + "properties": { + "age": "11" + } + }, + { + "id": 18650, + "properties": { + "age": "12" + } + }, + { + "id": 18651, + "properties": { + "age": "13" + } + }, + { + "id": 18652, + "properties": { + "age": "14" + } + }, + { + "id": 18653, + "properties": { + "age": "15" + } + }, + { + "id": 18654, + "properties": { + "age": "16" + } + }, + { + "id": 18655, + "properties": { + "age": "17" + } + }, + { + "id": 18656, + "properties": { + "age": "18" + } + }, + { + "id": 18657, + "properties": { + "age": "19" + } + }, + { + "id": 18658, + "properties": { + "age": "20" + } + }, + { + "id": 18659, + "properties": { + "age": "21" + } + }, + { + "id": 18660, + "properties": { + "age": "22" + } + }, + { + "id": 18661, + "properties": { + "age": "23" + } + }, + { + "id": 18662, + "properties": { + "age": "24" + } + }, + { + "id": 18663, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:twisting_vines_plant": { + "definition": { + "type": "minecraft:twisting_vines_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18664 + } + ] + }, + "minecraft:vault": { + "definition": { + "type": "minecraft:vault", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "ominous": [ + "true", + "false" + ], + "vault_state": [ + "inactive", + "active", + "unlocking", + "ejecting" + ] + }, + "states": [ + { + "id": 26650, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26651, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26652, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26653, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "default": true, + "id": 26654, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26655, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26656, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26657, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 26658, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26659, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26660, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26661, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 26662, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26663, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26664, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26665, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 26666, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26667, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26668, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26669, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 26670, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26671, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26672, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26673, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 26674, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 26675, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 26676, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 26677, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 26678, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 26679, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 26680, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 26681, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "ejecting" + } + } + ] + }, + "minecraft:verdant_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 26566, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 26567, + "properties": { + "axis": "y" + } + }, + { + "id": 26568, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:vine": { + "definition": { + "type": "minecraft:vine", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6837, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6838, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6839, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6840, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6841, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6842, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6843, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6844, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6845, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6846, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6847, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6848, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6849, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6850, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6851, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6852, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6853, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6854, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6855, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6856, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6857, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6858, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6859, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 6860, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 6861, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 6862, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 6863, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 6864, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 6865, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 6866, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 6867, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6868, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:void_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12958 + } + ] + }, + "minecraft:wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 2356, + "properties": { + "facing": "north" + } + }, + { + "id": 2357, + "properties": { + "facing": "south" + } + }, + { + "id": 2358, + "properties": { + "facing": "west" + } + }, + { + "id": 2359, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:warped_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "warped", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19124, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19125, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19126, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19127, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19128, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19129, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19130, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19131, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19132, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 19133, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19134, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19135, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19136, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19137, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19138, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19139, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 19140, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 19141, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 19142, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 19143, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 19144, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 19145, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 19146, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 19147, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:warped_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19212, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19213, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19214, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19215, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19216, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19217, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19218, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19219, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19220, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19221, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19222, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 19223, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19224, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19225, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19226, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19227, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19228, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19229, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19230, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19231, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19232, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19233, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19234, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19235, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19236, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19237, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19238, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19239, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19240, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19241, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19242, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19243, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19244, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19245, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19246, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19247, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19248, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19249, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19250, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19251, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19252, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19253, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19254, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19255, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19256, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19257, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19258, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19259, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19260, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19261, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19262, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19263, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19264, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19265, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19266, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19267, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 19268, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 19269, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 19270, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 19271, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 19272, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 19273, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 19274, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 19275, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18716, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18717, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18718, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18719, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18720, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18721, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18722, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18723, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18724, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18725, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18726, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18727, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18728, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18729, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18730, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18731, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18732, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18733, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18734, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18735, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18736, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18737, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18738, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18739, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18740, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18741, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18742, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 18743, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 18744, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 18745, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 18746, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 18747, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:warped_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18908, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18909, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18910, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18911, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18912, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18913, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18914, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 18915, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18916, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18917, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18918, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18919, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18920, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18921, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18922, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18923, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18924, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18925, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18926, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18927, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18928, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18929, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18930, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18931, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 18932, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 18933, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 18934, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 18935, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 18936, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 18937, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 18938, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 18939, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fungus": { + "definition": { + "type": "minecraft:fungus", + "feature": "minecraft:warped_fungus_planted", + "grows_on": "minecraft:warped_nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18592 + } + ] + }, + "minecraft:warped_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5346, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5347, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5348, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5349, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5350, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5351, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5352, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5353, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5354, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5355, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5356, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5357, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5358, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5359, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5360, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5361, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5362, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5363, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5364, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5365, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5366, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5367, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5368, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5369, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5370, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5371, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5372, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5373, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5374, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5375, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5376, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5377, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5378, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5379, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5380, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5381, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5382, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5383, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5384, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5385, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5386, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5387, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5388, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5389, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5390, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5391, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5392, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5393, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5394, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5395, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5396, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5397, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5398, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5399, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5400, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5401, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5402, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5403, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5404, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5405, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5406, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5407, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5408, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5409, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18585, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18586, + "properties": { + "axis": "y" + } + }, + { + "id": 18587, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18591 + } + ] + }, + "minecraft:warped_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18667 + } + ] + }, + "minecraft:warped_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18682, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 18683, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:warped_roots": { + "definition": { + "type": "minecraft:roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18594 + } + ] + }, + "minecraft:warped_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19308, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19309, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 19310, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 19311, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 19312, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 19313, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 19314, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 19315, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 19316, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 19317, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 19318, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 19319, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 19320, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 19321, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 19322, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 19323, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 19324, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 19325, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 19326, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 19327, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 19328, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 19329, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 19330, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 19331, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 19332, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 19333, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 19334, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 19335, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 19336, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 19337, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 19338, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 19339, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18674, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 18675, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 18676, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18677, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 18678, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 18679, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:warped_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19020, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19021, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19022, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19023, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19024, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19025, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19026, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19027, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19028, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19029, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19030, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19031, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19032, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19033, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19034, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19035, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19036, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19037, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19038, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19039, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19040, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19041, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19042, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19043, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19044, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19045, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19046, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19047, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19048, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19049, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19050, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19051, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19052, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19053, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19054, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19055, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19056, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19057, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19058, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19059, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19060, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19061, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19062, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19063, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19064, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19065, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19066, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19067, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19068, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19069, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19070, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19071, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19072, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19073, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19074, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19075, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19076, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19077, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19078, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19079, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19080, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19081, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19082, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19083, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19084, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19085, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19086, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19087, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19088, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19089, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 19090, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 19091, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 19092, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 19093, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 19094, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 19095, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 19096, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 19097, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 19098, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 19099, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 18579, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 18580, + "properties": { + "axis": "y" + } + }, + { + "id": 18581, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 18812, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18813, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18814, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18815, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18816, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18817, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18818, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18819, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18820, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18821, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18822, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18823, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18824, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18825, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18826, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 18827, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18828, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18829, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18830, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18831, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18832, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18833, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18834, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18835, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18836, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18837, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18838, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18839, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18840, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18841, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18842, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18843, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18844, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18845, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18846, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18847, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18848, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18849, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18850, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18851, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18852, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18853, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18854, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18855, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18856, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18857, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18858, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18859, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18860, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18861, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18862, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18863, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18864, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18865, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18866, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18867, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18868, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18869, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18870, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18871, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 18872, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 18873, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 18874, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 18875, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5610, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5611, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5612, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5613, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5614, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5615, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5616, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5617, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 19348, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 19349, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 19350, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 19351, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 19352, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 19353, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 19354, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 19355, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18593 + } + ] + }, + "minecraft:water": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:water", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 80, + "properties": { + "level": "0" + } + }, + { + "id": 81, + "properties": { + "level": "1" + } + }, + { + "id": 82, + "properties": { + "level": "2" + } + }, + { + "id": 83, + "properties": { + "level": "3" + } + }, + { + "id": 84, + "properties": { + "level": "4" + } + }, + { + "id": 85, + "properties": { + "level": "5" + } + }, + { + "id": 86, + "properties": { + "level": "6" + } + }, + { + "id": 87, + "properties": { + "level": "7" + } + }, + { + "id": 88, + "properties": { + "level": "8" + } + }, + { + "id": 89, + "properties": { + "level": "9" + } + }, + { + "id": 90, + "properties": { + "level": "10" + } + }, + { + "id": 91, + "properties": { + "level": "11" + } + }, + { + "id": 92, + "properties": { + "level": "12" + } + }, + { + "id": 93, + "properties": { + "level": "13" + } + }, + { + "id": 94, + "properties": { + "level": "14" + } + }, + { + "id": 95, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:water_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "water", + "precipitation": "rain", + "properties": {} + }, + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 7399, + "properties": { + "level": "1" + } + }, + { + "id": 7400, + "properties": { + "level": "2" + } + }, + { + "id": 7401, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:waxed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22955 + } + ] + }, + "minecraft:waxed_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23300 + } + ] + }, + "minecraft:waxed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24708, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24709, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24710, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24711, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23908, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23909, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23910, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23911, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23912, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23913, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23914, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23915, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23916, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23917, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23918, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23919, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23920, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23921, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23922, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23923, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23924, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23925, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23926, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23927, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23928, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23929, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23930, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23931, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23932, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23933, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23934, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23935, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23936, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23937, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23938, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23939, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23940, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23941, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23942, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23943, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23944, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23945, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23946, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23947, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23948, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23949, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23950, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23951, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23952, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23953, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23954, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23955, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23956, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23957, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23958, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23959, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23960, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23961, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23962, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23963, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23964, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23965, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23966, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23967, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23968, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23969, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23970, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23971, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24684, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24685, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24420, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24421, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24422, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24423, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24424, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24425, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24426, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24427, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24428, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24429, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24430, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24431, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24432, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24433, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24434, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24435, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24436, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24437, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24438, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24439, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24440, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24441, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24442, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24443, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24444, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24445, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24446, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24447, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24448, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24449, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24450, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24451, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24452, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24453, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24454, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24455, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24456, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24457, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24458, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24459, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24460, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24461, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24462, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24463, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24464, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24465, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24466, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24467, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24468, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24469, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24470, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24471, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24472, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24473, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24474, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24475, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24476, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24477, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24478, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24479, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24480, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24481, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24482, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24483, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23307 + } + ] + }, + "minecraft:waxed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23646, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23647, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23648, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23649, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23650, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23651, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23548, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23549, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23550, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23551, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23552, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23553, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23554, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23555, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23556, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23557, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23558, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23559, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23560, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23561, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23562, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23563, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23564, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23565, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23566, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23567, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23568, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23569, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23570, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23571, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23572, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23573, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23574, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23575, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23576, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23577, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23578, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23579, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23580, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23581, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23582, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23583, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23584, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23585, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23586, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23587, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23588, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23589, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23590, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23591, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23592, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23593, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23594, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23595, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23596, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23597, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23598, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23599, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23600, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23601, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23602, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23603, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23604, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23605, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23606, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23607, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23608, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23609, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23610, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23611, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23612, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23613, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23614, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23615, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23616, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23617, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23618, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23619, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23620, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23621, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23622, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23623, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23624, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23625, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23626, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23627, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22954 + } + ] + }, + "minecraft:waxed_exposed_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23302 + } + ] + }, + "minecraft:waxed_exposed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24712, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24713, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24714, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24715, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23972, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23973, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23974, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23975, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23976, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23977, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23978, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23979, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23980, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23981, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23982, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23983, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23984, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23985, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23986, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23987, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23988, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23989, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23990, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23991, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23992, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23993, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23994, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23995, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23996, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23997, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23998, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23999, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24000, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24001, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24002, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24003, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24004, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24005, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24006, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24007, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24008, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24009, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24010, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24011, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24012, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24013, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24014, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24015, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24016, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24017, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24018, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24019, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24020, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24021, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24022, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24023, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24024, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24025, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24026, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24027, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24028, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24029, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24030, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24031, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24032, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24033, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24034, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24035, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24686, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24687, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24484, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24485, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24486, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24487, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24488, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24489, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24490, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24491, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24492, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24493, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24494, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24495, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24496, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24497, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24498, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24499, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24500, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24501, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24502, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24503, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24504, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24505, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24506, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24507, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24508, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24509, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24510, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24511, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24512, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24513, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24514, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24515, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24516, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24517, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24518, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24519, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24520, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24521, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24522, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24523, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24524, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24525, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24526, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24527, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24528, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24529, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24530, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24531, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24532, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24533, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24534, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24535, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24536, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24537, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24538, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24539, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24540, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24541, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24542, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24543, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24544, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24545, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24546, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24547, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23306 + } + ] + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23640, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23641, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23642, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23643, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23644, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23645, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_exposed_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23468, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23469, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23470, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23471, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23472, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23473, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23474, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23475, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23476, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23477, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23479, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23480, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23481, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23482, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23483, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23484, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23485, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23486, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23487, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23488, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23489, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23490, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23491, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23492, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23493, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23494, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23495, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23496, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23497, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23499, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23500, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23501, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23502, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23503, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23504, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23505, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23506, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23507, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23508, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23509, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23510, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23511, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23512, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23513, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23514, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23515, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23516, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23517, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23519, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23520, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23521, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23522, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23523, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23524, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23525, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23526, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23527, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23528, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23529, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23530, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23531, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23532, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23533, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23534, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23535, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23536, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23537, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23539, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23540, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23541, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23542, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23543, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23544, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23545, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23546, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23547, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22952 + } + ] + }, + "minecraft:waxed_oxidized_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23303 + } + ] + }, + "minecraft:waxed_oxidized_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24720, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24721, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24722, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24723, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24036, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24037, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24038, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24039, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24040, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24041, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24042, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24043, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24044, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24045, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24046, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24047, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24048, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24049, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24050, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24051, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24052, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24053, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24054, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24055, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24056, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24057, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24058, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24059, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24060, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24061, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24062, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24063, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24064, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24065, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24066, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24067, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24068, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24069, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24070, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24071, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24072, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24073, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24074, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24075, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24076, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24077, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24078, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24079, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24080, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24081, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24082, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24083, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24084, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24085, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24086, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24087, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24088, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24089, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24090, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24091, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24092, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24093, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24094, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24095, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24096, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24097, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24098, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24099, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24690, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24691, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24548, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24549, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24550, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24551, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24552, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24553, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24554, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24555, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24556, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24557, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24558, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24559, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24560, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24561, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24562, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24563, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24564, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24565, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24566, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24567, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24568, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24569, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24570, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24571, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24572, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24573, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24574, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24575, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24576, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24577, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24578, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24579, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24580, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24581, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24582, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24583, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24584, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24585, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24586, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24587, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24588, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24589, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24590, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24591, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24592, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24593, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24594, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24595, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24596, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24597, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24598, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24599, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24600, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24601, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24602, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24603, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24604, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24605, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24606, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24607, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24608, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24609, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24610, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24611, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23304 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23628, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23629, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23630, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23631, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23632, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23633, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_oxidized_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23308, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23309, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23310, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23311, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23312, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23313, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23315, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23316, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23317, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23318, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23319, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23320, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23321, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23322, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23323, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23324, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23325, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23326, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23327, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23328, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23329, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23330, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23331, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23332, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23333, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23334, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23335, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23336, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23337, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23339, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23340, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23341, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23342, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23343, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23344, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23345, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23346, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23347, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23348, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23349, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23350, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23351, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23352, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23353, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23354, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23355, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23356, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23357, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23358, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23359, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23360, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23361, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23362, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23363, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23364, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23365, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23366, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23367, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23368, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23369, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23370, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23371, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23372, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23373, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23374, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23375, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23376, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23377, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23379, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23384, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23385, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23386, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23387, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22953 + } + ] + }, + "minecraft:waxed_weathered_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23301 + } + ] + }, + "minecraft:waxed_weathered_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24716, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24717, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24718, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24719, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24100, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24101, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24102, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24103, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24104, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24105, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24106, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24107, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24108, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24109, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24110, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24111, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24112, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24113, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24114, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24115, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24116, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24117, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24118, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24119, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24120, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24121, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24122, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24123, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24124, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24125, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24126, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24127, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24128, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24129, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24130, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24131, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24132, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24133, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24134, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24135, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24136, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24137, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24138, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24139, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24140, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24141, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24142, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24143, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24144, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24145, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24146, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24147, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24148, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24149, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24150, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24151, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24152, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24153, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24154, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24155, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 24156, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 24157, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 24158, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 24159, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 24160, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 24161, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 24162, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 24163, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24688, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24689, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24612, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24613, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24614, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24615, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24616, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24617, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24618, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24619, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24620, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24621, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24622, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24623, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24624, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24625, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24626, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24627, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24628, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24629, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24630, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24631, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24632, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24633, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24634, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24635, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24636, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24637, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24638, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24639, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24640, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24641, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24642, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24643, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24644, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24645, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24646, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24647, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24648, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24649, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24650, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24651, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24652, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24653, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24654, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24655, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24656, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24657, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24658, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24659, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24660, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24661, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24662, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24663, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24664, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24665, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24666, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24667, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24668, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24669, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24670, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24671, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24672, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24673, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24674, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24675, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23305 + } + ] + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23634, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23635, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23636, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23637, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23638, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23639, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_weathered_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23388, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23389, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23390, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23391, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23392, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23393, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23394, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23395, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23396, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23397, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23398, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23399, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23400, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23401, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23402, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23403, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23404, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23405, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23406, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23407, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23408, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23409, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23410, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23411, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23412, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23413, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23414, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23415, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23416, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23417, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23418, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23419, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23420, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23421, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23422, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23423, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23424, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23425, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23426, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23427, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23428, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23429, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23430, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23431, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23432, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23433, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23434, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23435, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23436, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23437, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23438, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23439, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23440, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23441, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23442, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23443, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23444, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23445, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23446, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23447, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23448, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23449, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23450, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23451, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23452, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23453, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23454, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23455, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23456, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23457, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23458, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23459, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23460, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23461, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23462, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23463, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23464, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23465, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23466, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23467, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 22949 + } + ] + }, + "minecraft:weathered_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 22940 + } + ] + }, + "minecraft:weathered_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24700, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 24701, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 24702, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 24703, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23844, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23845, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23846, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23847, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23848, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23849, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23850, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23851, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23852, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23853, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23854, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 23855, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23856, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23857, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23858, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23859, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23860, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23861, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23862, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23863, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23864, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23865, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23866, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23867, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23868, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23869, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23870, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23871, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23872, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23873, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23874, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23875, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23876, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23877, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23878, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23879, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23880, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23881, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23882, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23883, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23884, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23885, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23886, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23887, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23888, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23889, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23890, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23891, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23892, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23893, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23894, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23895, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23896, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23897, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23898, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23899, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 23900, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 23901, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 23902, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 23903, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 23904, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 23905, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 23906, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 23907, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24680, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24681, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24356, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24357, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24358, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24359, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24360, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24361, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24362, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24363, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24364, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24365, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24366, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24367, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24368, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24369, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24370, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24371, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24372, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24373, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24374, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24375, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24376, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24377, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24378, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24379, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24380, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24381, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24382, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24383, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24384, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24385, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24386, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24387, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24388, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24389, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24390, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24391, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24392, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24393, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24394, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24395, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24396, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24397, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24398, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24399, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24400, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24401, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24402, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24403, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24404, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24405, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24406, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24407, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24408, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24409, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24410, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24411, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24412, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24413, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24414, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24415, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 24416, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 24417, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 24418, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 24419, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 22945 + } + ] + }, + "minecraft:weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23282, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23283, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23284, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23285, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23286, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23287, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:weathered_cut_copper" + }, + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23036, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23037, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23038, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23039, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23040, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23041, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23042, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23043, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23044, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23045, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23046, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23047, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23048, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23049, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23050, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23051, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23052, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23053, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23054, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23055, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23056, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23057, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23058, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23059, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23060, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23061, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23062, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23063, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23064, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23065, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23066, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23067, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23068, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23069, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23070, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23071, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23072, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23073, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23074, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23075, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23076, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23077, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23078, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23079, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23080, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23081, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23082, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23083, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23084, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23085, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23086, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23087, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23088, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23089, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23090, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23091, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23092, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23093, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23094, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23095, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23096, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23097, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23098, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23099, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23100, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23101, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23102, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23103, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23104, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23105, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23106, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23107, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23108, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23109, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23110, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23111, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23112, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23113, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23114, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23115, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weeping_vines": { + "definition": { + "type": "minecraft:weeping_vines", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + }, + "states": [ + { + "default": true, + "id": 18611, + "properties": { + "age": "0" + } + }, + { + "id": 18612, + "properties": { + "age": "1" + } + }, + { + "id": 18613, + "properties": { + "age": "2" + } + }, + { + "id": 18614, + "properties": { + "age": "3" + } + }, + { + "id": 18615, + "properties": { + "age": "4" + } + }, + { + "id": 18616, + "properties": { + "age": "5" + } + }, + { + "id": 18617, + "properties": { + "age": "6" + } + }, + { + "id": 18618, + "properties": { + "age": "7" + } + }, + { + "id": 18619, + "properties": { + "age": "8" + } + }, + { + "id": 18620, + "properties": { + "age": "9" + } + }, + { + "id": 18621, + "properties": { + "age": "10" + } + }, + { + "id": 18622, + "properties": { + "age": "11" + } + }, + { + "id": 18623, + "properties": { + "age": "12" + } + }, + { + "id": 18624, + "properties": { + "age": "13" + } + }, + { + "id": 18625, + "properties": { + "age": "14" + } + }, + { + "id": 18626, + "properties": { + "age": "15" + } + }, + { + "id": 18627, + "properties": { + "age": "16" + } + }, + { + "id": 18628, + "properties": { + "age": "17" + } + }, + { + "id": 18629, + "properties": { + "age": "18" + } + }, + { + "id": 18630, + "properties": { + "age": "19" + } + }, + { + "id": 18631, + "properties": { + "age": "20" + } + }, + { + "id": 18632, + "properties": { + "age": "21" + } + }, + { + "id": 18633, + "properties": { + "age": "22" + } + }, + { + "id": 18634, + "properties": { + "age": "23" + } + }, + { + "id": 18635, + "properties": { + "age": "24" + } + }, + { + "id": 18636, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:weeping_vines_plant": { + "definition": { + "type": "minecraft:weeping_vines_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18637 + } + ] + }, + "minecraft:wet_sponge": { + "definition": { + "type": "minecraft:wet_sponge", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 518 + } + ] + }, + "minecraft:wheat": { + "definition": { + "type": "minecraft:crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 4278, + "properties": { + "age": "0" + } + }, + { + "id": 4279, + "properties": { + "age": "1" + } + }, + { + "id": 4280, + "properties": { + "age": "2" + } + }, + { + "id": 4281, + "properties": { + "age": "3" + } + }, + { + "id": 4282, + "properties": { + "age": "4" + } + }, + { + "id": 4283, + "properties": { + "age": "5" + } + }, + { + "id": 4284, + "properties": { + "age": "6" + } + }, + { + "id": 4285, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:white_banner": { + "definition": { + "type": "minecraft:banner", + "color": "white", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10759, + "properties": { + "rotation": "0" + } + }, + { + "id": 10760, + "properties": { + "rotation": "1" + } + }, + { + "id": 10761, + "properties": { + "rotation": "2" + } + }, + { + "id": 10762, + "properties": { + "rotation": "3" + } + }, + { + "id": 10763, + "properties": { + "rotation": "4" + } + }, + { + "id": 10764, + "properties": { + "rotation": "5" + } + }, + { + "id": 10765, + "properties": { + "rotation": "6" + } + }, + { + "id": 10766, + "properties": { + "rotation": "7" + } + }, + { + "id": 10767, + "properties": { + "rotation": "8" + } + }, + { + "id": 10768, + "properties": { + "rotation": "9" + } + }, + { + "id": 10769, + "properties": { + "rotation": "10" + } + }, + { + "id": 10770, + "properties": { + "rotation": "11" + } + }, + { + "id": 10771, + "properties": { + "rotation": "12" + } + }, + { + "id": 10772, + "properties": { + "rotation": "13" + } + }, + { + "id": 10773, + "properties": { + "rotation": "14" + } + }, + { + "id": 10774, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:white_bed": { + "definition": { + "type": "minecraft:bed", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1688, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1689, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1690, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1691, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1692, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1693, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1694, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1695, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1696, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1697, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1698, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1699, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1700, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1701, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1702, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1703, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:white_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20741, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20742, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20743, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20744, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20745, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20746, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20747, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20748, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20749, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20750, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20751, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20752, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20753, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20754, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20755, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20756, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:white_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:white_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20999, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21000, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:white_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "white", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10728 + } + ] + }, + "minecraft:white_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12728 + } + ] + }, + "minecraft:white_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:white_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12744 + } + ] + }, + "minecraft:white_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12664, + "properties": { + "facing": "north" + } + }, + { + "id": 12665, + "properties": { + "facing": "south" + } + }, + { + "id": 12666, + "properties": { + "facing": "west" + } + }, + { + "id": 12667, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12568, + "properties": { + "facing": "north" + } + }, + { + "id": 12569, + "properties": { + "facing": "east" + } + }, + { + "id": 12570, + "properties": { + "facing": "south" + } + }, + { + "id": 12571, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12572, + "properties": { + "facing": "up" + } + }, + { + "id": 12573, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:white_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "white", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5945 + } + ] + }, + "minecraft:white_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "white", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9372, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9373, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9374, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9375, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9376, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9377, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9378, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9379, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9380, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9381, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9382, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9383, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9384, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9385, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9386, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9387, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9388, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9389, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9390, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9391, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9392, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9393, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9394, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9395, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9396, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9397, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9398, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9399, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9400, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9401, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9402, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9403, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:white_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9356 + } + ] + }, + "minecraft:white_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 180, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2083 + } + ] + }, + "minecraft:white_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11015, + "properties": { + "facing": "north" + } + }, + { + "id": 11016, + "properties": { + "facing": "south" + } + }, + { + "id": 11017, + "properties": { + "facing": "west" + } + }, + { + "id": 11018, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2047 + } + ] + }, + "minecraft:wither_rose": { + "definition": { + "type": "minecraft:wither_rose", + "properties": {}, + "suspicious_stew_effects": [ + { + "id": "minecraft:wither" + } + ] + }, + "states": [ + { + "default": true, + "id": 2087 + } + ] + }, + "minecraft:wither_skeleton_skull": { + "definition": { + "type": "minecraft:wither_skull", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8867, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8868, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8869, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8870, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8871, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8872, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8873, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8874, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8875, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8876, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8877, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8878, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8879, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8880, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8881, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "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" + } + } + ] + }, + "minecraft:wither_skeleton_wall_skull": { + "definition": { + "type": "minecraft:wither_wall_skull", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8899, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8900, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8901, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8902, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8903, + "properties": { + "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" + } + } + ] + }, + "minecraft:yellow_banner": { + "definition": { + "type": "minecraft:banner", + "color": "yellow", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 10823, + "properties": { + "rotation": "0" + } + }, + { + "id": 10824, + "properties": { + "rotation": "1" + } + }, + { + "id": 10825, + "properties": { + "rotation": "2" + } + }, + { + "id": 10826, + "properties": { + "rotation": "3" + } + }, + { + "id": 10827, + "properties": { + "rotation": "4" + } + }, + { + "id": 10828, + "properties": { + "rotation": "5" + } + }, + { + "id": 10829, + "properties": { + "rotation": "6" + } + }, + { + "id": 10830, + "properties": { + "rotation": "7" + } + }, + { + "id": 10831, + "properties": { + "rotation": "8" + } + }, + { + "id": 10832, + "properties": { + "rotation": "9" + } + }, + { + "id": 10833, + "properties": { + "rotation": "10" + } + }, + { + "id": 10834, + "properties": { + "rotation": "11" + } + }, + { + "id": 10835, + "properties": { + "rotation": "12" + } + }, + { + "id": 10836, + "properties": { + "rotation": "13" + } + }, + { + "id": 10837, + "properties": { + "rotation": "14" + } + }, + { + "id": 10838, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:yellow_bed": { + "definition": { + "type": "minecraft:bed", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1752, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1753, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1754, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1755, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1756, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1757, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1758, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1759, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1760, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1761, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1762, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1763, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1764, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1765, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1766, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1767, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:yellow_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20805, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20806, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20807, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20808, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20809, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20810, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20811, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20812, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20813, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20814, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20815, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20816, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 20817, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 20818, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 20819, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 20820, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:yellow_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:yellow_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21007, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 21008, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:yellow_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "yellow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10732 + } + ] + }, + "minecraft:yellow_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12732 + } + ] + }, + "minecraft:yellow_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:yellow_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12748 + } + ] + }, + "minecraft:yellow_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 12680, + "properties": { + "facing": "north" + } + }, + { + "id": 12681, + "properties": { + "facing": "south" + } + }, + { + "id": 12682, + "properties": { + "facing": "west" + } + }, + { + "id": 12683, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 12592, + "properties": { + "facing": "north" + } + }, + { + "id": 12593, + "properties": { + "facing": "east" + } + }, + { + "id": 12594, + "properties": { + "facing": "south" + } + }, + { + "id": 12595, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 12596, + "properties": { + "facing": "up" + } + }, + { + "id": 12597, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:yellow_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "yellow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5949 + } + ] + }, + "minecraft:yellow_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "yellow", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9500, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9501, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9502, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9503, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9504, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9505, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9506, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9507, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9508, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9509, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9510, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9511, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9512, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9513, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9514, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9515, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9516, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9517, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9518, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9519, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9520, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9521, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9522, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9523, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9524, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9525, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9526, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9527, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9528, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9529, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9530, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9531, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:yellow_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9360 + } + ] + }, + "minecraft:yellow_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11031, + "properties": { + "facing": "north" + } + }, + { + "id": 11032, + "properties": { + "facing": "south" + } + }, + { + "id": 11033, + "properties": { + "facing": "west" + } + }, + { + "id": 11034, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2051 + } + ] + }, + "minecraft:zombie_head": { + "definition": { + "type": "minecraft:skull", + "kind": "zombie", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 8907, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 8908, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 8909, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 8910, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 8911, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 8912, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 8913, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 8914, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 8915, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 8916, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 8917, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 8918, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 8919, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 8920, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 8921, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "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" + } + } + ] + }, + "minecraft:zombie_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "zombie", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8939, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 8940, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 8941, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 8942, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 8943, + "properties": { + "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" + } + } + ] + } +} \ No newline at end of file diff --git a/pumpkin-world/src/block_registry.rs b/pumpkin-world/src/block_registry.rs new file mode 100644 index 000000000..b429ec079 --- /dev/null +++ b/pumpkin-world/src/block_registry.rs @@ -0,0 +1,58 @@ +use std::collections::HashMap; + +use lazy_static::lazy_static; + +use crate::world::WorldError; + +const BLOCKS_JSON: &'static str = include_str!("../blocks.json"); + +#[derive(serde::Deserialize, Debug, Clone, PartialEq, Eq)] +struct BlockDefinition { + #[serde(rename = "type")] + kind: String, + block_set_type: Option, +} + +#[derive(serde::Deserialize, Debug, Clone, PartialEq, Eq)] +struct BlockState { + default: Option, + id: i64, + properties: Option>, +} + +#[derive(serde::Deserialize, Debug, Clone, PartialEq, Eq)] +struct BlocksElement { + definition: BlockDefinition, + properties: Option>>, + states: Vec, +} + +lazy_static! { + static ref BLOCKS: HashMap = + serde_json::from_str(BLOCKS_JSON).expect("Could not parse block.json registry."); +} + +pub fn block_id_and_properties_to_block_state_id( + block_id: &str, + properties: Option<&HashMap>, +) -> Result { + let block = match BLOCKS.get(block_id) { + Some(block) => block, + None => return Err(WorldError::BlockStateIdNotFound), + }; + let block_state_id = match properties { + None => Ok(block + .states + .iter() + .find(|state| state.default.unwrap_or(false)) + .expect("Each block should have at least one default state") + .id), + Some(properties) => block + .states + .iter() + .find(|state| state.properties.as_ref() == Some(properties)) + .map(|state| state.id) + .ok_or(WorldError::BlockStateIdNotFound), + }; + block_state_id +} diff --git a/pumpkin-world/src/chunk.rs b/pumpkin-world/src/chunk.rs index 6a9d739f5..8d49e87ca 100644 --- a/pumpkin-world/src/chunk.rs +++ b/pumpkin-world/src/chunk.rs @@ -1,26 +1,161 @@ -use fastnbt::nbt; +// use fastnbt::nbt; -pub const BLOCKS_AND_BIOMES: [u8; 2000] = [0x80; 2000]; -pub const SKY_LIGHT_ARRAYS: [FixedArray; 26] = [FixedArray([0xff; 2048]); 26]; +// pub const BLOCKS_AND_BIOMES: [u8; 2000] = [0x80; 2000]; +// pub const SKY_LIGHT_ARRAYS: [FixedArray; 26] = [FixedArray([0xff; 2048]); 26]; -#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] -#[repr(transparent)] -pub struct FixedArray(pub [T; N]); +// #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] +// #[repr(transparent)] +// pub struct FixedArray(pub [T; N]); -pub struct TestChunk { - pub heightmap: Vec, +// pub struct TestChunk { +// pub heightmap: Vec, +// } + +// impl Default for TestChunk { +// fn default() -> Self { +// Self::new() +// } +// } + +// impl TestChunk { +// pub fn new() -> Self { +// let bytes = fastnbt::to_bytes(&nbt!({"MOTION_BLOCKING": [L; 123, 256]})).unwrap(); + +// Self { heightmap: bytes } +// } +// } + +use std::{collections::HashMap, io::Write}; + +use fastnbt::LongArray; +use itertools::Itertools; + +use crate::{world::WorldError, WORLD_HEIGHT}; + +pub struct ChunkData { + pub blocks: Box<[i64; 16 * 16 * WORLD_HEIGHT]>, + pub position: (i32, i32), + pub heightmaps: ChunkHeightmaps, } -impl Default for TestChunk { - fn default() -> Self { - Self::new() - } +#[derive(serde::Deserialize, Debug, Clone)] +#[serde(rename_all = "PascalCase")] +struct PaletteEntry { + name: String, + properties: Option>, +} + +#[derive(serde::Deserialize, Debug, Clone)] +struct ChunkSectionBlockStates { + data: Option, // TODO: see if you can use u32 here + palette: Vec, } -impl TestChunk { - pub fn new() -> Self { - let bytes = fastnbt::to_bytes(&nbt!({"MOTION_BLOCKING": [L; 123, 256]})).unwrap(); +#[derive(serde::Deserialize, serde::Serialize, Debug, Clone)] +#[serde(rename_all = "UPPERCASE")] +pub struct ChunkHeightmaps { + motion_blocking: LongArray, + world_surface: LongArray, +} + +#[derive(serde::Deserialize, Debug)] +struct ChunkSection { + #[serde(rename = "Y")] + y: i32, + block_states: Option, +} + +#[derive(serde::Deserialize, Debug)] +struct ChunkNbt { + #[serde(rename = "DataVersion")] + data_version: usize, + sections: Vec, + #[serde(rename = "Heightmaps")] + heightmaps: ChunkHeightmaps, +} + +impl ChunkData { + pub fn from_bytes(chunk_data: Vec, at: (i32, i32)) -> Result { + let chunk_data = match fastnbt::from_bytes::(chunk_data.as_slice()) { + Ok(v) => v, + Err(err) => return Err(WorldError::ErrorDeserializingChunk(err.to_string())), + }; + + // this needs to be boxed, otherwise it will cause a stack-overflow + let mut blocks = Box::new([0; 16 * 16 * WORLD_HEIGHT]); + + for (k, section) in chunk_data.sections.into_iter().enumerate() { + let block_states = match section.block_states { + Some(states) => states, + None => continue, // this should instead fill all blocks with the only element of the palette + }; + let palette = block_states + .palette + .iter() + .map(|entry| { + crate::block_registry::block_id_and_properties_to_block_state_id( + &entry.name, + entry.properties.as_ref(), + ) + }) + .collect::, _>>()?; + let block_data = match block_states.data { + None => continue, + Some(d) => d, + } + .into_inner(); + let block_size = { + let size = 64 - (palette.len() - 1).leading_zeros(); + if size >= 4 { + size + } else { + 4 + } + }; + + let mask = (1 << block_size) - 1; + println!("{block_size} {:#08b}", mask); + println!( + "{} {}", + block_size, + palette.iter().map(|v| v.to_string()).join(",") + ); + let mut blocks_left = 16 * 16 * 16; + 'block_loop: for (j, block) in block_data.iter().enumerate() { + for i in 0..64 / block_size { + if blocks_left <= 0 { + break 'block_loop; + } + let index = (block >> (i * block_size)) & mask; + let block = palette[index as usize]; + blocks[k * 16 * 16 * 16 + j * ((64 / block_size) as usize) + i as usize] = + block; + blocks_left -= 1; + } + } + } + + // std::fs::File::create_new("../mafaile.txt") + // .unwrap() + // .write_all( + // blocks + // .iter() + // .map(|v| v.to_string()) + // .collect::>() + // .join(",") + // .as_bytes(), + // ); - Self { heightmap: bytes } + if at == (0, 0) { + println!( + "[{}]", + &blocks[0..10000].iter().map(|v| v.to_string()).join(",") + ); + } + Ok(ChunkData { + blocks: blocks, + position: at, + heightmaps: chunk_data.heightmaps, + }) } } diff --git a/pumpkin-world/src/dimension.rs b/pumpkin-world/src/dimension.rs new file mode 100644 index 000000000..f89e20931 --- /dev/null +++ b/pumpkin-world/src/dimension.rs @@ -0,0 +1,21 @@ +use std::path::PathBuf; + +use crate::world::Level; + +#[derive(Clone, Copy, PartialEq, Eq, Hash)] +pub enum Dimension { + OverWorld, + Nether, + End, +} + +impl Dimension { + pub fn into_level(&self, mut base_directory: PathBuf) -> Level { + match self { + Dimension::OverWorld => {} + Dimension::Nether => base_directory.push("DIM-1"), + Dimension::End => base_directory.push("DIM1"), + } + Level::from_root_folder(base_directory) + } +} diff --git a/pumpkin-world/src/lib.rs b/pumpkin-world/src/lib.rs index 30f2f934c..e9db38320 100644 --- a/pumpkin-world/src/lib.rs +++ b/pumpkin-world/src/lib.rs @@ -1,26 +1,6 @@ -use std::{fs::File, path::Path}; - -use fastanvil::Region; - pub mod chunk; - -pub struct World { - pub region: Region, -} - -impl World { - pub fn load>(path: P) -> Self { - let file = std::fs::File::open(path).unwrap(); - - let region = Region::from_stream(file).unwrap(); - Self { region } - } - - /* pub fn load_chunk(&mut self, x: usize, y: usize) -> Chunk { - let data = self.region.read_chunk(x, y).unwrap().unwrap(); - - let complete_chunk = complete::Chunk::from_bytes(&data).unwrap(); - - } - */ -} +pub mod dimension; +pub const WORLD_HEIGHT: usize = 384; +pub const WORLD_Y_START_AT: i32 = -64; // TODO: make sure where it actually starts at (i think its at -64 but not sure) +mod world; +mod block_registry; \ No newline at end of file diff --git a/pumpkin-world/src/world.rs b/pumpkin-world/src/world.rs new file mode 100644 index 000000000..6d689f24d --- /dev/null +++ b/pumpkin-world/src/world.rs @@ -0,0 +1,245 @@ +use std::{collections::VecDeque, future, io::Read, path::PathBuf, sync::Arc}; + +use flate2::bufread::ZlibDecoder; +use itertools::Itertools; +use thiserror::Error; +use tokio::{ + fs::File, + io::{AsyncReadExt, AsyncSeekExt, AsyncWriteExt}, + sync::Mutex, +}; + +use crate::{chunk::ChunkData, dimension::Dimension}; + +pub struct Level { + root_folder: PathBuf, +} + +#[derive(Error, Debug)] +pub enum WorldError { + // using ErrorKind instead of Error, beacuse the function read_chunks and read_region_chunks is designed to return an error on a per-chunk basis, while std::io::Error does not implement Copy or Clone + #[error("Io error: {0}")] + IoError(std::io::ErrorKind), + #[error("Region not found")] + RegionNotFound, + #[error("Region is invalid")] + RegionIsInvalid, + #[error("Chunk not found")] + ChunkNotFound, + #[error("Compression scheme not recognised")] + UnknownCompression, + #[error("Error while working with zlib compression: {0}")] + ZlibError(std::io::Error), + #[error("Error deserializing chunk: {0}")] + ErrorDeserializingChunk(String), + #[error("The requested block state id does not exist")] + BlockStateIdNotFound, +} + +#[derive(Debug, Clone, Copy, PartialEq, Eq)] +pub enum Compression { + Gzip, + Zlib, + None, + LZ4, +} + +impl Level { + pub fn from_root_folder(root_folder: PathBuf) -> Self { + Level { root_folder } + } + + /// Read one chunk in the world + /// + /// Do not use this function if reading many chunks is required, since in case those two chunks which are read seperately using `.read_chunk` are in the same region file, it will need to be opened and closed separately for both of them, leading to a performance loss. + pub async fn read_chunk(&self, chunk: (i32, i32)) -> Result { + self.read_chunks(vec![chunk]) + .await + .pop() + .expect("Read chunks must return a chunk") + .1 + } + + /// Read many chunks in a world + /// + /// Note: The order of the output chunks will almost never be in the same order as the order of input chunks + pub async fn read_chunks( + &self, + chunks: Vec<(i32, i32)>, + ) -> Vec<((i32, i32), Result)> { + futures::future::join_all( + chunks + .into_iter() + // split chunks into their corresponding region files to be able to read all of them at once, instead of reopening the file multiple times + .chunk_by(|chunk| { + ( + ((chunk.0 as f32) / 32.0).floor() as i32, + ((chunk.1 as f32) / 32.0).floor() as i32, + ) + }) + .into_iter() + .map(|(region, chunk_vec)| { + let mut path = self.root_folder.clone(); + path.push("region"); + path.push(format!("r.{}.{}.mca", region.0, region.1)); + self.read_region_chunks(path, chunk_vec.collect_vec()) + }), + ) + .await + .into_iter() + .flatten() + .collect_vec() + } + async fn read_region_chunks( + &self, + region_file: PathBuf, + chunks: Vec<(i32, i32)>, + ) -> Vec<((i32, i32), Result)> { + // dbg!(at); + println!( + "Getting chunks {:?}, from region file {}", + &chunks, + region_file.to_str().unwrap_or("") + ); + // return different error when file is not found (because that means that the chunks have just not been generated yet) + let mut region_file = match File::open(region_file).await { + Ok(f) => f, + Err(err) => match err.kind() { + std::io::ErrorKind::NotFound => { + return chunks + .into_iter() + .map(|c| (c, Err(WorldError::RegionNotFound))) + .collect_vec() + } + _ => { + return chunks + .into_iter() + .map(|c| (c, Err(WorldError::IoError(err.kind())))) + .collect_vec() + } + }, + }; + + let mut location_table: [u8; 4096] = [0; 4096]; + let mut timestamp_table: [u8; 4096] = [0; 4096]; + + // fill the location and timestamp tables + { + match region_file.read_exact(&mut location_table).await { + Ok(_) => {} + Err(err) => { + return chunks + .into_iter() + .map(|c| (c, Err(WorldError::IoError(err.kind())))) + .collect_vec() + } + } + match region_file.read_exact(&mut timestamp_table).await { + Ok(_) => {} + Err(err) => { + return chunks + .into_iter() + .map(|c| (c, Err(WorldError::IoError(err.kind())))) + .collect_vec() + } + } + } + // println!("Location table: {:?}", &location_table); + + // wrap file with arc mutex to allow for multithreading + let region_file = Arc::new(Mutex::new(region_file)); + futures::future::join_all(chunks.into_iter().map(|(old_chunk_x, old_chunk_z)| { + let region_file = region_file.clone(); + let modulus = |a: i32, b: i32| ((a % b) + b) % b; + let chunk_x = modulus(old_chunk_x, 32) as u32; + let chunk_z = modulus(old_chunk_z, 32) as u32; + async move { + let table_entry = (chunk_x + chunk_z * 32) * 4; + + let mut offset = vec![0u8]; + offset.extend_from_slice( + &location_table[table_entry as usize..table_entry as usize + 3], + ); + let offset = u32::from_be_bytes(offset.try_into().unwrap()) as u64 * 4096; + let size = location_table[table_entry as usize + 3] as usize * 4096; + + if offset == 0 && size == 0 { + return ((old_chunk_x, old_chunk_z), Err(WorldError::ChunkNotFound)); + } + // Read the file using the offset and size + let mut file_buf = { + let mut region_file = region_file.lock().await; + let seek_result = region_file.seek(std::io::SeekFrom::Start(offset)).await; + if seek_result.is_err() { + return ((old_chunk_x, old_chunk_z), Err(WorldError::RegionIsInvalid)); + } + let mut out = vec![0; size]; + let read_result = region_file.read_exact(&mut out).await; + if read_result.is_err() { + return ((old_chunk_x, old_chunk_z), Err(WorldError::RegionIsInvalid)); + } + out + }; + + // TODO: check checksum to make sure chunk is not corrupted + let header = file_buf.drain(0..5).collect_vec(); + + let compression = match header[4] { + 1 => Compression::Gzip, + 2 => Compression::Zlib, + 3 => Compression::None, + 4 => Compression::LZ4, + _ => return ((old_chunk_x, old_chunk_z), Err(WorldError::RegionIsInvalid)), + }; + + match compression { + Compression::Zlib => {} + _ => panic!(), // TODO: support other compression types + } + + let size = u32::from_be_bytes(header[0..4].try_into().unwrap()); + + let chunk_data = file_buf.drain(0..size as usize).collect_vec(); + + let mut z = ZlibDecoder::new(&chunk_data[..]); + let mut chunk_data = Vec::new(); + match z.read_to_end(&mut chunk_data) { + Ok(_) => {} + Err(err) => { + return ((old_chunk_x, old_chunk_z), Err(WorldError::ZlibError(err))) + } + } + // TODO: remove + // File::create_new(format!("./test-{}.{}.nbt", old_chunk_x, old_chunk_z)) + // .await + // .unwrap() + // .write_all(&chunk_data) + // .await + // .unwrap(); + + ( + (old_chunk_x, old_chunk_z), + ChunkData::from_bytes(chunk_data, (old_chunk_x, old_chunk_z)), + ) + } + })) + .await + .into_iter() + .collect_vec() + } +} + +#[test] +fn wawa() { + tokio::runtime::Runtime::new().unwrap().block_on(async { + Dimension::OverWorld + .into_level( + "C:\\Users\\lukza\\Desktop\\code\\rust\\vanilla_mc_server\\world" + .parse() + .unwrap(), + ) + .read_chunk((0, 0)) + .await + .unwrap(); + }); +} diff --git a/pumpkin-world/test.nbt b/pumpkin-world/test.nbt new file mode 100644 index 0000000000000000000000000000000000000000..15c3631335e5b4829d182cf876d3d7d10a36cfc6 GIT binary patch literal 56986 zcmeHQZERcTb$&@v7A1dO(oT~W=_XQ2S36BAiHg%^`C*fk<0x*d+OmgsEgagSWW|c4 zh_oele-cl!<)RDRB5Bp21=1qP>}DN0U>gG0KN@3O0|XfypuqklL4yrTHo%TI6zHGM z-gD0T9`f?)UVc+jYu?0s?)!C~=bZPwm%Qgvyd6pf)w%=ORQ5zhZF*{aGJSL=HJW{B z^u)wOiwb;WXey(ywX01>CZ>)aKb)S-j%UZyT&d9E6gu3xb?bKl)v-5~$sU{@NoCVC zLbbj0oetHJ$62a#~(TT_`bt?2X-AAI6!e^yNDzC&+*_m z1{QPiK$-l{$C3TN4db}k5y$2#tYj5#{Ih-g_a+Y?IJkfJuEcCxdPVke+V7ePzZJ~E@WA#^H~;&2$6Xo z5u*}-jj2gB#-WRkn#n2+#y?`Ps2et)#nM78Xr}(e4=UzG8U0{U^OF#Crm_W#XaQh6 zIGLYBF+ZB%9gR{bQwMC=Cp8d)-2jatO|V7$MA8cv$*W%2CBx{xh5E8l%|d4IkBD=? zyV{)Dr8cGk^;SJX51@Vek4vNl@>DBvN4C+$5YMV|? zq_f#HeNYGnRp9XyF0MlPE3+f%kr`a|;aaR?Xl80UJwum%=$D!s&nVw1TsrC@wu`xu zbb2~7K^KA2XyxsV&7@AIC!FS5CdRX>bu=}R$q(wx56W3QJd+;DWTz(6ho@%pJ@0nw zIX*KrSVB_XBA_32x z-XDC(cH3SjUE#4d>wNcfnIC*eT#a{toeVA4z_@?ed4G-v1^0|HX5D>pO-1+jZ2S`w_O|sV|t|_SCX@F>z^! zSbu2ZFBVY_y!!l?gL|y=q~EK5-Rt+TzH@B%Jn@EjUAXZC!;iDBjxQ(k`gXsw&2`-w z|J>}9;omODxM%bFSZ|)+#uFHJiQ8k`|L-hYzh(TPfUCV_{T%ZWaFk2+FWKJdqCf8C zulGFVc=Gm~@vO>U7rWXH@tk(*5^^c32up zX6ZA&T8v1%rb6edAj16@09p$-0 z{b5pa&Q!dpD}1kUg%!Tc6_KvDxuUOMV`6|YHhhTN6X`K(jt!rjqwb0H*>k$MWQrGG zgZaMUlS`LCC&&SC=C)vx{ZYue_|`yI#2~w` zjQc*V!wPHnBVF44zJBd~VnDk;e2B3ue}$Ln-Zt*PYupF2`#wDlR#@wZbg>Srub*{9 z5(A_o1b;~fJQyQH0E@)g!OO*W-#6}GGwxs0vu}m9jz|~l059tRFX^zrOF9s-G15W2 zgzod}!OQMn`&iHZyEpah1KEA$t5gT+Assp#XN|0-7tQ>>X5xI=`1^K@SKGVqNAGmb}S)Y7GQwfp!k zh1n@r2h9)73nA&y({yr97tfxHh0%I)>BWSe=+}m6wP5|5@>_j0n-C=Yg5~Pqb%OOl zNIGc!kd7G3Iysl%@SHt2tQY!=XGi36!~>=<`>*oHOOiSu9K!LKyG%AGGn2l0ZqpLj_J@lZU7m*!;&E0p44%4eya0^sD8atVH=d6n-V3$nt@ zi+GS-(m^~3zyR?g0EaH>69(&`fKWRHfbK>9A3kOjxfe;PpH8JyPd};>K>}KCb`YPd7751;xKKJ(pI8|4uD?~b9cG`2-<2JrBKb<@-7RNk4 z>67`F{tZFDw|}f}@Clnfy&koWPSlfLyyVs+mp%G>@gT2>@pmm-AE?aP)wc?z?9=tH zv;jMQ^#uAYJnIr?+xYn?&$nZJbg`W~&ckkJiSZG-l@-C)&K>=t>z~8=3hes8UcZg( zJ{F8a-@U_~H=yIE`|R!FhvuiaJa6J#N{x{iipmAB|V>{v{fJEEm5{R6euq3si0$2!0{{2^hJX=l@=^7q=FA)MDrQ z9|a$d_^()hNqz)(et`OKksZwAD?`A{m4Ddw2>62WtEBHf;-mK9={vypExP6L!e%NT zdgAqG)eCLgPFwR`ZFfgz$lt&f3%8~hK9Bb7@NX_-Ub_aL+j?cQZ{e7puU9t*;~!a( zmicXSu-nx(PxJq(h4^>;>XnFvaUH4P-O)hYI{o7(<|Aki#{Yf(9?bW%SGHcU0!#O! zCejw%HK^_VE$oHnwSQYLN7N$C=fdYE?xAV7m-yhty@3AYmsTX(yPPWb859j8-9(=ef7#TXfxb@-?_>aY@{rtV)eRv!E zn-38`#CN7ph4neO7>Dj{^LL;UU34Y2PtV^Qj6>hnH^{HAz7ULeP`^JyJc8Rk*h}j- zfZeYl25O;aKGG6MwQk#u_-xy)7T%0oGygn@@%Y99^ny1Mh+4#ph`=c9k6f|9zZYeT z+kvKC>-!DbyqWiFF}}HVyLI~cCoWlt z=l17c**4e~Xce3x7NSl@4>)Lt-N=AS<|w_Y49ycZcRnzpMt zPpR{Xxm=;woi4d6S+DzzCcWyKIxSODz2ae{*b}NH!{N$ZYsz?q{nm7HlehMKbp=as zB|~nw>b}y-nC)WJ+*aK>lZh)9@Iq=+(o4JsW@D!qv4}JAt{1bIT}A4K-5GH`nUv$O z39ehH_3)KiUm|uT7FdIvE@NpIVdkdlqFn~DgxB>PRvz{0-F@S~D#S;cs7V7NtIHc_ zIkBg+eoE=ApYn0m4_Q&p`XLL*SwCa}IqQck;3a*#LT3SycI0-TwwiyXzpA7yVtD%u zFJ*OU<18o8@G8x#l;%}FwhJB1>x*p=RE+mU``qj;&2S7~0QG_Ue$ zUMsA5BVF(6+f_zKB%#|Qi8}KtZC5GH>+@;eaQK?OU1xNJ`*eG#ugW+({dMvx!>bIh z@8y|`bM3PJ1VvDz;vwt9tW%*~hK;TMhN>X7#_yswE1VxlaRL4wXfrF6*qsjMHm`*zd&?wg9}KjyTC zle{G=#St^^gu!`7x!aVTcAxwSw&dW&TKS!JM?CnQ_1|m|zf+G_`N<}KL+0Nr-p=}F z{ILKVaQr#rtPjWJvh&JH#lOkV5m=M)e|eSH-^hiKMu1-sKr&wyUnAbH>SM0PIup;+L3VkkM=0bJpw#uWulFXvcEu~wY z)Ahbl=TIcYmB{o8ms>D&TXjpoOlYy=tr&HA^RRjeSLcPCl;uKCQ0krNb>Sx$deZJ3 zSE?+$f~EQkPp!PdQ!cOc7Ze>*t`@81ua>Vlt{H(ppa|6KFsw8r!W%IIrCh0W|_2u!(4aQ|U%BAt_S2aH+TyHfn z;p)7=be6pm9%pA~XS2!V$$BST*9yP*E$GzMX#a&*u*uJn$R(a`xA;5P!AkqTQvAZ> zg>oF!%YQGPQuU?yOO3C!9j9MD|L!t3+-kK~>G($se{z-hlfth9U{$KW=KcskHksU= z)B#v|ehL8i3lpyGuDQoDQX!^GGvS*1J*@H)K=p~YiGDNTs(--Q>(3La4R*0S-SH3GNWiL6D-K2*rdi&vu{3RV@pW6MT4`CQ6+rO%p`j>Hrj5gaw;qQZ`y z(Zqsz8Fs$!qngU!|E|VyjkBZFAbd_7GyHi&dE@!LGx^=ZJ;eV>s$pJ18$aUj&M$tK z$6rXAFCG8K{Jz(ojz1!xJLFf4E|(L3FVn|={&OwhxIwRu4XH28Zf=IXcR2OOQ6#&hus9w8UD zx27fv+H6nCn@CNMX9^l^Pu?3DpPIqr&iOIub$zg0!+zaaE7SvVT!zj}2sBxD4+D^eMuYw*^Ww6DdomZ(?%#{7z zy1QU55{8c?(&ogx9@r<|s2Ge1VUKDZQmO^z)}abVQ+9LS1#VA*!0p&bD5u!WsQ#S+H>rNWpBy}bo^lHPr4jvf=4_P2yCz2l0 z!5H9Xr8LH3{Zx%Hge0S%IupOfXtI@eqEgQ5;H47n#vt^Fc4I6o`R#~$Dl=~~k8BWS zV5}!V&9ITvf!d*%<{yIH<-9x`@!%B%)c)FeMF;it;16hiiUY|rI-oIt(!p3LK)lf5 zcj33tMC;C==EuB~Llox%wDD83@B)cf_z6)!NQpld3#}twT1tjrjsw+go=aioKfm5} zJd|IrKQaOfWLKl%6W*jQw`pGLr{x&_9^qd%!d8?L95v;221`LecL*feKE4x3asogu zw@oLF0n?B9TVj2m;rf`$@sIA*9Y>RT#5#kp#SN`0$vuF&f=JL3z(26@{xYOC(}()W zKXoAbnGuv}8{NsE)@k#=q^?Ms3T;}o0;ww@?*wRv`Z8iKpm(H#qJRPD5ujcH>S<67 z;WUFb-l&o`4_-3AQ@86L%z_%tmK00|92KO8x)EYL_%#+L1cN1WCbsOyvZrdgBsj#L zZCGk@B%Pt;hqO6<99OD~XJNc@H#VZ9Qzkp3+Enns@l$)7PrRa))7+X7XhxtJfo25i z9|6mlwEQ*LzN*K*b*&IDZQ$~G^T00i;INZRc;YraXNw!?9R$+xC_Wf`jb4be*TinNuw zIV^lm>@yV+XTu7W6NYD{=G*C(^G)B`-stj5AMcI!r&9ZL)5Tx(rVA|kLrUlBe3niQ z`a(K+N60ONJ;V)+?Q|e@p?YkBx@3E$3@>$~4lvY02s1hv9|>8^qC$q3km!V;u?M`Q zBZjPz&!FKe%}@P_pL7ua0U+$P#72-gCH@^dky<6*k)4W>Xd=XiQzs+(M-9I}f_lza z6S85mqaoH~un>$);y;QO=I@8qXs8ps^o@8c1|fb3LNh8DcaShL1f(Qy4tp?y%CLm- zyqS2o^Aj)i5@h}z$xsv{G< zjd5gGc=0sG?MU9m80!Ze+ktsTFC9JTKssWvBL@2n#-??B>_LO9TyNvgpznC}vx^k>9R_2i{FZf)pMNL6 zyAB&a>wp|Wa)Z~6AdD?PIe2i$PxeiH%=F_E1l40%aX(-i`vcHu{6mq-L{AtiKv?JT2lWnEc!y+AO93*E z=oH;Fn)n4t4(VVy8kx68Y2F@^L-mByVBvv=P7yM%8xjxdX#jNbIPE>kM2l@1vaVUy z2f}G;2QPIce!vjzE20ymod>7_O^l{YJ;BcdjJxK21NAf*TMm0nSx^_1DRK$Ne}2<< z8w+$$Bk>z#UK#Ji9IvtHRhDt4n@G@w#zhvjmPw zx^=H&SC%Z!&fczu68lX=VFw=jY61p8qAoZ~PU%>&tI4j-p$U|0dps z-@!`*$bUW0%aG!j_rIrj9AKshze&X!e&H2;4d=%Mlb_1?TM@tbEod^T&f}q||8S7# zoxElFFT754=qScd6G{BS=ftA%ck+6bi_X8t`j_=+&Oge5a$KStGU-Z{i{g*?iJ|8B zlMK3`oDY7%$16@#22Dm^32J_&4F0SHN@iaCBk_8>>OgaRD#PnU(Q}pkSIP?=`f`2< zttX0}Uz;9+PCbTSInb#m*DiL9*^(grz3_&y;NZ{kIqSua8CEgKctPQJqLWwJD<NspM2D1f=IVVXhY~j}MG`mkr|U#c=xw!BQxMuhZqx@`aKK9w_KD zWkJPdSnxz5rgkH+01?*#st4{)4iHl)In0(q_>vR3O2~p3Eh-PhdKpdqfV3Yp{f6`X zdHevG#gERhdFVJmWrG$_M|3v`;CqZ<*kGb}3zdg4w_Fe0V#yXq||#9-7cNoaj9>ule^R z2ibL3(>Xn^t(8=YrGsWrVlJDUqy0xJu~Of@t4Lj6N1E1}5%_(JKw;u$y(B9<6E|MT z7PrhtJ+dtxIUie&CUb0RCVLneo=nD>-wCAV#xu%yDwn&lrG%zZ#}7|TjX8(7{#;^k zWIU5iO&(1vUtdsl;P0n1s7Oy{ov9;Rj)(21k=k0OsuV?U<0)c|r|7SOqC_%`K95$j z-7tg7#d0}H*}G*7Rg0qIs@ZwZ;B}2RjNNMSmKk3huikv0`G0-$edfP$>$>K@WyaNt zH;f&3eD6KYf9<;FM=$0F^0;bInem>;hHu?^pZL-DI`QAyOtsgqBXBhQ)@BD{UbtQ< zJ-Tv~@fu;w#((`98z=tUW>nr1%rz90|RL(^d7la1@|-Te61z>lxrymhmv(KWNXw=*q-FCO(qgS4Eul4}CA@~T zY{5^(w~uG|$Jq8w`r6fc{)3^z+3};tGxS?6tu4woP5119S%42X2iz1?zHw#yM$PE> zOd4&c@aF$-z;B?>MjB)v+-?SME@SX!=ipD8!MMxe$^0K)%o{3T-sEKNFoOd{m_IVi zn^n8oG&GgT4$Vv*O=mLWlVkK#H+SLRs%$N4eKM6z9ip%OOie1a`Dx7Y=){Tf5k1FR G)c*r-pMW?3 literal 0 HcmV?d00001 diff --git a/pumpkin/src/client/client_packet.rs b/pumpkin/src/client/client_packet.rs index 754103392..795894276 100644 --- a/pumpkin/src/client/client_packet.rs +++ b/pumpkin/src/client/client_packet.rs @@ -217,7 +217,7 @@ impl Client { self.send_packet(CFinishConfig::new()); } - pub fn handle_config_acknowledged( + pub async fn handle_config_acknowledged( &mut self, server: &mut Server, _config_acknowledged: SAcknowledgeFinishConfig, @@ -225,6 +225,6 @@ impl Client { dbg!("config acknowledged"); self.connection_state = ConnectionState::Play; // generate a player - server.spawn_player(self); + server.spawn_player(self).await; } } diff --git a/pumpkin/src/client/mod.rs b/pumpkin/src/client/mod.rs index daae01a85..a3fdaae69 100644 --- a/pumpkin/src/client/mod.rs +++ b/pumpkin/src/client/mod.rs @@ -226,7 +226,7 @@ impl Client { SAcknowledgeFinishConfig::PACKET_ID => self.handle_config_acknowledged( server, SAcknowledgeFinishConfig::read(bytebuf).unwrap(), - ), + ).await, SKnownPacks::PACKET_ID => { self.handle_known_packs(server, SKnownPacks::read(bytebuf).unwrap()) } diff --git a/pumpkin/src/main.rs b/pumpkin/src/main.rs index 2746444a6..fef043962 100644 --- a/pumpkin/src/main.rs +++ b/pumpkin/src/main.rs @@ -13,7 +13,6 @@ use config::BasicConfiguration; use server::Server; // Setup some tokens to allow us to identify which event is for which socket. -const SERVER: Token = Token(0); pub mod client; pub mod commands; @@ -25,6 +24,7 @@ pub mod util; #[cfg(not(target_os = "wasi"))] #[tokio::main] async fn main() -> io::Result<()> { + const SERVER: Token = Token(0); use std::{cell::RefCell, time::Instant}; let time = Instant::now(); diff --git a/pumpkin/src/server.rs b/pumpkin/src/server.rs index 3cc11a6cd..0b4d1ef41 100644 --- a/pumpkin/src/server.rs +++ b/pumpkin/src/server.rs @@ -15,13 +15,13 @@ use pumpkin_protocol::{ client::{ config::CPluginMessage, play::{ - CChunkDataUpdateLight, CGameEvent, CLogin, CPlayerAbilities, CPlayerInfoUpdate, - CRemoveEntities, CSpawnEntity, PlayerAction, + CCenterChunk, CChunkData, CChunkDataUpdateLight, CGameEvent, CLogin, CPlayerAbilities, + CPlayerInfoUpdate, CRemoveEntities, CSpawnEntity, PlayerAction, }, }, BitSet, ClientPacket, Players, Sample, StatusResponse, VarInt, Version, CURRENT_MC_PROTOCOL, }; -use pumpkin_world::chunk::TestChunk; +use pumpkin_world::dimension::Dimension; use rsa::{traits::PublicKeyParts, RsaPrivateKey, RsaPublicKey}; use serde::{Deserialize, Serialize}; @@ -123,7 +123,7 @@ impl Server { // here is where the magic happens // TODO: do this in a world - pub fn spawn_player(&mut self, client: &mut Client) { + pub async fn spawn_player(&mut self, client: &mut Client) { // This code follows the vanilla packet order let entity_id = self.new_entity_id(); log::debug!("spawning player, entity id {}", entity_id); @@ -163,7 +163,7 @@ impl Server { // teleport let x = 10.0; - let y = 500.0; + let y = 120.0; let z = 10.0; client.teleport(x, y, z, 10.0, 10.0); let gameprofile = client.gameprofile.as_ref().unwrap(); @@ -257,7 +257,7 @@ impl Server { } */ - // Server::spawn_test_chunk(client); + Server::spawn_test_chunk(client).await; } /// Sends a Packet to all Players @@ -294,20 +294,49 @@ impl Server { } // TODO: do this in a world - fn _spawn_test_chunk(client: &mut Client) { - let test_chunk = TestChunk::new(); - client.send_packet(CChunkDataUpdateLight::new( - 10, - 10, - test_chunk.heightmap, - Vec::new(), - Vec::new(), - BitSet(0.into(), Vec::new()), - BitSet(0.into(), Vec::new()), - BitSet(0.into(), Vec::new()), - Vec::new(), - Vec::new(), - )); + async fn spawn_test_chunk(client: &mut Client) { + let mut wanted_chunks = Vec::new(); + + for i in -3i32..3 { + for j in -3i32..3 { + wanted_chunks.push((i, j)) + } + } + let chunks = Dimension::OverWorld + .into_level( + "C:\\Users\\lukza\\Desktop\\code\\rust\\vanilla_mc_server\\world" + .parse() + .unwrap(), + ) + .read_chunks(wanted_chunks) + .await; + + client.send_packet(CCenterChunk { + chunk_x: 0.into(), + chunk_z: 0.into(), + }); + + chunks.iter().for_each(|chunk| match &chunk.1 { + Err(err) => println!( + "Chunk loading failed for chunk ({},{}): {}", + chunk.0 .0, chunk.0 .1, err + ), + Ok(data) => client.send_packet(CChunkData(data)), + }); + + // let test_chunk = TestChunk::new(); + // client.send_packet(CChunkDataUpdateLight::new( + // 10, + // 10, + // test_chunk.heightmap, + // Vec::new(), + // Vec::new(), + // BitSet(0.into(), Vec::new()), + // BitSet(0.into(), Vec::new()), + // BitSet(0.into(), Vec::new()), + // Vec::new(), + // Vec::new(), + // )); } // move to world From eaf806a9285145b4ffe66d9049c8433486f698a6 Mon Sep 17 00:00:00 2001 From: lukas0008 Date: Mon, 12 Aug 2024 20:23:15 +0200 Subject: [PATCH 2/4] NOW IT FULLY WORKS --- .../src/client/play/c_chunk_data.rs | 87 ++++++++++++------- pumpkin-world/src/chunk.rs | 30 ++++--- pumpkin-world/src/lib.rs | 3 +- pumpkin/src/server.rs | 19 ++-- 4 files changed, 87 insertions(+), 52 deletions(-) diff --git a/pumpkin-protocol/src/client/play/c_chunk_data.rs b/pumpkin-protocol/src/client/play/c_chunk_data.rs index 8aea2ed52..d225f14e5 100644 --- a/pumpkin-protocol/src/client/play/c_chunk_data.rs +++ b/pumpkin-protocol/src/client/play/c_chunk_data.rs @@ -4,7 +4,7 @@ use crate::{bytebuf::ByteBuffer, BitSet, ClientPacket, VarInt}; use fastnbt::LongArray; use itertools::Itertools; use pumpkin_macros::packet; -use pumpkin_world::chunk::ChunkData; +use pumpkin_world::{chunk::ChunkData, DIRECT_PALETTE_BITS}; #[packet(0x27)] pub struct CChunkData<'a>(pub &'a ChunkData); @@ -37,45 +37,66 @@ impl<'a> ClientPacket for CChunkData<'a> { // Block count data_buf.put_i16(block_count); //// Block states + let palette = chunk.clone().into_iter().dedup().collect_vec(); - let mut palette_map = HashMap::new(); - let block_size = 8; - // let block_size = { - // let palette_bit_len = palette.len().leading_zeros(); - // if palette_bit_len > 3 { - // palette_bit_len - // } else { - // 4 - // } - // }; - // Bits per entry - data_buf.put_u8(block_size as u8); - // Palette length - data_buf.put_var_int(&VarInt(palette.len() as i32)); - palette.iter().enumerate().for_each(|(i, id)| { - palette_map.insert(*id, i); - // Palette - data_buf.put_var_int(&VarInt(**id as i32)); - }); + // TODO: make dynamic block_size work + // TODO: make direct block_size work + enum PaletteType { + Indirect(u32), + Direct, + } + let palette_type = { + let palette_bit_len = 64 - (palette.len() as i64 - 1).leading_zeros(); + if palette_bit_len > 8 { + PaletteType::Direct + } else if palette_bit_len > 3 { + PaletteType::Indirect(palette_bit_len) + } else { + PaletteType::Indirect(4) + } + // TODO: fix indirect palette to work correctly + // PaletteType::Direct + }; + let mut block_data_array = Vec::new(); - for block_clump in chunk.chunks(64 / block_size as usize) { - let mut out_long: i64 = 0; - let mut first = true; - for block in block_clump { - if first { - first = false; - } else { - out_long = out_long << block_size; + match palette_type { + PaletteType::Indirect(block_size) => { + // Bits per entry + data_buf.put_u8(block_size as u8); + // Palette length + data_buf.put_var_int(&VarInt(palette.len() as i32)); + let mut palette_map = HashMap::new(); + palette.iter().enumerate().for_each(|(i, id)| { + palette_map.insert(**id, i); + // Palette + data_buf.put_var_int(&VarInt(**id as i32)); + }); + for block_clump in chunk.chunks(64 / block_size as usize) { + let mut out_long: i64 = 0; + for block in block_clump.iter().rev() { + let index = palette_map + .get(*block) + .expect("Its just got added, ofc it should be there"); + out_long = out_long << block_size | (*index as i64); + } + block_data_array.push(out_long); + } + } + PaletteType::Direct => { + // Bits per entry + data_buf.put_u8(DIRECT_PALETTE_BITS as u8); + for block_clump in chunk.chunks(64 / DIRECT_PALETTE_BITS as usize) { + let mut out_long: i64 = 0; + for block in block_clump.iter().rev() { + out_long = out_long << DIRECT_PALETTE_BITS | (**block as i64); + } + block_data_array.push(out_long); } - let index = palette_map - .get(block) - .expect("Its just got added, ofc it should be there"); - out_long = out_long | *index as i64; } - block_data_array.push(out_long); } // Data array length + // TODO: precompute this and omit making the `block_data_array` data_buf.put_var_int(&VarInt(block_data_array.len() as i32)); // Data array for data_int in block_data_array { diff --git a/pumpkin-world/src/chunk.rs b/pumpkin-world/src/chunk.rs index 8d49e87ca..fcb1b3dd8 100644 --- a/pumpkin-world/src/chunk.rs +++ b/pumpkin-world/src/chunk.rs @@ -105,7 +105,7 @@ impl ChunkData { } .into_inner(); let block_size = { - let size = 64 - (palette.len() - 1).leading_zeros(); + let size = 64 - (palette.len() as i64 - 1).leading_zeros(); if size >= 4 { size } else { @@ -114,14 +114,17 @@ impl ChunkData { }; let mask = (1 << block_size) - 1; - println!("{block_size} {:#08b}", mask); - println!( - "{} {}", - block_size, - palette.iter().map(|v| v.to_string()).join(",") - ); + // println!("{block_size} {:#08b}", mask); + // println!( + // "{} {}", + // block_size, + // palette.iter().map(|v| v.to_string()).join(",") + // ); let mut blocks_left = 16 * 16 * 16; 'block_loop: for (j, block) in block_data.iter().enumerate() { + // if at == (0,0) && block_size != 4 { + // println!("{} {:#066b}", 64 - (64 / block_size) * block_size, *block); + // } for i in 0..64 / block_size { if blocks_left <= 0 { break 'block_loop; @@ -146,12 +149,13 @@ impl ChunkData { // .as_bytes(), // ); - if at == (0, 0) { - println!( - "[{}]", - &blocks[0..10000].iter().map(|v| v.to_string()).join(",") - ); - } + // if at == (0, 0) { + // println!( + // "[{}]", + // &blocks[0..10000].iter().map(|v| v.to_string()).join(",") + // ); + // } + // dbg!("{}", blocks.iter().filter(|v| **v == 2005).collect_vec().len()); Ok(ChunkData { blocks: blocks, position: at, diff --git a/pumpkin-world/src/lib.rs b/pumpkin-world/src/lib.rs index e9db38320..98b0d4701 100644 --- a/pumpkin-world/src/lib.rs +++ b/pumpkin-world/src/lib.rs @@ -2,5 +2,6 @@ pub mod chunk; pub mod dimension; pub const WORLD_HEIGHT: usize = 384; pub const WORLD_Y_START_AT: i32 = -64; // TODO: make sure where it actually starts at (i think its at -64 but not sure) +pub const DIRECT_PALETTE_BITS: u32 = 15; mod world; -mod block_registry; \ No newline at end of file +mod block_registry; diff --git a/pumpkin/src/server.rs b/pumpkin/src/server.rs index 0b4d1ef41..61467a5dc 100644 --- a/pumpkin/src/server.rs +++ b/pumpkin/src/server.rs @@ -12,14 +12,13 @@ use mio::{event::Event, Poll, Token}; use num_traits::ToPrimitive; use pumpkin_entity::{entity_type::EntityType, EntityId}; use pumpkin_protocol::{ - client::{ + bytebuf::ByteBuffer, client::{ config::CPluginMessage, play::{ CCenterChunk, CChunkData, CChunkDataUpdateLight, CGameEvent, CLogin, CPlayerAbilities, CPlayerInfoUpdate, CRemoveEntities, CSpawnEntity, PlayerAction, }, - }, - BitSet, ClientPacket, Players, Sample, StatusResponse, VarInt, Version, CURRENT_MC_PROTOCOL, + }, BitSet, ClientPacket, Players, Sample, StatusResponse, VarInt, Version, CURRENT_MC_PROTOCOL }; use pumpkin_world::dimension::Dimension; use rsa::{traits::PublicKeyParts, RsaPrivateKey, RsaPublicKey}; @@ -316,13 +315,23 @@ impl Server { chunk_z: 0.into(), }); - chunks.iter().for_each(|chunk| match &chunk.1 { + chunks.iter().for_each(|chunk| { + if chunk.0 == (0,0) { + let mut test = ByteBuffer::empty(); + CChunkData(chunk.1.as_ref().unwrap()).write(&mut test); + let len = test.buf().len(); + dbg!("Chunk packet size: {}B {}KB {}MB", len, len/1024, len/(1024*1024)); + } + match &chunk.1 { Err(err) => println!( "Chunk loading failed for chunk ({},{}): {}", chunk.0 .0, chunk.0 .1, err ), Ok(data) => client.send_packet(CChunkData(data)), - }); + }}); + + + // let test_chunk = TestChunk::new(); // client.send_packet(CChunkDataUpdateLight::new( From 7a5984984faca74c47550f8bbbe396dd46aa428b Mon Sep 17 00:00:00 2001 From: lukas0008 Date: Mon, 12 Aug 2024 20:35:07 +0200 Subject: [PATCH 3/4] Merge fixes --- Cargo.lock | 1 + pumpkin-protocol/Cargo.toml | 2 +- pumpkin/src/server.rs | 10 ++++------ 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index db39c4816..429b21002 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1169,6 +1169,7 @@ dependencies = [ "aes", "bytes", "cfb8", + "fastnbt", "flate2", "itertools", "log", diff --git a/pumpkin-protocol/Cargo.toml b/pumpkin-protocol/Cargo.toml index e1c80d2d1..bb48e06da 100644 --- a/pumpkin-protocol/Cargo.toml +++ b/pumpkin-protocol/Cargo.toml @@ -28,4 +28,4 @@ aes = "0.8.4" cfb8 = "0.8.1" take_mut = "0.2.2" itertools = "0.13.0" -fastnbt = "2.5.0" +fastnbt = { git = "https://github.com/owengage/fastnbt.git" } diff --git a/pumpkin/src/server.rs b/pumpkin/src/server.rs index fdbf32d02..aa6876bb7 100644 --- a/pumpkin/src/server.rs +++ b/pumpkin/src/server.rs @@ -16,15 +16,13 @@ use pumpkin_protocol::{ bytebuf::ByteBuffer, client::{ config::CPluginMessage, play::{ - CCenterChunk, CChunkData, CChunkDataUpdateLight, CGameEvent, CLogin, CPlayerAbilities, - CPlayerInfoUpdate, CRemoveEntities, CSpawnEntity, PlayerAction, + CCenterChunk, CChunkData, CChunkDataUpdateLight, CGameEvent, CLogin, CPlayerAbilities, CPlayerInfoUpdate, CRemoveEntities, CRemovePlayerInfo, CSetEntityMetadata, CSpawnEntity, Metadata, PlayerAction }, - }, BitSet, ClientPacket, Players, Sample, StatusResponse, VarInt, Version, CURRENT_MC_PROTOCOL + }, uuid::UUID, BitSet, ClientPacket, Players, Sample, StatusResponse, VarInt, Version, CURRENT_MC_PROTOCOL }; use pumpkin_world::dimension::Dimension; use pumpkin_registry::Registry; -use pumpkin_world::chunk::TestChunk; use rsa::{traits::PublicKeyParts, RsaPrivateKey, RsaPublicKey}; use serde::{Deserialize, Serialize}; @@ -337,7 +335,7 @@ impl Server { .read_chunks(wanted_chunks) .await; - client.send_packet(CCenterChunk { + client.send_packet(&CCenterChunk { chunk_x: 0.into(), chunk_z: 0.into(), }); @@ -354,7 +352,7 @@ impl Server { "Chunk loading failed for chunk ({},{}): {}", chunk.0 .0, chunk.0 .1, err ), - Ok(data) => client.send_packet(CChunkData(data)), + Ok(data) => client.send_packet(&CChunkData(data)), }}); From 435cd3b365dd952c1bb6ee03fe0a590f1a3e07ce Mon Sep 17 00:00:00 2001 From: lukas0008 Date: Mon, 12 Aug 2024 20:39:50 +0200 Subject: [PATCH 4/4] Remove development things --- pumpkin-world/src/chunk.rs | 2 +- pumpkin-world/src/lib.rs | 2 +- pumpkin-world/src/world.rs | 22 ---------------------- pumpkin-world/test.nbt | Bin 56986 -> 0 bytes pumpkin/src/server.rs | 3 ++- 5 files changed, 4 insertions(+), 25 deletions(-) delete mode 100644 pumpkin-world/test.nbt diff --git a/pumpkin-world/src/chunk.rs b/pumpkin-world/src/chunk.rs index fcb1b3dd8..c3ebeddba 100644 --- a/pumpkin-world/src/chunk.rs +++ b/pumpkin-world/src/chunk.rs @@ -47,7 +47,7 @@ struct PaletteEntry { #[derive(serde::Deserialize, Debug, Clone)] struct ChunkSectionBlockStates { - data: Option, // TODO: see if you can use u32 here + data: Option, palette: Vec, } diff --git a/pumpkin-world/src/lib.rs b/pumpkin-world/src/lib.rs index 98b0d4701..dd42f3e46 100644 --- a/pumpkin-world/src/lib.rs +++ b/pumpkin-world/src/lib.rs @@ -1,7 +1,7 @@ pub mod chunk; pub mod dimension; pub const WORLD_HEIGHT: usize = 384; -pub const WORLD_Y_START_AT: i32 = -64; // TODO: make sure where it actually starts at (i think its at -64 but not sure) +pub const WORLD_Y_START_AT: i32 = -64; pub const DIRECT_PALETTE_BITS: u32 = 15; mod world; mod block_registry; diff --git a/pumpkin-world/src/world.rs b/pumpkin-world/src/world.rs index 6d689f24d..7f5d2ce88 100644 --- a/pumpkin-world/src/world.rs +++ b/pumpkin-world/src/world.rs @@ -209,13 +209,6 @@ impl Level { return ((old_chunk_x, old_chunk_z), Err(WorldError::ZlibError(err))) } } - // TODO: remove - // File::create_new(format!("./test-{}.{}.nbt", old_chunk_x, old_chunk_z)) - // .await - // .unwrap() - // .write_all(&chunk_data) - // .await - // .unwrap(); ( (old_chunk_x, old_chunk_z), @@ -228,18 +221,3 @@ impl Level { .collect_vec() } } - -#[test] -fn wawa() { - tokio::runtime::Runtime::new().unwrap().block_on(async { - Dimension::OverWorld - .into_level( - "C:\\Users\\lukza\\Desktop\\code\\rust\\vanilla_mc_server\\world" - .parse() - .unwrap(), - ) - .read_chunk((0, 0)) - .await - .unwrap(); - }); -} diff --git a/pumpkin-world/test.nbt b/pumpkin-world/test.nbt deleted file mode 100644 index 15c3631335e5b4829d182cf876d3d7d10a36cfc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 56986 zcmeHQZERcTb$&@v7A1dO(oT~W=_XQ2S36BAiHg%^`C*fk<0x*d+OmgsEgagSWW|c4 zh_oele-cl!<)RDRB5Bp21=1qP>}DN0U>gG0KN@3O0|XfypuqklL4yrTHo%TI6zHGM z-gD0T9`f?)UVc+jYu?0s?)!C~=bZPwm%Qgvyd6pf)w%=ORQ5zhZF*{aGJSL=HJW{B z^u)wOiwb;WXey(ywX01>CZ>)aKb)S-j%UZyT&d9E6gu3xb?bKl)v-5~$sU{@NoCVC zLbbj0oetHJ$62a#~(TT_`bt?2X-AAI6!e^yNDzC&+*_m z1{QPiK$-l{$C3TN4db}k5y$2#tYj5#{Ih-g_a+Y?IJkfJuEcCxdPVke+V7ePzZJ~E@WA#^H~;&2$6Xo z5u*}-jj2gB#-WRkn#n2+#y?`Ps2et)#nM78Xr}(e4=UzG8U0{U^OF#Crm_W#XaQh6 zIGLYBF+ZB%9gR{bQwMC=Cp8d)-2jatO|V7$MA8cv$*W%2CBx{xh5E8l%|d4IkBD=? zyV{)Dr8cGk^;SJX51@Vek4vNl@>DBvN4C+$5YMV|? zq_f#HeNYGnRp9XyF0MlPE3+f%kr`a|;aaR?Xl80UJwum%=$D!s&nVw1TsrC@wu`xu zbb2~7K^KA2XyxsV&7@AIC!FS5CdRX>bu=}R$q(wx56W3QJd+;DWTz(6ho@%pJ@0nw zIX*KrSVB_XBA_32x z-XDC(cH3SjUE#4d>wNcfnIC*eT#a{toeVA4z_@?ed4G-v1^0|HX5D>pO-1+jZ2S`w_O|sV|t|_SCX@F>z^! zSbu2ZFBVY_y!!l?gL|y=q~EK5-Rt+TzH@B%Jn@EjUAXZC!;iDBjxQ(k`gXsw&2`-w z|J>}9;omODxM%bFSZ|)+#uFHJiQ8k`|L-hYzh(TPfUCV_{T%ZWaFk2+FWKJdqCf8C zulGFVc=Gm~@vO>U7rWXH@tk(*5^^c32up zX6ZA&T8v1%rb6edAj16@09p$-0 z{b5pa&Q!dpD}1kUg%!Tc6_KvDxuUOMV`6|YHhhTN6X`K(jt!rjqwb0H*>k$MWQrGG zgZaMUlS`LCC&&SC=C)vx{ZYue_|`yI#2~w` zjQc*V!wPHnBVF44zJBd~VnDk;e2B3ue}$Ln-Zt*PYupF2`#wDlR#@wZbg>Srub*{9 z5(A_o1b;~fJQyQH0E@)g!OO*W-#6}GGwxs0vu}m9jz|~l059tRFX^zrOF9s-G15W2 zgzod}!OQMn`&iHZyEpah1KEA$t5gT+Assp#XN|0-7tQ>>X5xI=`1^K@SKGVqNAGmb}S)Y7GQwfp!k zh1n@r2h9)73nA&y({yr97tfxHh0%I)>BWSe=+}m6wP5|5@>_j0n-C=Yg5~Pqb%OOl zNIGc!kd7G3Iysl%@SHt2tQY!=XGi36!~>=<`>*oHOOiSu9K!LKyG%AGGn2l0ZqpLj_J@lZU7m*!;&E0p44%4eya0^sD8atVH=d6n-V3$nt@ zi+GS-(m^~3zyR?g0EaH>69(&`fKWRHfbK>9A3kOjxfe;PpH8JyPd};>K>}KCb`YPd7751;xKKJ(pI8|4uD?~b9cG`2-<2JrBKb<@-7RNk4 z>67`F{tZFDw|}f}@Clnfy&koWPSlfLyyVs+mp%G>@gT2>@pmm-AE?aP)wc?z?9=tH zv;jMQ^#uAYJnIr?+xYn?&$nZJbg`W~&ckkJiSZG-l@-C)&K>=t>z~8=3hes8UcZg( zJ{F8a-@U_~H=yIE`|R!FhvuiaJa6J#N{x{iipmAB|V>{v{fJEEm5{R6euq3si0$2!0{{2^hJX=l@=^7q=FA)MDrQ z9|a$d_^()hNqz)(et`OKksZwAD?`A{m4Ddw2>62WtEBHf;-mK9={vypExP6L!e%NT zdgAqG)eCLgPFwR`ZFfgz$lt&f3%8~hK9Bb7@NX_-Ub_aL+j?cQZ{e7puU9t*;~!a( zmicXSu-nx(PxJq(h4^>;>XnFvaUH4P-O)hYI{o7(<|Aki#{Yf(9?bW%SGHcU0!#O! zCejw%HK^_VE$oHnwSQYLN7N$C=fdYE?xAV7m-yhty@3AYmsTX(yPPWb859j8-9(=ef7#TXfxb@-?_>aY@{rtV)eRv!E zn-38`#CN7ph4neO7>Dj{^LL;UU34Y2PtV^Qj6>hnH^{HAz7ULeP`^JyJc8Rk*h}j- zfZeYl25O;aKGG6MwQk#u_-xy)7T%0oGygn@@%Y99^ny1Mh+4#ph`=c9k6f|9zZYeT z+kvKC>-!DbyqWiFF}}HVyLI~cCoWlt z=l17c**4e~Xce3x7NSl@4>)Lt-N=AS<|w_Y49ycZcRnzpMt zPpR{Xxm=;woi4d6S+DzzCcWyKIxSODz2ae{*b}NH!{N$ZYsz?q{nm7HlehMKbp=as zB|~nw>b}y-nC)WJ+*aK>lZh)9@Iq=+(o4JsW@D!qv4}JAt{1bIT}A4K-5GH`nUv$O z39ehH_3)KiUm|uT7FdIvE@NpIVdkdlqFn~DgxB>PRvz{0-F@S~D#S;cs7V7NtIHc_ zIkBg+eoE=ApYn0m4_Q&p`XLL*SwCa}IqQck;3a*#LT3SycI0-TwwiyXzpA7yVtD%u zFJ*OU<18o8@G8x#l;%}FwhJB1>x*p=RE+mU``qj;&2S7~0QG_Ue$ zUMsA5BVF(6+f_zKB%#|Qi8}KtZC5GH>+@;eaQK?OU1xNJ`*eG#ugW+({dMvx!>bIh z@8y|`bM3PJ1VvDz;vwt9tW%*~hK;TMhN>X7#_yswE1VxlaRL4wXfrF6*qsjMHm`*zd&?wg9}KjyTC zle{G=#St^^gu!`7x!aVTcAxwSw&dW&TKS!JM?CnQ_1|m|zf+G_`N<}KL+0Nr-p=}F z{ILKVaQr#rtPjWJvh&JH#lOkV5m=M)e|eSH-^hiKMu1-sKr&wyUnAbH>SM0PIup;+L3VkkM=0bJpw#uWulFXvcEu~wY z)Ahbl=TIcYmB{o8ms>D&TXjpoOlYy=tr&HA^RRjeSLcPCl;uKCQ0krNb>Sx$deZJ3 zSE?+$f~EQkPp!PdQ!cOc7Ze>*t`@81ua>Vlt{H(ppa|6KFsw8r!W%IIrCh0W|_2u!(4aQ|U%BAt_S2aH+TyHfn z;p)7=be6pm9%pA~XS2!V$$BST*9yP*E$GzMX#a&*u*uJn$R(a`xA;5P!AkqTQvAZ> zg>oF!%YQGPQuU?yOO3C!9j9MD|L!t3+-kK~>G($se{z-hlfth9U{$KW=KcskHksU= z)B#v|ehL8i3lpyGuDQoDQX!^GGvS*1J*@H)K=p~YiGDNTs(--Q>(3La4R*0S-SH3GNWiL6D-K2*rdi&vu{3RV@pW6MT4`CQ6+rO%p`j>Hrj5gaw;qQZ`y z(Zqsz8Fs$!qngU!|E|VyjkBZFAbd_7GyHi&dE@!LGx^=ZJ;eV>s$pJ18$aUj&M$tK z$6rXAFCG8K{Jz(ojz1!xJLFf4E|(L3FVn|={&OwhxIwRu4XH28Zf=IXcR2OOQ6#&hus9w8UD zx27fv+H6nCn@CNMX9^l^Pu?3DpPIqr&iOIub$zg0!+zaaE7SvVT!zj}2sBxD4+D^eMuYw*^Ww6DdomZ(?%#{7z zy1QU55{8c?(&ogx9@r<|s2Ge1VUKDZQmO^z)}abVQ+9LS1#VA*!0p&bD5u!WsQ#S+H>rNWpBy}bo^lHPr4jvf=4_P2yCz2l0 z!5H9Xr8LH3{Zx%Hge0S%IupOfXtI@eqEgQ5;H47n#vt^Fc4I6o`R#~$Dl=~~k8BWS zV5}!V&9ITvf!d*%<{yIH<-9x`@!%B%)c)FeMF;it;16hiiUY|rI-oIt(!p3LK)lf5 zcj33tMC;C==EuB~Llox%wDD83@B)cf_z6)!NQpld3#}twT1tjrjsw+go=aioKfm5} zJd|IrKQaOfWLKl%6W*jQw`pGLr{x&_9^qd%!d8?L95v;221`LecL*feKE4x3asogu zw@oLF0n?B9TVj2m;rf`$@sIA*9Y>RT#5#kp#SN`0$vuF&f=JL3z(26@{xYOC(}()W zKXoAbnGuv}8{NsE)@k#=q^?Ms3T;}o0;ww@?*wRv`Z8iKpm(H#qJRPD5ujcH>S<67 z;WUFb-l&o`4_-3AQ@86L%z_%tmK00|92KO8x)EYL_%#+L1cN1WCbsOyvZrdgBsj#L zZCGk@B%Pt;hqO6<99OD~XJNc@H#VZ9Qzkp3+Enns@l$)7PrRa))7+X7XhxtJfo25i z9|6mlwEQ*LzN*K*b*&IDZQ$~G^T00i;INZRc;YraXNw!?9R$+xC_Wf`jb4be*TinNuw zIV^lm>@yV+XTu7W6NYD{=G*C(^G)B`-stj5AMcI!r&9ZL)5Tx(rVA|kLrUlBe3niQ z`a(K+N60ONJ;V)+?Q|e@p?YkBx@3E$3@>$~4lvY02s1hv9|>8^qC$q3km!V;u?M`Q zBZjPz&!FKe%}@P_pL7ua0U+$P#72-gCH@^dky<6*k)4W>Xd=XiQzs+(M-9I}f_lza z6S85mqaoH~un>$);y;QO=I@8qXs8ps^o@8c1|fb3LNh8DcaShL1f(Qy4tp?y%CLm- zyqS2o^Aj)i5@h}z$xsv{G< zjd5gGc=0sG?MU9m80!Ze+ktsTFC9JTKssWvBL@2n#-??B>_LO9TyNvgpznC}vx^k>9R_2i{FZf)pMNL6 zyAB&a>wp|Wa)Z~6AdD?PIe2i$PxeiH%=F_E1l40%aX(-i`vcHu{6mq-L{AtiKv?JT2lWnEc!y+AO93*E z=oH;Fn)n4t4(VVy8kx68Y2F@^L-mByVBvv=P7yM%8xjxdX#jNbIPE>kM2l@1vaVUy z2f}G;2QPIce!vjzE20ymod>7_O^l{YJ;BcdjJxK21NAf*TMm0nSx^_1DRK$Ne}2<< z8w+$$Bk>z#UK#Ji9IvtHRhDt4n@G@w#zhvjmPw zx^=H&SC%Z!&fczu68lX=VFw=jY61p8qAoZ~PU%>&tI4j-p$U|0dps z-@!`*$bUW0%aG!j_rIrj9AKshze&X!e&H2;4d=%Mlb_1?TM@tbEod^T&f}q||8S7# zoxElFFT754=qScd6G{BS=ftA%ck+6bi_X8t`j_=+&Oge5a$KStGU-Z{i{g*?iJ|8B zlMK3`oDY7%$16@#22Dm^32J_&4F0SHN@iaCBk_8>>OgaRD#PnU(Q}pkSIP?=`f`2< zttX0}Uz;9+PCbTSInb#m*DiL9*^(grz3_&y;NZ{kIqSua8CEgKctPQJqLWwJD<NspM2D1f=IVVXhY~j}MG`mkr|U#c=xw!BQxMuhZqx@`aKK9w_KD zWkJPdSnxz5rgkH+01?*#st4{)4iHl)In0(q_>vR3O2~p3Eh-PhdKpdqfV3Yp{f6`X zdHevG#gERhdFVJmWrG$_M|3v`;CqZ<*kGb}3zdg4w_Fe0V#yXq||#9-7cNoaj9>ule^R z2ibL3(>Xn^t(8=YrGsWrVlJDUqy0xJu~Of@t4Lj6N1E1}5%_(JKw;u$y(B9<6E|MT z7PrhtJ+dtxIUie&CUb0RCVLneo=nD>-wCAV#xu%yDwn&lrG%zZ#}7|TjX8(7{#;^k zWIU5iO&(1vUtdsl;P0n1s7Oy{ov9;Rj)(21k=k0OsuV?U<0)c|r|7SOqC_%`K95$j z-7tg7#d0}H*}G*7Rg0qIs@ZwZ;B}2RjNNMSmKk3huikv0`G0-$edfP$>$>K@WyaNt zH;f&3eD6KYf9<;FM=$0F^0;bInem>;hHu?^pZL-DI`QAyOtsgqBXBhQ)@BD{UbtQ< zJ-Tv~@fu;w#((`98z=tUW>nr1%rz90|RL(^d7la1@|-Te61z>lxrymhmv(KWNXw=*q-FCO(qgS4Eul4}CA@~T zY{5^(w~uG|$Jq8w`r6fc{)3^z+3};tGxS?6tu4woP5119S%42X2iz1?zHw#yM$PE> zOd4&c@aF$-z;B?>MjB)v+-?SME@SX!=ipD8!MMxe$^0K)%o{3T-sEKNFoOd{m_IVi zn^n8oG&GgT4$Vv*O=mLWlVkK#H+SLRs%$N4eKM6z9ip%OOie1a`Dx7Y=){Tf5k1FR G)c*r-pMW?3 diff --git a/pumpkin/src/server.rs b/pumpkin/src/server.rs index aa6876bb7..134d7bfa1 100644 --- a/pumpkin/src/server.rs +++ b/pumpkin/src/server.rs @@ -328,7 +328,8 @@ impl Server { } let chunks = Dimension::OverWorld .into_level( - "C:\\Users\\lukza\\Desktop\\code\\rust\\vanilla_mc_server\\world" + // TODO: load form config + "./world" .parse() .unwrap(), )